wordpress support simple and plan Don’t copy and paste text from MS Word because it adds junky code that IE hates. Either remove the bad mso code, or repaste your text from a text editor like notepad. also Instead of using crtl-v to past into the blog, plus use the “paste from word” button under the editor [...]
Fatal error: Allowed memory size of 33554432 bytes Fix: locate the wp-settings.php file Search for define(’WP_MEMORY_LIMIT’, ‘32M’); Change 32M to 64M : define(’WP_MEMORY_LIMIT’, ‘64M’); for some reason this is different from setting the memory limit in the php.ini file. . :(
Ensure you have a .htaccess file with the following # BEGIN WordPress *take out the #’s* RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] *take out the #’s * # END WordPress
Unable to create directory – Is its parent directory writable by the server fix chmod -R 777 wp-content/uploads do not chmod wp-content to 777 , only chmod the uploads folders and subfolders.
If you are getting the following error when trying to reset your password: The e-mail could not be sentPossible reason: your host may have disabled the mail() function… You will need to setup a email box for word press to use let’s call it wordpress@yourdomain.com and set this in the options within the admin panel [...]