tlr87
Forum Replies Created
-
I just installed WordPress Version 2.8.3 this morning after installing I got this message when I was adding an Image to a post
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator, XXXXX and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/XXXX Server at XXXXXXXXX.com Port XXThank you w0rdpresssucks for this solution as it works.
As after I added this code to my wordpress .htaccess file (located on the root directory) If you cant find it look up this tutorial.
http://www.intrepid.com.au/how-to-view-htaccess-with-filezilla/
It began working again.
in the end my .htaccess looked like this.
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /updates/wp-admin/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /updates/index.php [L] SecFilterEngine Off SecFilterScanPOST Off </IfModule> # END WordPressCould wordpress developers please address this issue as it is annoying as this solution to this problem was not easy to find.
Again thank you w0rdpresssucks for this solution.