Hello sf users....

I'm new to sf.  I've spent days messing with the MAMP based apache
config.   I can successfully get the project created page but not with
images.  Docs only say "f you see no image in this page, you may need
to configure your web server so that it gains access to the
symfony_data/web/sf/ directory".   I've tried every conceivable
iteration of the apache conf info at the bottom of this note.  Also
tried matching file system perms to the same as the text php files
that do work (user=me, group=admin) in the dir where the images and
css live (/home/sfproject/lib/vendor/symfony/data/web/sf)but no
luck.   I just can't look at it any more...yeah sorry for the
dramtics, but it's making me crazy.    Thanks for any help in
advance....


# Be sure to only have this line once in your configuration
NameVirtualHost 127.0.0.1:8080

# This is the configuration for your project
Listen 127.0.0.1:8080

<VirtualHost 127.0.0.1:8080>
  DocumentRoot "/home/sfproject/web"
  DirectoryIndex index.php
  <Directory "/home/sfproject/web">
    AllowOverride All
    Allow from All
  </Directory>

  Alias /sf /home/sfproject/lib/vendor/symfony/data/web/sf
  <Directory "/home/sfproject/lib/vendor/symfony/data/web/sf">
    AllowOverride All
    Allow from All
  </Directory>
</VirtualHost>

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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