Web Hosting Talk







View Full Version : Need help with configuring and installing...


Cael
02-12-2001, 06:12 AM
Can anyone give me step by step tutorial configuration need to be done for webalizer v1.30 ??? I don't know what I need to configure, what I need to type in telnet etc...

And I need step-by-step tutorial for installing and configuring mod_throttle/3.1.2

http://www.snert.com/Software/mod_throttle/

I don't understand the manual there...

Anyone please help~~~

Thank you

Pingu
02-12-2001, 07:10 AM
There's a pkg for the webalizer at ftp://ftp.cobaltnet.com/pub/experimental/raq3/

In your control panel, goto maintenance, install software and enter the URL for the webalizer pkg.
Then click install, and you're done.

After installing you can enter the stats at http://yourdomain/stats. You will be required to login using the siteadmin name and password

Cael
02-12-2001, 10:47 AM
How about the mod_throttle ?

And I installed the version that don't require siteadmin login and pass to view...

How can I uninstall it?

Pingu
02-12-2001, 02:09 PM
For uninstall instructions, take a look here:
http://pkg.nl.cobalt.com/howto/

There's an uninstall HOW TO there :)

Haven't got a clue for the other thing your asking about :(

Cael
02-13-2001, 07:18 AM
Emm...
Is anyone using Mod_throttle right now?
Mind to give me step-by-step instruction to install and configure it?

Cael
02-13-2001, 09:11 AM
By the way...

I uninstall my webalizer and install the secure mode webalizer... And when I go to mysite.com/stats , it is still the non-secure version. Any idea?

Chicken
02-13-2001, 10:13 AM
All it did was put in a .htaccess just like you'd do to pass protect any folder. Can be added. Can't help you with mod throttle I'm afraid.

Pingu
02-13-2001, 11:42 AM
Not sure why the authorized webalizer doesn't authorize. Maybe you should do it like I did, I just installed it right over the non-auth webalizer and that worked, eventhough I got some error message...

Still a complete idiot on the other thing...

Cael
02-14-2001, 06:20 AM
Well, I think I will pick the .htaccess thing :)
So chicken... Mind to teach me?

Anyway, any place to learn things with .htaccess , httpd.conf etc ??? Don't tell me to get a big book of UNIX because just the books in the books that I need to study are already killing me...

Chicken
02-14-2001, 10:07 AM
This was posted before on the board:

Put this in your .htaccess file:

AuthUserFile /home/sites/site#/.htpasswd
AuthGroupFile /dev/null
AuthName "Site Name"
AuthType Basic
AuthPAM_enabled off

<limit GET PUT POST>
require valid-user
</limit>


Then execute the following command on the cobalt:

"htpasswd -c /path/to/.htpasswd username"

It will then prompt you for the password. Enter it, and it should be setup. After setting up the first username, do not use the -c option to add more usernames.

Hope this helps! If you get an error saying "htpasswd" not found, try a "whereis htpasswd" and then use that pathname.

-as for learning about htaccess, a saearch on the web would probably reveal better sites than these but:
http://www.iboost.com/build/backend/895.htm
http://www.rit.edu/Help/htaccess.shtml
http://apachetoday.com/news_story.php3?ltsn=2000-07-19-002-01-NW-LF-SW

-and of course: http://apache.org/ (type in anything in the search box). I suggest you look for linux resources, not RaQ or Cobalt resources, though a search through the Cobalt mailing list can be fruitful (can be a bunch of... too).