FIGURED IT OUT!!! (was): Can't seem to assign a different port for http (apache)

2002-11-25 Thread Totally Jayyness
I actually had it right the whole time.  The problem was Internet Explorer
the
WHOLE time.

It turns out to feed http on a different port, you only have to either add a

LISTEN port#

or change the standard port 80 to something else

port #

Even though I had done that it wasn't pulling up in IE for me.
Well, I was speaking with another friend of mine and telling him
all the different things I had tried.  He asked me if I was actually
typing in 'http://address' in the IE Address line.

Turns out that IE doesn't ASSUME the 'http://' on any port except 80.
So I went back in, made the changed to httpd.conf and then went to
http://192.168.0.10:1124 and BANG, there it was.

Called up a buddy of mine and had him try from the outside and BANG
there it was.

So thought I would follow up with all of you to 1:  Thankyou and
2:  Let you know about EVIL IE.

- Original Message -
From: Jim Arnold
Sent: Saturday, November 16, 2002 11:42 AM
Subject: Re: Can't seem to assign a different port for http (apache)


 At 9:22 AM -0700 11/16/02, Totally Jayyness wrote:
 Yeah, I tried that also, I just didnt' explain it
 well.  After the Listen 14
 or 1124 didn't work, I removed that line and did go
 further down and changed
 the

 Port 80

 to

 Port 14

 and then

 Port 1124

 Stopped and restarted the httpd daemon each time.
 Hmmm do I need to
 reset a different daemon or another daemon maybe?

 Jay



 If you are going to use a non-standard port you will
 also have to add that to the /etc/services file too.
 For example, to use port 8080 instead of 80, add this
 to the services file:

 http 8080/tcp
 http 8080/udp

 and then change the port from 80 to 8080 in httpd.conf
 and restart apace.

 HTH,
 jim


 __
 Do you Yahoo!?
 Yahoo! Web Hosting - Let the expert host your site
 http://webhosting.yahoo.com



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Can't seem to assign a different port for http (apache)

2002-11-16 Thread Totally Jayyness
Yeah, I tried that also, I just didnt' explain it well.  After the Listen 14
or 1124 didn't work, I removed that line and did go further down and changed
the

Port 80

to

Port 14

and then

Port 1124

Stopped and restarted the httpd daemon each time.  Hmmm do I need to
reset a different daemon or another daemon maybe?

Jay

--
Hmmm, try going a little further down the httpd.conf file and look for
the 'Port' setting.

Something like:

#
# Port: The port to which the standalone server listens. For
# ports  1023, you will need httpd to be run as root initially.
#
Port 80


Good luck,

Neill Robins
[EMAIL PROTECTED]
-




To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Can't seem to assign a different port for http (apache)

2002-11-15 Thread Totally Jayyness
I was able to change my static IP (thanks for the help in tracking down
rc.conf)

Now that my FreeBSD 4.4-Stable server is at home an on my internal network,
it is back up and running... somewhat.

On my internal network, if I open my browser and go to 192.168.0.10, it
pulls up
my web page just fine.  But if I go into httpd.conf and try to change the
port that httpd
normally listens on, I am having no luck.  I have tried these things.

I tried adding the line

Listen 14

then I stopped and restarted httpd but when I try to now go to
192.168.0.10:14, no
joy.  So I tried

Listen 1124

Thinking that maybe since I was running httpd as user 'nobody' that the port
# was
to low.  Again, trying to get to 192.168.0.10:1124 gives me page can not be
displayed.  So I delete out the 'Listen' line and decide to change the
default port.

So I run down through httpd.conf until I find where it sets the port to 80
and change
it to 14.  Stop and restart httpd.  No luck.  Thinking it might be that
'nobody' user
giving me trouble, I change the port to 1124, stop and restart it... still,
going to
192.168.0.10:1124 doesn't bring up the page.

You guys have any ideas?



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Script to change bitrates of mp3s

2002-10-25 Thread Totally Jayyness
Hopefully this mail will get through.  If the 
groups get flooded by several similar e-mails
in the next day or two, I apologize in advance
there are several e-mails hung in my works
e-mail server for some reason :(

I was trying to figure out how to find out the 
bitrates and then reduce the bitrates of my mp3s 
on my freebsd 4.4-stable server.


I found MP3:Info which will display bitrate and
other information about an mp3.

I also found that I can convert mp3 - mp3
using LAME.

So this is what I am trying to do now.  I would 
like to write a script to read the bitrate of an mp3 and then if the bitrate
is higher then 192 to dump the path/filename to a text file.

When I run MP3::Info, the output looks like this.

Track = zong_-_ugly_world_-money_mix-.mp3
  BITRATE  =  160

Is there a simple shell script string that would
be something like this?

If BITRATE  192 then add path/filename to textfile.txt

Thanks for any help.  Oh, if you do reply, 
please also reply directly as I am also unable
to get signed up for the mailing lists either
for some reason. :(

J

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message