[symfony-users] Re: web server configuration

2011-01-27 Thread Gabriel Petchesi
Make sure you restart the webserver after any configuration change (or 
reload with the new configuration).

gabriel

-- 
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


Re: [symfony-users] Re: web server configuration

2011-01-27 Thread Namata Winnie
attached is my http.conf file.

thanx

On Thu, Jan 27, 2011 at 3:08 PM, Gabriel Petchesi pghora...@gmail.comwrote:

 Make sure you restart the webserver after any configuration change (or
 reload with the new configuration).

 gabriel

 --
 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.comsymfony-users%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en




-- 
*Namata Winfred
IT Assistant
Natural Chemotherapeutics Research Institute, Ministry Of Health

Mobile: 0774607443
*
*Nothing worthwhile comes easily. Work, continuous work and hard work, is
the only way to accomplish results that last*.

-- 
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


httpd.conf
Description: Binary data


Re: [symfony-users] Re: web server configuration

2011-01-27 Thread andrew cs
imo your project configuration has to look like this:

# to enter with localhost, 127.0.0.1 or even your network IP
NameVirtualHost *:8080
Listen *:8080
VirtualHost *:8080
DocumentRoot C:\wamp\www\jobeet\web
DirectoryIndex index.php
Directory C:\wamp\www\jobeet\web
  AllowOverride All
  Allow from All
/Directory
Alias /sf C:\wamp\www\jobeet\lib\vendor\symfony\data\web\sf
Directory C:\wamp\www\jobeet\lib\vendor\symfony\data\web/sf
  AllowOverride All
  Allow from All
/Directory
/VirtualHost

I haven't seen a configuration in Windows in a long time, but as I remember
this conf should work.

Regards


2011/1/27 Namata Winnie wiynn...@gmail.com

 attached is my http.conf file.

 thanx


 On Thu, Jan 27, 2011 at 3:08 PM, Gabriel Petchesi pghora...@gmail.comwrote:

 Make sure you restart the webserver after any configuration change (or
 reload with the new configuration).

 gabriel

 --
 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.comsymfony-users%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en




 --
 *Namata Winfred
 IT Assistant
 Natural Chemotherapeutics Research Institute, Ministry Of Health

 Mobile: 0774607443
 *
 *Nothing worthwhile comes easily. Work, continuous work and hard work, is
 the only way to accomplish results that last*.

 --
 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.comsymfony-users%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en




-- 
Ing. Jonathan A. Claros Santander.
Ingeniero de Sistemas FCyT UMSS
Developer Symfony since 2007

-- 
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


Re: [symfony-users] Re: web server configuration

