Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
setup problem
I just had vanilla setup on my VectorLinux box with apache.
However, when I click "Sign In", it says "The requested URL /vanilla-1.1.5a/people.php was not found on this server."
I have vanilla installed in /home/public_html/domainname/vanilla-1.1.5a in which I can see the file people.php.
the VirtualHost in vhosts.conf has:
DocumentRoot /home/public_html/domainname/vanilla-1.1.5a
What is the problem?
Please help.
Thanks.
0
Comments
DocumentRoot /home/public_html/domainname/vanilla-1.1.5a
as the root of Vanilla.
That should be
DocumentRoot /home/public_html/domainname
(now, Vanilla tries find people.php in the directory
DocumentRoot /home/public_html/domainname/vanilla-1.1.5a/vanilla-1.1.5a/
which does not exist)
In that case, you would have to maintain
DocumentRoot /home/public_html/domainname/vanilla-1.1.5a
in Apache's vhost.conf, and specify
$Configuration['WEB_ROOT'] = '/';
In your conf/settings.php in vanilla.
You want to make http://domainname go straight to domainname/vanilla-1.1.5/index.php
That means that your webroot should be:
$Configuration['WEB_ROOT'] = '/vanilla-1.15/';
I suppose that your theme will work fine after you have changed this entry.