hi forum,
This is URL i give http://192.168.0.245/bugzilla
which gives me an error;
Access forbidden!
You don't have permission to access the requested object. It is either read-protected or not readable by the server.
If you think this is a server error, please contact the webmaster
Error 403
192.168.0.245
Thu 06 Jan 2005 12:21:40 PM IST
Apache/2.0.40 (Red Hat Linux)
This is what i have configured ;
root# cd /var/www/html
root# ln -s /usr/local/bugzilla bugzilla
root# mkdir /usr/bonsaitools
root# mkdir /usr/bonsaitools/bin
root# cd /usr/bonsaitools/bin
root# ln -s /usr/bin/perl .
root# vi /etc/httpd/conf/httpd.conf
Listen 80
User apache
Group apache
ServerAdmin root@localhost.local
ServerName 192.168.0.245:80
DocumentRoot "/var/www/html"
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride Limit
Order allow,deny
Allow from all
</Directory>
<Directory "/usr/local/bugzilla">
Options +Indexes +FollowSymLinks
Options +ExecCGI
AllowOverride Limit
Order allow,deny
Allow from all
</Directory>
UserDir public_html
AddHandler cgi-script .cgi pl
DirectoryIndex index.html index.html.var index.cgi
root# mysql -u root -p
mysql> UPDATE user SET Password=PASSWORD('<new_password>') WHERE user='root';
mysql# FLUSH PRIVILEGES;
mysql> GRANT SELECT,INSERT,UPDATE,DELETE,INDEX, ALTER,CREATE,DROP,REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY '<bugs_password>';
mysql> FLUSH PRIVILEGES;
mysql> create database bugs;
root# vi /etc/my.cnf
# Allow packets up to 1M
set-variable = max_allowed_packet=1M
root# vi /usr/local/bugzilla/localconfig.pl
$webservergroup = "apache";
$db_host = "localhost";
$db_port = 3306;
$db_name = "bugs";
$db_user = "bugs";
$db_pass = "bugs";
root# cd /var/www/html
root# ln -s /usr/local/bugzilla bugzilla
root# cd /usr/local/bugzilla
root# chown -R root .
root# chgrp -R apache .
root# chmod -R g+rwx .
root# ./checksetup.pl
Checking perl modules ...
Checking for AppConfig (v1.52) ok: found v1.56
Checking for CGI::Carp (any) ok: found v1.24
Checking for Data::Dumper (any) ok: found v2.12
Checking for Date::Parse (any) ok: found v2.27
Checking for DBI (v1.13) ok: found v1.32
Checking for DBD::mysql (v1.2209) ok: found v2.1021
Checking for File::Spec (v0.82) ok: found v0.83
Checking for File::Temp (any) ok: found v0.13
Checking for Template (v2.07) ok: found v2.07
Checking for Text::Wrap (v2001.0131) ok: found v2001.0929
Checking for CGI::Carp (any) ok: found v1.24
The following Perl modules are optional:
Checking for GD (v1.19) ok: found v1.19
Checking for Chart::Base (v0.99) ok: found v2.3
Checking for XML::Parser (any) ok: found v2.34
Checking user setup ...
Precompiling templates ...
Checking for MySQL Server (v3.22.5) ok: found v3.23.54
Populating duplicates table...
i m stucked :(
can anybody help me in this regard plz...
Thanks in advance,
sanshiv
Bookmarks