Hi

if c:\development\sfprojects\jobeet\web is your DocumentRoot under your
virtual host than c:\development\ must
be your DocumentRoot in httpd.conf

also

# This should be changed to whatever you set DocumentRoot to.
#
<Directory "c:/development">

...
</Directory>

must exist


<VirtualHost *:8080>
  ServerName jobeet.com
  DocumentRoot "c:/development/sfprojects/jobeet/web"
  DirectoryIndex index.php
  <Directory "c:/development/sfprojects/jobeet/web">
    AllowOverride All
    Order allow,deny
    Allow from 127.0.0.1
  </Directory>

  Alias /sf "c:/development/symfony-1.2.0/data/web/sf"
  <Directory "c:/development/symfony-1.2.0/data/web/sf">
    AllowOverride All
    Allow from All
  </Directory>
</VirtualHost>

*  for jobeet.com usage
make an entry in WINDOWS\system32\drivers\etc\ hosts file
127.0.0.1 jobeet.com

c:/development/symfony-1.2.0/ is where you unpacked symfony-1.2.0.zip

:) hopefully php is working - try an index.php with <?php phpinfo():?>


On Tue, Dec 9, 2008 at 10:34 AM, blue92877 <[EMAIL PROTECTED]> wrote:

>
> Hello - I am using windows vista.  I am brand new to symfony and am
> trying to learn it via the Jobeet tutorial.  I can't get past Day 1.
> I have installed everything exactly like the tutorial says and changed
> my apache file to look for the project under 'localhost:8080/
> index.php'
>
> No matter what, I get a blank page when I try to access index.php.
> There are no php errors. There are no errors in the Apache error log.
>
> Here is my apache addendum to see just in case I made an error.
>
> # Be sure to only have this line once in your configuration
> NameVirtualHost 127.0.0.1:8080
>
> # This is the configuration for Jobeet
> Listen 127.0.0.1:8080
>
> <VirtualHost 127.0.0.1:8080>
>  DocumentRoot "c:\development\sfprojects\jobeet\web"
>  DirectoryIndex index.php
>  <Directory "c:\development\sfprojects\jobeet\web">
>    AllowOverride All
>    Allow from All
>  </Directory>
>
>  Alias /sf "c:\development\sfprojects\jobeet\lib\vendor\symfony\data
> \web\sf"
>  <Directory "c:\development\sfprojects\jobeet\lib\vendor\symfony\data
> \web\sf">
>    AllowOverride All
>    Allow from All
>  </Directory>
> </VirtualHost>
>
>
> Any thoughts?
>
> Thanks,
> Blue
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to