Fatal error: Call to undefined function is_multisite()
the quotes: if(function_exists(‘is_multisite’))
the quotes: if(function_exists(‘is_multisite’))
Quick look at source for that version shows parsing post_status argument. It’s probably this bug that got fixed in 3.2. Upgrade. 🙂
This is not a WordPress error, it is from MySQL: The most common reason for the MySQL server has gone away error is that the server timed out and closed the connection. Talk with your host again.
1) Looks like you are using the Visual Composer Plugin which is a legacy version which has a deprecated function. If you are using old version upgrade your Visual Composer plugin to the latest version which is 5.0.1. 2) Another case might be your are using a theme which might be using Visual Composer as … Read more
Seems a duplicate. https://stackoverflow.com/questions/11916987/uncaught-syntaxerror-unexpected-token-illegal-load-scripts-php1, Try to find that error with Google as there are a lot of results You can also try editing your wp-config.php file ( it is located on the root folder of your installation ) and right before the lines that say: /* That’s all, stop editing! Happy blogging. */ and add … Read more
I see a few errors in your code: Your first line: <html lang=”<?php language_attributes(); ?>” dir=”ltr”> should actually be: <html <?php language_attributes();?> dir=”ltr”> (notice that you dont need to add lang=. The function does that by itself. That will likely fix the problem) You didn’t add the ; to 2 of your lines in the … Read more
Check the permissions on the JS folder against the folders for the rest of the site.
If you’ve disabled all plugins and switched back to the default Twenty Ten (or Twenty Eleven) theme and are still seeing this, then you’ve got a serious problem. First of all, the JavaScript is horribly obfuscated. Second of all, with no plugins and a default theme, you should see the default layout of WordPress. From … Read more
When we are outside the Sample namespace, we should call the function by \Sample\sp_activate(), so please try the following: <?php /** * Plugin Name: Sample Plugin * Version: 0.0.2 */ namespace Sample; \register_activation_hook( __FILE__, ‘\Sample\sp_activate’ ); function sp_activate() { } If something is printed out during the plugin activation it will result in unexpected output … Read more
As many have already commented, it is better to fix the source of the issue than to hide the messages. That said, these types of messages should never be displayed on production server but, since you just never know, it is also a good idea to disable them on all servers (local development machine, development … Read more