Hi,

I followed that tutorial and configured the httpd.conf file as follows. My
installation directories are as follows.

symfony projects directory: /var/www/symphonyprojects (project directory is
inside the localhost www directory)
I created /lib/vendor directory inside the symphonyprojects directory and
installed it. Then I added the below lines of codes and configured the
/etc/apache2/httpd.conf file.

# 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 "/var/www/SymphonyProjects/web"
  DirectoryIndex index.php
  <Directory "/var/www/SymphonyProjects/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>

Then I tried to restart apache server and when restarting using terminal it
gave me the below error.

" * Starting web server apache2

(98)Address already in use: make_sock: could not bind to address
127.0.0.1:8080
no listening sockets available, shutting down
Unable to open logs
Action 'start' failed.
The Apache error log may have more information."

what is the error and what can I do to overcome this problem. Can anyone
help me please.


Thank You.


-- 
Chinthaka Rukshan
Department of Computer Science and Engineering,
University of Moratuwa,
Sri Lanka.

-- 
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 symfony-users@googlegroups.com
To unsubscribe from this group, send email to
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

Reply via email to