Apache Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsSystem AdministrationApache Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old August 20th, 2001, 11:45 PM
jbdecker jbdecker is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2001
Posts: 61 jbdecker User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 11 m 53 sec
Reputation Power: 8
port 80

Hi..my users are telling me that they are getting a port 80 closed error. But only some of them...can you tell me why this happening?

-james

Reply With Quote
  #2  
Old August 21st, 2001, 02:22 AM
freebsd freebsd is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2001
Posts: 5 freebsd User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
>> they are getting a port 80 closed error

When does that happen? Whenever they visit your site the 1st time or they are already in, but surfing from page to page?

What's the URL of your site?

Reply With Quote
  #3  
Old August 21st, 2001, 10:17 AM
jbdecker jbdecker is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2001
Posts: 61 jbdecker User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 11 m 53 sec
Reputation Power: 8
Well, some one told me this was happening but a port scan seems to say it's open so I don't know.

But the wierd thing is that half of my users are getting to the sight and half are not.....

It seems that all people running IE are ok and the people using AOL or NETSCAPE are not getting in...


I don't know what's wrong...

my site is http://tinydates.com

I can e-mail some one my apache conf file if you think maybe I have it set wrong.


thanks,

-james


better yet..i uploaded the conf file to http://tinydates.com/httpd_conf.txt

Last edited by jbdecker : August 21st, 2001 at 10:39 AM.

Reply With Quote
  #4  
Old August 21st, 2001, 07:54 PM
KilerCris KilerCris is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2001
Location: Bensalem PA
Posts: 58 KilerCris User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to KilerCris Send a message via AIM to KilerCris Send a message via Yahoo to KilerCris
might help to know that @home recently blocked port 80

Reply With Quote
  #5  
Old August 21st, 2001, 08:00 PM
freebsd freebsd is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2001
Posts: 5 freebsd User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
>> the people using AOL or NETSCAPE are not getting in

Do you have a static IP? If you don't, using dynamic dns service like ZoneEdit is often reliable. Those users probably are using an outdated dns cache. So say your IP has been changed to another one, but they are trying to reach an IP that doesn't run any web server, obviously port 80 is not opened.

If you are really into this stuff, ditch mindspring.com and go for SpeakEasy.net. Speakeasy is the only DSL's ISP (I am aware of) that let you run anything without a restriction. Of course, you also get 2 static IPs and can request up to 10 (residential) for $2.95 apiece per month.

As for your Apache configuration:

1) Uncomment the following lines:

Listen 80
BindAddress *
LoadModule userdir_module modules/mod_userdir.so
AddModule mod_userdir.c
UserDir public_html

2) UseCanonicalName On

Change to Off

3) <Directory "/var/www/icons">
Options Indexes MultiViews

Change Options to None

4) <Directory "/var/www/cgi-bin">
AllowOverride None
Options ExecCGI

ScriptAlias'ed cgi-bin doesn't need ExecCGI, so set Options to None

5) <IfModule mod_php4.c>
AddType application/x-httpd-php .php4 .php3 .phtml .php

Remove .php3 and .phtml

6) If mod_perl script uses .pl extension,

AddHandler cgi-script .cgi .pl

Remove .pl

7) <Location /perl>
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
</Location>
</IfModule>

mod_perl is NOT CGI script. ExecCGI is for CGI script only. So remove +ExecCGI.

8) Move your <IfDefine HAVE_SSL> block to the bottom of your httpd.conf (the lowest priority).

9) Uncomment the following block:

#<Directory /home/*/public_html>
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS PROPFIND>
# Order allow,deny
# Allow from all
# </Limit>
# <Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
# Order deny,allow
# Deny from all
# </Limit>
#</Directory>

10) If you are really using SSL, put a ServerName directive within that <VirtualHost> block:

ServerName www.tinydates.com

You can't put ServerAlias though.

Reply With Quote
  #6  
Old August 21st, 2001, 08:04 PM
freebsd freebsd is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2001
Posts: 5 freebsd User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
>> might help to know that @home recently blocked port 80

That has nothing to do with his problem. Further, @home is blocking incoming port 80 requests at router level, not outgoing.

Reply With Quote
  #7  
Old September 6th, 2001, 01:54 PM
jbdecker jbdecker is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2001
Posts: 61 jbdecker User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 11 m 53 sec
Reputation Power: 8
Wow...thanks for the help!
I wish I had came back and checked this earlier!

Can you tell me how I would enable SSI now?


Thanks!

-james

Reply With Quote
  #8  
Old September 6th, 2001, 07:26 PM
freebsd freebsd is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2001
Posts: 5 freebsd User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
1) Uncomment the AddHandler server-parsed line

2) Start here -> http://httpd.apache.org/docs/mod/core.html#options

Reply With Quote
Reply

Viewing: Dev Shed ForumsSystem AdministrationApache Development > port 80


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway