Uwe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: blank /wp-admin/index.phpUpdated the PHP version to 5.6.27 without any effect -> Problem still exist
Then, I’ve changed to PHP7 with new database and WordPress 4.6.1 DE -> With that I am now able to access full WP functionality.
Following PHP extensions are installed under FreeBSD 10 using NGinX v1.10.2:
php70-7.0.12 PHP Scripting Language php70-ctype-7.0.12 The ctype shared extension for php php70-dom-7.0.12 The dom shared extension for php php70-extensions-1.1 "meta-port" to install PHP extensions php70-filter-7.0.12 The filter shared extension for php php70-hash-7.0.12 The hash shared extension for php php70-iconv-7.0.12 The iconv shared extension for php php70-json-7.0.12 The json shared extension for php php70-mysqli-7.0.12 The mysqli shared extension for php php70-opcache-7.0.12 The opcache shared extension for php php70-pdo-7.0.12 The pdo shared extension for php php70-pdo_sqlite-7.0.12 The pdo_sqlite shared extension for php php70-phar-7.0.12 The phar shared extension for php php70-posix-7.0.12 The posix shared extension for php php70-session-7.0.12 The session shared extension for php php70-simplexml-7.0.12 The simplexml shared extension for php php70-sqlite3-7.0.12 The sqlite3 shared extension for php php70-tokenizer-7.0.12 The tokenizer shared extension for php php70-xml-7.0.12 The xml shared extension for php php70-xmlreader-7.0.12 The xmlreader shared extension for php php70-xmlwriter-7.0.12 The xmlwriter shared extension for php php70-zip-7.0.12 The zip shared extension for php php70-zlib-7.0.12 The zlib shared extension for php
Maybe this helps someone.
Forum: Fixing WordPress
In reply to: blank /wp-admin/index.phpHello,
I have the same problem as described by scaturan. Installed a fresh WordPress 4.6.1 DE including new database.
Request to
/wp-admin/index.php
is displayed as blank page. But when I remove the function callwp_dashboard_setup();
(/wp-admin/includes/dashboard.php) then admin content is rendered.So the problem can be reproduced.
I am using WordPress on FreeBSD 10 with NGinX v1.10.1 and PHP v5.6.24
- This reply was modified 8 years, 4 months ago by Uwe.
Hello Sygnoos Team,
I could solve my problem. I am using a custom WP theme for my client, where I’ve forgotten to include
<?php wp_footer(); ?>
intofooter.php
That was the reason, why some sources of your plug-in where not included during rendering phase.
Now, all works fine.
Sorry for that mistake and the effort I made to you.
Thanks & Regards,
Uwe (HeberIT)Hi Sygoss team,
Both pop-ups (id#1 and #2 from type ‘ShortCode’) contains a short code, which is provided from another plug-in (called MegaPoll survey)
On page ‘kundenumfrage’ two links were defined with WP page editor, which configured additionally via your select box in WP page editor by choosing the appropriate pop-up (hover or click).
Thanks & Regards,
Uwe (HeberIT)Hi Sygoss team,
As already mentioned, I have configured two pop-ups with your plugin
1. PopupBuilder-Shortcode (click)
2. PopupBuilder-Shortcode (hover)
which includes for both a WP shortcode to display content from other plugin (MegaPoll survey).Both popups should be displayed on page https://elberad.com/kundenumfrage/, where two different links are defined with the related class (sg-show-popup), data-popup-event (click), data-sgpopupid(1 AND 2):
<a class="sg-show-popup" data-popup-event="click" data-sgpopupid="1" href="javascript:void(0)">PopupBuilder-Shortcode (click)</a> <a class="sg-show-popup" data-popup-event="hover" data-sgpopupid="2" href="javascript:void(0)">PopupBuilder-Shortcode (hover)</a>
In developer console I did not notice any JS problems or errors.
Please have a look for the rendered response of this page. From my perspective all looks fine.
I hope, you can help me. If so, then I am also able to buy your PRO version, which will not be the problem.
Thanks & Regards,
Uwe (HeberIT)Forum: Plugins
In reply to: [Yoast Breadcrumbs] Plugin with Fatal errorHello together,
after analyzing the features of WordPress SEO 1.7.1 plugin I realized, that the Yoast Breadcrumbs plugin is no longer necessary.
Did this plugin deinstalled and then use the breadcrumb feature of the WordPress SEO plugin. You find the settings for the breadcrumbs in the SEO → Internal Links settings page. More detailed information here.
Regards,
UweForum: Alpha/Beta/RC
In reply to: NetBeans IDE7.3 Error MessagesHave the same problem. I also use Netbeans to customize my WordPress installation (3.6).
The included PHP interpretor validates the source code and show for example an error on:
media.php:161:0 Expected an operand but found eof
The affected source code:
<!-- jQuery(function($){ var preloaded = $(".media-item.preloaded"); if ( preloaded.length > 0 ) { preloaded.each(function(){prepareMediaItem({id:this.id.replace(/[^0-9]/g, '')},'');}); updateMediaForm(); } }); --> </script>
For my understanding, the
<!-- -->
inside the JavaScript function is wrong. It seems, as this source code should commented out? Is this right?Thanks for your answer.