Dec 29

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.php

FileETag MTime Size


RewriteEngine On

RewriteRule ^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.php

FileETag 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.

3 Responses to “Solution for installing Vivvo CMS on 1and1”

  1. Alex Says:

    Thank you! This helped me with something else on 1&1 where RewriteRule was not working properly.
    Thanks again!

  2. Praneel Says:

    You are welcome Alex.

  3. yajivtech Says:

    Nice info. It is very useful. Keep writing more! Thank you!

Leave a Reply