Scriptrunner (Doug Sparling)
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: spacingGenerally HTML with valid syntax will be fine, but it does have to do with TinyMCE configuration, and I have no idea what the default configuration syntax rules are.
Something simple like this works just fine:
<div id="test"> <ul> <li><strong>dog</strong></li> <li><a href="http://www.example.com/">example.com</li> </ul> </div>But ‘
</br>will be deleted since it’s not a valid HTML tag.That all said, like you, I still find it best not to switch tabs.
Forum: Fixing WordPress
In reply to: spacingJust a quick explanation of the why…but follow @esmi’s advice or switch to a different editor. (I know many who use the CKEditor plugin).
WordPress uses the TinyMCE (the WYSIWYG) editor by default, and it will validate elements when switching from Text to Visual tab, and any invalid elements will be deleted.
</br>is not a valid HTML tag. If you switch that to<br />you’ll see that it won’t disappear after switching tabs.Forum: Fixing WordPress
In reply to: Can't delete or upload plugins through adminIt sounds like WordPress doesn’t have permissions set to allow the web server to write/remove files. (and it will need to do that to install/delete plugins and update WordPress)
Not knowing your hosting situation that’s about all I can offer, but it’s possible that it could be either the mode (chmod) or the ownership (chown) that’s the problem.
Forum: Fixing WordPress
In reply to: Insecure version of Internet Explorer?!It’s possible that compatibility mode/view is on (which you can turn off in the settings). If so, your more modern IE browser may be trying to emulate and older (and less secure) IE6.
Forum: Fixing WordPress
In reply to: Fatal Error??Yes, that’s a core file. If it’s not there then there’s been a problem with your WordPress installation.
Forum: Fixing WordPress
In reply to: Fatal Error??At this point, it’s trying to use core WordPress cache like it should, but it’s not finding the core file to include:
You should have this file:
wp-includes/cache.phpIf you don’t, then you need to reinstall WordPress. If you do, then I’m not really sure, unless it’s something to do with Windows directory separators. (‘\’ instead of ‘/’)
Forum: Fixing WordPress
In reply to: Fatal Error??It’s actually
define ('DISABLE_CACHE', true);but if won’t have any effect if the file
wp-content/object-cache.phpexists and there are no caching plugins activated.
Forum: Fixing WordPress
In reply to: Fatal Error??Delete or rename that file. It’s used by caching plugins normally. But it will cause the exact error message you’re getting if there are no caching plugins active that override
wp_cache_init.Forum: Fixing WordPress
In reply to: Fatal Error??Actually, look and see if you have a file
object-cache.phpunder the `wp-content’ directory. If that’s there, it could cause WP to not load the core wp_cache_init() function.Forum: Fixing WordPress
In reply to: Fatal Error??Is the existing install of WordPress a new one? I mean, did this problem just suddenly occur on a working site or is this preventing a new install from working? There are other things that can cause issues (like others mentioned, caching plugins) or PHP accelerators like APC, which would be at the server level.
Also, do you see a file called
object-cache.phpat the root level of your WordPress install?Forum: Fixing WordPress
In reply to: Fatal Error??Truthfully, though, I usually find this error is caused by corrupt files, incompletely uploaded files, and/or missing files. You may need to reinstall WordPress.
Forum: Fixing WordPress
In reply to: Fatal Error??wp-includes/cache.php should include this function (around line 140 in WordPress 3.6.1):
function wp_cache_init() { $GLOBALS['wp_object_cache'] = new WP_Object_Cache(); }Forum: Fixing WordPress
In reply to: Fatal Error??Can you FTP to your site? You need to see if that file is there and that it isn’t empty.
Forum: Fixing WordPress
In reply to: Non-Logged-In Computers see an old version of the websiteWP Super Cache has a way to clear cache and expired pages in the admin page for that plugin.
Forum: Fixing WordPress
In reply to: Suddenly: "no input file specified"I’m not familiar with GoDaddy hosting, but it may have written over your wp-config.php file. (if so, it may have backed up the old one) Generally “Error establishing a database connection” means that something in the wp-config.php file dealing with the database is wrong (host, database, database username and password).