Solution for installing Vivvo CMS on 1and1
Posted by Praneel
CMS : Vivvo
Problem: mod_rewrite not working/enabled on 1and1 hosting.
The main problem for implementing Vivvo CMS News Publishing system on 1and1’s non server packages is the confusion about mod_rewrite. Well it is enabled by default, according to 1and1. The problem we see while installing Vivvo is the pre-install page that checks and gives us a “?” after mod_rewrite. If we proceed ignoring the problem the installation will end up in a 500 error or 404 error.
Solution:
Just add this one line in .htaccess file in the Vivvo root directory (before starting installation). After the line RewriteEngine On just add
Rewritebase /
. The .htaccess file might look like this before the change
Options All -Indexes
ErrorDocument 404 /404.phpFileETag MTime Size
RewriteEngine OnRewriteRule ^sitemap\.xml$ feed.php?output_type=sitemap [L]
RewriteRule ^(.*)(\.html|\.htm)$ index.php [L]
..ofcourse there are more lines of code after this.
And after the change-
Options All -Indexes
ErrorDocument 404 /404.phpFileETag MTime Size
RewriteEngine On
Rewritebase /
RewriteRule ^sitemap\.xml$ feed.php?output_type=sitemap [L]
RewriteRule ^(.*)(\.html|\.htm)$ index.php [L]
That’s all. You will see that installation pre-check detects mod_rewrite this time and you can start tasting the flavor of Vivvo.
December 29th, 2007 at 12:57 PM
Thank you! This helped me with something else on 1&1 where RewriteRule was not working properly.
Thanks again!
December 30th, 2007 at 1:59 PM
You are welcome Alex.
June 26th, 2009 at 5:44 AM
Nice info. It is very useful. Keep writing more! Thank you!