Hi Symfony Experts
I am a newbie in symfony.
i run symfony project successully in local pc. but i cant access it from remote pc(mac os x server).
i configured my app as virtual host.
my environment.
apahce 2.2 is running in windows xp.
----------------------------------------------
# Be sure to only have this line once in your configuration
NameVirtualHost 127.0.0.1:8081
# This is the configuration for your project
Listen 127.0.0.1:8081
<VirtualHost 127.0.0.1:8081>
DocumentRoot "f:\dev\ecsite\web"
DirectoryIndex index.php
<Directory "f:\dev\ecsite\web">
AllowOverride All
Allow from All
</Directory>
Alias /sf f:\dev\ecsite\lib\vendor\symfony\data\web\sf
<Directory "f:\dev\ecsite\lib\vendor\symfony\data\web\sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
--------------------------
from my local pc [http://localhost:8081/ec_dev.php/channel/list] it works file.
but from diff pc within same network it does not work.
[http://ip:8081/ec_dev.php/channel/list]
please kindly help me.
thanks.
