If you host a WordPress Blog on 1and1 servers and you try to install the NexGen Gallery Plugin, you may encounter an Internal 500 Server Error. To fix this, the best and easiest solution I have come across has been to change the information in the .htaccess file. If you do not have one, they are easy to make using a simple text editor. We are going to replace the old code in the .htaccess file with the code I have provided below.
Do the following to fix the problem.
1) Open a basic text editor program on your computer
2) FTP into your web server account and open your .htaccess file on your local computer. When you open your original .htaccess file, it should resemble the code that I have included below under the heading OLD .HTACCESS FILE CODE.
3) Copy the code that I have below under the heading NEW .HTACCESS FILE CODE.
4) Select all of the code in your original .htaccess file and replace all of it with the new code.
5) Resave this new file as .htaccess on your local computer and then FTP it back into yoru WordPress blog root directory. If you did not have one there to begin with – then place this one in there.
6) Now go to the plugin and activate the NexGen gallery. It will work now.
OLD .HTACCESS FILE CODE – from a typical install
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
NEW .HTACESS FILE CODE:
<files .htaccess>
order allow,deny
deny from all
</files>
ServerSignature Off
<files wp-config.php>
order allow,deny
deny from all
</files>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Options All -Indexes
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
Related Posts via Categories
Related posts:
- Multiple WordPress installations on a single database
- Install Multiple WordPress Installations Using a Single Database
- Exporting and Importing WordPress Databse
- How to decode encrypted WordPress footers
- How to Change Absolute Links
- Word Press Error 404
- WordPress URL directory Change
- How To Remove Author Details from posts In WordPress Blog
- WinMerge – Compare Duplicate PC Files
- WordPress Plugins I love
- WordPress Perma Links Setting
- WordPress 3.0.1 Image Upload Error
- Offering More Subscription Options
- Change Role Names or Add new Roles in WordPress
- VTR “S”
- Tri-Magnum – R.Q. Riley
- WordPress
- Privacy
- Developing iPhone Apps
- How to make money as a welder and market your skill
- What is a solar blocking diode?
- Tri-Magnum Project Car
- What is a solar bypass diode?
- 45 Watt Solar Panel Kit
- What is Net Metering?
- Understanding a solar cell
- Crimson Trace Laser Grip For Ruger’s LCP











3 Comments
nice share, good article, very usefull for me…thanks
http://www.bradmerritt.com – go to my favorites!!!
It worked! Thanks so much. You just saved me hours of grief.