Hi,
Could you please elaborate more details about what do you mean with “It blocks the site”, what exactly happens? do you get a white blank screen after activating the plugin? or any error message?
Also, is that the “complete” error message you have in the server error log?
Thanks.
@wfalaa this is the server log error:
[Thu Nov 17 11:49:29.140013 2016] [:error] [pid 4560:tid 2112] [client 62.48.103.185:52969] WordPress database error Unknown column ‘wp_’ in ‘field list’ for query SELECT wp_, referer: http://URL/wp-admin/setup-config.php?step=1
[Thu Nov 17 11:50:35.533730 2016] [:error] [pid 4560:tid 2064] [client 62.48.103.185:64352] WordPress database error Unknown column ‘wp_’ in ‘field list’ for query SELECT wp_, referer: http://URL/wp-admin/setup-config.php?step=1
The upload via wp-admin or via FTP of the plugin goes right.
Once I try to activate the plugin, the system crashes: WordPress can not activate the plugin and the page in the browser, after the max execution time, stays blank and the site (public + admin) becomes unaccessible.
The only way to restore the site, is to delete the plugin’s folder via FTP.
I have no idea of what’s appening with this plugin.
-
This reply was modified 9 years, 5 months ago by
softcodex.
Hi,
Those two errors in the error log are referring the WordPress configuration script which runs the first time you install WordPress on your website, it’s strange how you managed to get your website set up with these errors.
I suggest editing (wp-config.php) file and replace this line:
define('WP_DEBUG', false);
with:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
Now, when you try to activate the plugin and get this blank page again, you can check this file (/wp-content/debug.log) for any error messages.
Also, please let me ask some more questions that would help in resolving this issue:
– Do you use WordPress Multisite “Network”?
– What is PHP version on your server?
– Is that a Windows server?
Thanks.
Update: after we did some tests, we found something else.
This is the php Info file on that server: http://wp.bweb.ch/phpinfo.php
(php and Apache versions up to date)
When I try to activate the plugin, Apache suddenly crashes, and this is the only log:
AH00428: Parent: child process 6112 exited with status 255 -- Restarting
Do you already experienced this issue?
I want to make sure you know that using Wordfence on Windows server is not officially supported, however, I’ve seen this issue before and adding this code to “httpd.conf” file has fixed it:
<IfModule mpm_winnt_module>
ThreadStackSize 8888888
</IfModule>
I hope this helps,
Thanks.
@wfalaa it works! Thanks for your support.