I added a Virtual Host to the httpd.conf file:
- Code: Select all
NameVirtualHost *:80
<VirtualHost *:80>
ServerName sitename.local
ServerAlias othername.local
DocumentRoot "C:/Users/Name/Web/site/drupal"
<Directory "C:/Users/Name/Web/site/drupal">
Order allow,deny
Allow from all
AllowOverride all
</Directory>
</VirtualHost>
Php is working because I can login the Zend Server admin and run php files in the "drupal" folder. It is either giving me a 500 error "Service unavailable (with message)" or its a blank white screen.
Nothing in all the logs I checked.
.htaccess looks normal. Changed some other options in the httpd.conf to allow indexes and allowoverrides.
It is failing after this line in the drupal front controller.
- Code: Select all
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
Any ideas?

