I've got a dev site running under http://dev.vacancysoft.com/
As you go there you can see the error and I really searched the web for the solution but couldn't find any.
It all started with the UID and GUID in suphp.conf. When I changed the values both to 0 (because the error was previous that the values are to high) the new one appeared and I don't know how to go through.
Any suggestions? (I am a begginer so please describe everything which is more advanced).
Cheers!
Update
The main site is down too, now the problem is really urgent.
Check the virtual server config. http://dev.vacancysoft.com/ should have:
I see that you're on Ubuntu. The conf file should be in /etc/apache2/sites-available/ and probably called dev.vacancysoft.com.conf
EDIT -- EDIT again -- sorry I'm a bit confused about your setup. Can you confirm that the files for the main site (vacancysoft.com) are in /domains/v/a/vacancysoft.com/web/public_html If so, then the instructions below should be correct:
You need to set up 2 virtual hosts, 1 for each of the two servers:
Edit
/etc/apache2/apache2.conf
and make sure it has the following 2 lines:Edit
/etc/apache2/ports.conf
and make sure it has the following lines:Create
/etc/apache2/sites-available/vacancysoft.com.conf
:cp /etc/apache2/sites-available/{,dev.}vacancysoft.com.conf
Edit
/etc/apache2/sites-available/dev.vacancysoft.com.conf
and:vacancysoft.com
todev.vacancysoft.com
/domains/v/a/vacancysoft.com/web/public_html
to/domains/d/e/dev.vacancysoft.com/web/public_html
sudo a2ensite vacancysoft.com.conf
sudo a2ensite dev.vacancysoft.com.conf
sudo apache2ctl restart