Hey all, I have recently started to fiddle around with CentOS 5, after having used Ubuntu for a while. I am using CentOS because that is what my dedicated host uses, and I wanted to use something new.
The problem I am having is that whenever I set my virtual hosts, I get a blank page for my domain (even if I go to /frontend_dev.php), but if I revert it back to the original VirtualHost I get no problems.. so it must be PEAR/Symfony/Apache right? Here is what I usually have: <VirtualHost mydomain.com> DocumentRoot "/var/www/html" <Directory "/var/www/html"> allow from all Options +Indexes </Directory> </VirtualHost> And for symfony: <Directory "/$data_dir/symfony/web/sf"> AllowOverride All Allow from All </Directory> <VirtualHost mydomain.com> ServerName mydomain.com DocumentRoot "/var/www/symf/web" DirectoryIndex index.php Alias /sf /$data_dir/symfony/web/sf <Directory "/var/www/symf/web"> AllowOverride All Allow from All </Directory> </VirtualHost> Any help would be appreciated.. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---