2011-01-27 Thread Justen Doherty
Include c:/wamp/alias/*

# 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

  # !! this looks a bit dodgy !! DocumentRoot /c:\wamp\www\jobeet\web
  DocumentRoot c:\wamp\www\jobeet\web

  # add this line too..
  ServerName jobeet.localdev.com

  DirectoryIndex index.php
  Directory c:\wamp\www\jobeet\web
AllowOverride All
Allow from All
  /Directory
  Alias /sf c:\wamp\www\jobeet\lib\vendor\symfony\data\web\sf

  # !! this looks dodgy too !! Directory
/wamp/www/jobeet/lib/vendor/symfony/data/web/sf
  Directory c:/wamp/www/jobeet/lib/vendor/symfony/data/web/sf
AllowOverride All
Allow from All
  /Directory
/VirtualHost

you will also need to add the following line to your
C:/windows/system32/drivers/etc/hosts file:

127.0.0.1jobeet.localdev.com

then restart your apache server, for added awesomeness use the command line
and issue the following:

 apache.exe (or whatever it is) configtest
 apache.exe stop
 apache.exe start (i seem to remember WAMP has a problem with restarting
properly!)

hope that helps!





On Thu, Jan 27, 2011 at 1:02 PM, andrew cs andrew.hhb...@gmail.com wrote:

 imo your project configuration has to look like this:

 # to enter with localhost, 127.0.0.1 or even your network IP
 NameVirtualHost *:8080
 Listen *:8080
 VirtualHost *:8080
 DocumentRoot C:\wamp\www\jobeet\web
 DirectoryIndex index.php
 Directory C:\wamp\www\jobeet\web
   AllowOverride All
   Allow from All
 /Directory
 Alias /sf C:\wamp\www\jobeet\lib\vendor\symfony\data\web\sf
 Directory C:\wamp\www\jobeet\lib\vendor\symfony\data\web/sf
   AllowOverride All
   Allow from All
 /Directory
 /VirtualHost

 I haven't seen a configuration in Windows in a long time, but as I remember
 this conf should work.

 Regards


 2011/1/27 Namata Winnie wiynn...@gmail.com

 attached is my http.conf file.

 thanx


 On Thu, Jan 27, 2011 at 3:08 PM, Gabriel Petchesi pghora...@gmail.comwrote:

 Make sure you restart the webserver after any configuration change (or
 reload with the new configuration).

 gabriel

 --
 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.comsymfony-users%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en




 --
 *Namata Winfred
 IT Assistant
 Natural Chemotherapeutics Research Institute, Ministry Of Health

 Mobile: 0774607443
 *
 *Nothing worthwhile comes easily. Work, continuous work and hard work, is
 the only way to accomplish results that last*.

 --
 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.comsymfony-users%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en




 --
 Ing. Jonathan A. Claros Santander.
 Ingeniero de Sistemas FCyT UMSS
 Developer Symfony since 2007

  --
 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.comsymfony-users%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en




-- 
-
http://www.linkedin.com/in/justendoherty - LinkedIn
http://www.twitter.com/phpchap - Twitter
http://www.anotherwebdeveloper.com - Portfolio

-- 
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


Re: [symfony-users] Re: web server configuration

2011-01-27 Thread Namata Winnie
Hi Andrew,  i modified my file to your changes and i still get the same
error msg, Firefox can't establish a connection to the server at
localhost:8080. any more ideas why i still have a problem.

On Thu, Jan 27, 2011 at 4:02 PM, andrew cs andrew.hhb...@gmail.com wrote:

 imo your project configuration has to look like this:

 # to enter with localhost, 127.0.0.1 or even your network IP
 NameVirtualHost *:8080
 Listen *:8080
 VirtualHost *:8080
 DocumentRoot C:\wamp\www\jobeet\web
 DirectoryIndex index.php
 Directory C:\wamp\www\jobeet\web
   AllowOverride All
   Allow from All
 /Directory
 Alias /sf C:\wamp\www\jobeet\lib\vendor\symfony\data\web\sf
 Directory C:\wamp\www\jobeet\lib\vendor\symfony\data\web/sf
   AllowOverride All
   Allow from All
 /Directory
 /VirtualHost

 I haven't seen a configuration in Windows in a long time, but as I remember
 this conf should work.

 Regards


 2011/1/27 Namata Winnie wiynn...@gmail.com

 attached is my http.conf file.

 thanx


 On Thu, Jan 27, 2011 at 3:08 PM, Gabriel Petchesi pghora...@gmail.comwrote:

 Make sure you restart the webserver after any configuration change (or
 reload with the new configuration).

 gabriel

 --
 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.comsymfony-users%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en




 --
 *Namata Winfred
 IT Assistant
 Natural Chemotherapeutics Research Institute, Ministry Of Health

 Mobile: 0774607443
 *
 *Nothing worthwhile comes easily. Work, continuous work and hard work, is
 the only way to accomplish results that last*.

 --
 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.comsymfony-users%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en




 --
 Ing. Jonathan A. Claros Santander.
 Ingeniero de Sistemas FCyT UMSS
 Developer Symfony since 2007

  --
 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.comsymfony-users%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en




-- 
*Namata Winfred
IT Assistant
Natural Chemotherapeutics Research Institute, Ministry Of Health

Mobile: 0774607443
*
*Nothing worthwhile comes easily. Work, continuous work and hard work, is
the only way to accomplish results that last*.

-- 
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


[symfony-users] Re: Web Server Configuration

2010-03-10 Thread deresh
try changing your host file line adressing jobeet from

10.0.1.66 www.jobeet.com.localhost

to

127.0.0.1 www.jobeet.com.localhost

becouse you have set your virtual host on apache to listen to local
( 127.0.0.1) IP not the external interface one ( 10.0.1.66)

when you fix that part you should have access to your app with url:

http://www.jobeet.com:8080/

becouse your local apache listens on port 8080 not the default port 80




On 10 ožu, 15:23, DEEPAK BHATIA toreachdee...@gmail.com wrote:
 *** Please check ***



  My hosts file is (/etc/hosts)

  # Do not remove the following line, or various programs
  # that require network functionality will fail.
  127.0.0.1   nechclst.in
  127.0.0.1   localhost.localdomain   localhost
  127.0.0.1   deepaknew.nechclst.in   deepaknew
  ::1 localhost6.localdomain6 localhost6
  127.0.0.1 test # added by Apache Friends XAMPP
  10.0.1.66www.jobeet.com.localhost

  My Virtual host settings are

  VirtualHost 127.0.0.1:8080
  ServerNamewww.jobeet.com.localhost
  DocumentRoot /home/sfprojects/jobeet/web
  DirectoryIndex index.php
  Directory /home/sfprojects/jobeet/web
  AllowOverride All
  Allow from All
  /Directory
  Alias /sf /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
  Directory /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
  AllowOverride All
  Allow from All
  /Directory
  /VirtualHost
  When I ping from other machine - pingwww.jobeet.com.localhost, it
  doesn't work.

    On Mon, Mar 8, 2010 at 4:19 PM, Jerzy Biernacki 
  jerzy.bierna...@gmail.com wrote:

  Hi all,

  your project's hostname:www.jobeet.com.localhost
  your project's server IP name: 127.0.0.1 (local interface) AND (example)
  *192.168.1.1* (external interface)

  For every machine from your LAN accessing this project add to /etc/hosts
  (C:\windows\system32\drivers\etc\hosts AFAIR):

  192.168.1.1www.jobeet.com*.localhost*

  What you described seams to me like wrongly configured IP-HOST mapping.
  When you are accessing the project from your LAN you are using correct IP,
  but *WRONG HOST* - apache (or whatever it is) is serving you default page
  (/var/www/index.html or whatever is set to be default). Just change the 
  HOST
  and it should work :)

  Cheers,
  JMB

  2010/3/8 DEEPAK BHATIA toreachdee...@gmail.com

  What should be the virtual host?

  On Mon, Mar 8, 2010 at 1:06 PM, Buddhika Perera budd...@gmail.com
  wrote:
   Check with virtual host i used netbeans 6.8 for the coding its
   more easy than ever check out
   from the site ...there was a tutorial on how to use Symfony  with the
  Editor

   On Mon, Mar 8, 2010 at 12:23 PM, DEEPAK BHATIA 
  toreachdee...@gmail.com wrote:
   Hi,

   I am using Symfony 1.4.

   In the section of configuration of Web Server in Jobeet Tutorial as
  given below

   When I accesshttp://www.jobeet.com/on some other machine on LAN, I
   get some output like
   Index of cgi-bin

   When I accesshttp://www.jobeet.com.locahost/index.phpon the local
   machine, I get symfony project successfully installed.

   QUESTION: How can I access my project ashttp://www.jobeet.com?
  Which
   index.htm I need to modify/create ?

   ===Web Server Configuration==

   # 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/sfprojects/jobeet/web
   DirectoryIndex index.php
   Directory /home/sfprojects/jobeet/web
   AllowOverride All
   Allow from All
   /Directory
   Alias /sf /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
   Directory /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
   AllowOverride All
   Allow from All
   /Directory
   /VirtualHost

   Added to the httpd.conf

   # This is the configuration for your project
   VirtualHost 127.0.0.1:80 http://127.0.0.1/
   ServerNamewww.jobeet.com.localhost
   !-- same configuration as before --
   /VirtualHost

   Added to the hosts file
   127.0.0.1www.jobeet.com.localhost

   --
   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.comsymfony-users%2bunsubscr...@goog­legroups.com
   For more options, visit this group at
  http://groups.google.com/group/symfony-users?hl=en

   --
   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] Re: Web Server Configuration

2010-03-08 Thread manguito
Hi Deepak,
try this and let me know if I'm right or wrong
in the httpd.conf change this: ServerName www.jobeet.com.localhost
to :ServerName www.jobeet.com
then in the etc\host file
change: 127.0.0.1 www.jobeet.com.localhost
to: 127.0.0.1 www.jobeet.com

by the wayare you from Riverside CA?
I remember to have a friend at RCC-Riverside whose last name is Bhatia
manguito

On Mar 8, 3:33 am, DEEPAK BHATIA toreachdee...@gmail.com wrote:
 Hi,

 Yes we use the IP Address to access the symfony application.

 But can we access the index.htm  in jobeet directory 
 throughhttp://www.jobeet.com.

 May be I am not able to understand your point. Kindly elaborate the same.

 Regards

 Deepak Bhatia

 On Mon, Mar 8, 2010 at 1:20 PM, Asif Ali M itsme_...@yahoo.com wrote:



    Hi Deepak,

  Because the system on your LAN is accessing the live site
 http://www.jobeet.com/

   http://www.jobeet.com/Better access your application with its system
  name/ IP ( your private ip like 192.168.0.10) from your LAN and it will
  work,

  --
  Thanks
  Asif Ali M
 http://www.linkedin.com/in/geeni

  --- On *Mon, 3/8/10, DEEPAK BHATIA toreachdee...@gmail.com* wrote:

  From: DEEPAK BHATIA toreachdee...@gmail.com
  Subject: [symfony-users] Web Server Configuration
  To: symfony-users@googlegroups.com
  Date: Monday, March 8, 2010, 12:23 PM

    Hi,

  I am using Symfony 1.4.

  In the section of configuration of Web Server in Jobeet Tutorial as given
  below

  When I accesshttp://www.jobeet.com/on some other machine on LAN, I
  get some output like
  Index of cgi-bin

  When I accesshttp://www.jobeet.com.locahost/index.phpon the local
  machine, I get symfony project successfully installed.

  QUESTION: How can I access my project ashttp://www.jobeet.com? Which
  index.htm I need to modify/create ?

  ===Web Server Configuration==

  # 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/sfprojects/jobeet/web
  DirectoryIndex index.php
  Directory /home/sfprojects/jobeet/web
  AllowOverride All
  Allow from All
  /Directory
  Alias /sf /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
  Directory /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
  AllowOverride All
  Allow from All
  /Directory
  /VirtualHost

  Added to the httpd.conf

  # This is the configuration for your project
  VirtualHost 127.0.0.1:80 http://127.0.0.1/
  ServerNamewww.jobeet.com.localhost
  !-- same configuration as before --
  /VirtualHost

  Added to the hosts file
  127.0.0.1www.jobeet.com.localhost

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

  --
  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.comsymfony-users%2bunsubscr...@goog­legroups.com
  For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en- Hide quoted text -

 - Show quoted text -

-- 
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


Re: [symfony-users] Re: Web Server Configuration

2010-03-08 Thread DEEPAK BHATIA
I am sorry to say but that doesn't work. I am very much in India

On Mon, Mar 8, 2010 at 2:27 PM, manguito ucpmerc...@gmail.com wrote:
 Hi Deepak,
 try this and let me know if I'm right or wrong
 in the httpd.conf change this: ServerName www.jobeet.com.localhost
 to :ServerName www.jobeet.com
 then in the etc\host file
 change: 127.0.0.1 www.jobeet.com.localhost
 to: 127.0.0.1 www.jobeet.com

 by the wayare you from Riverside CA?
 I remember to have a friend at RCC-Riverside whose last name is Bhatia
 manguito

 On Mar 8, 3:33 am, DEEPAK BHATIA toreachdee...@gmail.com wrote:
 Hi,

 Yes we use the IP Address to access the symfony application.

 But can we access the index.htm  in jobeet directory 
 throughhttp://www.jobeet.com.

 May be I am not able to understand your point. Kindly elaborate the same.

 Regards

 Deepak Bhatia

 On Mon, Mar 8, 2010 at 1:20 PM, Asif Ali M itsme_...@yahoo.com wrote:



    Hi Deepak,

  Because the system on your LAN is accessing the live site
 http://www.jobeet.com/

   http://www.jobeet.com/Better access your application with its system
  name/ IP ( your private ip like 192.168.0.10) from your LAN and it will
  work,

  --
  Thanks
  Asif Ali M
 http://www.linkedin.com/in/geeni

  --- On *Mon, 3/8/10, DEEPAK BHATIA toreachdee...@gmail.com* wrote:

  From: DEEPAK BHATIA toreachdee...@gmail.com
  Subject: [symfony-users] Web Server Configuration
  To: symfony-users@googlegroups.com
  Date: Monday, March 8, 2010, 12:23 PM

    Hi,

  I am using Symfony 1.4.

  In the section of configuration of Web Server in Jobeet Tutorial as given
  below

  When I accesshttp://www.jobeet.com/on some other machine on LAN, I
  get some output like
  Index of cgi-bin

  When I accesshttp://www.jobeet.com.locahost/index.phpon the local
  machine, I get symfony project successfully installed.

  QUESTION: How can I access my project ashttp://www.jobeet.com? Which
  index.htm I need to modify/create ?

  ===Web Server Configuration==

  # 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/sfprojects/jobeet/web
  DirectoryIndex index.php
  Directory /home/sfprojects/jobeet/web
  AllowOverride All
  Allow from All
  /Directory
  Alias /sf /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
  Directory /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
  AllowOverride All
  Allow from All
  /Directory
  /VirtualHost

  Added to the httpd.conf

  # This is the configuration for your project
  VirtualHost 127.0.0.1:80 http://127.0.0.1/
  ServerNamewww.jobeet.com.localhost
  !-- same configuration as before --
  /VirtualHost

  Added to the hosts file
  127.0.0.1www.jobeet.com.localhost

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

  --
  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.comsymfony-users%2bunsubscr...@goog­legroups.com
  For more options, visit this group at
 http://groups.google.com/group/symfony-users?hl=en- Hide quoted text -

 - Show quoted text -

 --
 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


-- 
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


[symfony-users] Re: Web Server Configuration

2010-03-08 Thread manguito
: (
Sorry man,
manguito

On Mar 8, 4:08 am, DEEPAK BHATIA toreachdee...@gmail.com wrote:
 I am sorry to say but that doesn't work. I am very much in India



 On Mon, Mar 8, 2010 at 2:27 PM, manguito ucpmerc...@gmail.com wrote:
  Hi Deepak,
  try this and let me know if I'm right or wrong
  in the httpd.conf change this: ServerNamewww.jobeet.com.localhost
  to :ServerNamewww.jobeet.com
  then in the etc\host file
  change: 127.0.0.1www.jobeet.com.localhost
  to: 127.0.0.1www.jobeet.com

  by the wayare you from Riverside CA?
  I remember to have a friend at RCC-Riverside whose last name is Bhatia
  manguito

  On Mar 8, 3:33 am, DEEPAK BHATIA toreachdee...@gmail.com wrote:
  Hi,

  Yes we use the IP Address to access the symfony application.

  But can we access the index.htm  in jobeet directory 
  throughhttp://www.jobeet.com.

  May be I am not able to understand your point. Kindly elaborate the same.

  Regards

  Deepak Bhatia

  On Mon, Mar 8, 2010 at 1:20 PM, Asif Ali M itsme_...@yahoo.com wrote:

     Hi Deepak,

   Because the system on your LAN is accessing the live site
  http://www.jobeet.com/

    http://www.jobeet.com/Better access your application with its system
   name/ IP ( your private ip like 192.168.0.10) from your LAN and it will
   work,

   --
   Thanks
   Asif Ali M
  http://www.linkedin.com/in/geeni

   --- On *Mon, 3/8/10, DEEPAK BHATIA toreachdee...@gmail.com* wrote:

   From: DEEPAK BHATIA toreachdee...@gmail.com
   Subject: [symfony-users] Web Server Configuration
   To: symfony-users@googlegroups.com
   Date: Monday, March 8, 2010, 12:23 PM

     Hi,

   I am using Symfony 1.4.

   In the section of configuration of Web Server in Jobeet Tutorial as given
   below

   When I accesshttp://www.jobeet.com/onsome other machine on LAN, I
   get some output like
   Index of cgi-bin

   When I accesshttp://www.jobeet.com.locahost/index.phponthe local
   machine, I get symfony project successfully installed.

   QUESTION: How can I access my project ashttp://www.jobeet.com?Which
   index.htm I need to modify/create ?

   ===Web Server Configuration==

   # 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/sfprojects/jobeet/web
   DirectoryIndex index.php
   Directory /home/sfprojects/jobeet/web
   AllowOverride All
   Allow from All
   /Directory
   Alias /sf /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
   Directory /home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf
   AllowOverride All
   Allow from All
   /Directory
   /VirtualHost

   Added to the httpd.conf

   # This is the configuration for your project
   VirtualHost 127.0.0.1:80 http://127.0.0.1/
   ServerNamewww.jobeet.com.localhost
   !-- same configuration as before --
   /VirtualHost

   Added to the hosts file
   127.0.0.1www.jobeet.com.localhost

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

   --
   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.comsymfony-users%2bunsubscr...@goog­­legroups.com
   For more options, visit this group at
  http://groups.google.com/group/symfony-users?hl=en-Hide quoted text -

  - Show quoted text -

  --
  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- Hide quoted text -

 - Show quoted text -

-- 
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