HTTP 500 error after plugin install

The simplest way to disable a plugin when there is no access to admin, is renaming of plugin folder. Connect via ftp by Filezilla, for example. Find plugin folder and put dot before its folder name. This should look like wp-content/plugins/.bbpress/ Such folder names are ignored by WordPress. Update the admin page and you will … Read more

WordPress custom plugin gives error

It seems that your function wstock_variation not exists or is created in PHP file not include in your plugin… If you are using OOP, for example your code need to be like: add_submenu_page( ‘Elites-StockManager’, ‘Smart Stock Manager’, ‘export’, ‘administrator’, ‘wstock_variation’, array($this, ‘wstock_variation’) ); // remove number 8, method accept only 6 params $this is method … Read more

Without access to the FTP, how can I fix the index page?

Even though your subsequent comments indicate the problem was fixed, you didn’t mention ‘how’ you fixed the problem. So I have added this answer for anyone else wandering by this question. But if the issue is not forcing HTTPS, then this is more properly done with settings in your HTACCESS file (which someone with file … Read more

Config.php issue in WordPress

Look for FS_CHMOD_DIR in wp-config.php. You can only define constants once. If it’s defined multiple times, you will get a PHP notice. Notices aren’t often a cause for concern, but they can reveal places you may have issues across the site. You can disable these from displaying to your visitors by defining WP_DEBUG as false.

hypanis.ru wordpress vulnerabilty [closed]

I would more suspect a code injection via a plugin’s vulnerability; there have been a few of those lately. I don’t think it is a virus; just someone that exploited an unpatched vulnerability. You don’t specify whether the site has been updated (WP, plugins, themes) or the PHP version; this would be useful information. To … Read more

WordPress error: Options page Setting_ not found in the allowed options list

Fixed! function Setting_() { register_setting( ‘Set_my_options’, ‘My_plugin_header_logo’ ); register_setting( ‘Set_my_options’, ‘My_plugin_links_facebook’ ); register_setting( ‘Set_my_options’, ‘My_plugin_links_youtube’ ); register_setting( ‘Set_my_options’, ‘My_plugin_links_email’ ); register_setting( ‘Set_my_options’, ‘My_plugin_links_instagram’ ); } add_action( ‘admin_init’, ‘Setting_’ ); settings_fields( ‘Set_my_options’ );

Why can I not execute php files under the wp-includes folder?

Important note: If I rename the wp-includes folder to something else, like wp-include, then it works! Nothing in WordPress specifically prevents what you did, but, what you did would be considered a security breach by most security regimes. It would also be destroyed the moment an automatic update occurred. So your request could have been … Read more