Information and Links
Join the fray by commenting, tracking what others have to say, or linking to it from your blog.
.htaccess forbidden errors on 1and1 accounts
One of my clients runs a phpFileNavigator and wanted to upload files larger than the 2MB default that 1and1 has set. The normal .htaccess file method shown here, was causing Forbidden errors in the browser.
-
php_value upload_max_filesize "25M"
-
php_value post_max_size "25M"
The solution was to not use an .htaccess file, but rather put the variables into a php.ini file in the root of the phpFileNavigator menu. Here is what we used, but not that this can work for other variables as well:
-
upload_max_filesize = 20M
-
post_max_size = 20M


Thanks for the helpful info- this will make things a lot easier for us!
Andrew