Problems in installing bugzilla on ubuntu 15.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm trying to install Bugzilla.
I have Phpmyadmin
installed in my system so I can't follow the instructions on the Bugzilla site that tells me to remove the /var/www/html
folder because I have Phpmyadmin
in there.
Besides I have seen the instructions here on askubuntu, but I don't want to create other users on my machine and I want to install Bugzilla for my default user because I'm the only one who uses this machine.
Here are the steps I followed:
sudo su
apt-get install git nano
apt-get install apache2 mysql-server libappconfig-perl libdate-calc-perl libtemplate-perl libmime-perl build-essential libdatetime-timezone-perl libdatetime-perl libemail-sender-perl libemail-mime-perl libemail-mime-modifier-perl libdbi-perl libdbd-mysql-perl libcgi-pm-perl libmath-random-isaac-perl libmath-random-isaac-xs-perl apache2-mpm-prefork libapache2-mod-perl2 libapache2-mod-perl2-dev libchart-perl libxml-perl libxml-twig-perl perlmagick libgd-graph-perl libtemplate-plugin-gd-perl libsoap-lite-perl libhtml-scrubber-perl libjson-rpc-perl libdaemon-generic-perl libtheschwartz-perl libtest-taint-perl libauthen-radius-perl libfile-slurp-perl libencode-detect-perl libmodule-build-perl libnet-ldap-perl libauthen-sasl-perl libtemplate-perl-doc libfile-mimeinfo-perl libhtml-formattext-withlinks-perl libgd-dev lynx-cur python-sphinx
cd /var/www/html
git clone --branch release-5.0-stable https://git.mozilla.org/bugzilla/bugzilla bugzilla
cd bugzilla
gedit /etc/mysql/my.cnf`
Altered on Line 52: max_allowed_packet=100M
Added as new line 31, in the [mysqld]
section: ft_min_word_len=2
mysql -u root -p -e "GRANT ALL PRIVILEGES ON bugs.* TO bugs@localhost IDENTIFIED BY '$my_pass'"
service mysql restart
gedit /etc/apache2/sites-available/bugzilla.conf`
Added:
ServerName localhost
<Directory /var/www/html>
AddHandler cgi-script .cgi
Options +ExecCGI
DirectoryIndex index.cgi index.html
AllowOverride Limit FileInfo Indexes Options
</Directory>
Then:
a2ensite bugzilla
a2enmod cgi headers expires
service apache2 restart
cd /var/www/html/bugzilla
./checksetup.pl
It gave me some errors so I run:
/usr/bin/perl install-module.pl –all
./checksetup.pl
gedit localconfig
Line 29: set $webservergroup
to www-data
Line 67: set $db_pass
to the password for the bugs user I have created in MySQL a few steps ago
./checksetup.pl (again)
./testserver.pl http://localhost/
And then I get this error:
strictures.pm extra testing active but couldn't load all modules. Missing were:
indirect multidimensional bareword::filehandles
Extra testing is auto-enabled in checkouts only, so if you're the author
of a strictures-using module you need to run:
cpan indirect multidimensional bareword::filehandles
but these modules are not required by your users.
TEST-OK Webserver is running under group id in $webservergroup.
TEST-FAILED Fetch of images/padlock.png failed
Your web server could not fetch http://localhost/images/padlock.png.
Check your web server configuration and try again.
So what did I do wrong?
As you can see I'd like to install Bugzilla /var/www/html/
folder where I have also Phpmyadmin
so I will have: /var/www/html/bugzilla
.
Thanks.
Edit: after running: cpan indirect multidimensional bareword::filehandles
the problem is still:
TEST-OK Webserver is running under group id in $webservergroup.
TEST-FAILED Fetch of images/padlock.png failed
Your web server could not fetch http://localhost/images/padlock.png.
Check your web server configuration and try again.
Edit 2:
Ok, the only thing I found in apache2
logs is /var/log/other_vhosts_access.log
:
localhost:80 127.0.0.1 - - [27/Jul/2015:10:29:06 +0200] "GET /images/padlock.png HTTP/1.1" 404 469 "-" "libwww-perl/6.05"
and /var/log/error.log
:
[Mon Jul 27 10:14:38.112755 2015] [mpm_prefork:notice] [pid 7477] AH00163: Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.11 mod_perl/2.0.8 Perl/v5.18.2 configured -- resuming normal operations
[Mon Jul 27 10:14:38.112794 2015] [core:notice] [pid 7477] AH00094: Command line: '/usr/sbin/apache2'
users phpmyadmin bugzilla
add a comment |
I'm trying to install Bugzilla.
I have Phpmyadmin
installed in my system so I can't follow the instructions on the Bugzilla site that tells me to remove the /var/www/html
folder because I have Phpmyadmin
in there.
Besides I have seen the instructions here on askubuntu, but I don't want to create other users on my machine and I want to install Bugzilla for my default user because I'm the only one who uses this machine.
Here are the steps I followed:
sudo su
apt-get install git nano
apt-get install apache2 mysql-server libappconfig-perl libdate-calc-perl libtemplate-perl libmime-perl build-essential libdatetime-timezone-perl libdatetime-perl libemail-sender-perl libemail-mime-perl libemail-mime-modifier-perl libdbi-perl libdbd-mysql-perl libcgi-pm-perl libmath-random-isaac-perl libmath-random-isaac-xs-perl apache2-mpm-prefork libapache2-mod-perl2 libapache2-mod-perl2-dev libchart-perl libxml-perl libxml-twig-perl perlmagick libgd-graph-perl libtemplate-plugin-gd-perl libsoap-lite-perl libhtml-scrubber-perl libjson-rpc-perl libdaemon-generic-perl libtheschwartz-perl libtest-taint-perl libauthen-radius-perl libfile-slurp-perl libencode-detect-perl libmodule-build-perl libnet-ldap-perl libauthen-sasl-perl libtemplate-perl-doc libfile-mimeinfo-perl libhtml-formattext-withlinks-perl libgd-dev lynx-cur python-sphinx
cd /var/www/html
git clone --branch release-5.0-stable https://git.mozilla.org/bugzilla/bugzilla bugzilla
cd bugzilla
gedit /etc/mysql/my.cnf`
Altered on Line 52: max_allowed_packet=100M
Added as new line 31, in the [mysqld]
section: ft_min_word_len=2
mysql -u root -p -e "GRANT ALL PRIVILEGES ON bugs.* TO bugs@localhost IDENTIFIED BY '$my_pass'"
service mysql restart
gedit /etc/apache2/sites-available/bugzilla.conf`
Added:
ServerName localhost
<Directory /var/www/html>
AddHandler cgi-script .cgi
Options +ExecCGI
DirectoryIndex index.cgi index.html
AllowOverride Limit FileInfo Indexes Options
</Directory>
Then:
a2ensite bugzilla
a2enmod cgi headers expires
service apache2 restart
cd /var/www/html/bugzilla
./checksetup.pl
It gave me some errors so I run:
/usr/bin/perl install-module.pl –all
./checksetup.pl
gedit localconfig
Line 29: set $webservergroup
to www-data
Line 67: set $db_pass
to the password for the bugs user I have created in MySQL a few steps ago
./checksetup.pl (again)
./testserver.pl http://localhost/
And then I get this error:
strictures.pm extra testing active but couldn't load all modules. Missing were:
indirect multidimensional bareword::filehandles
Extra testing is auto-enabled in checkouts only, so if you're the author
of a strictures-using module you need to run:
cpan indirect multidimensional bareword::filehandles
but these modules are not required by your users.
TEST-OK Webserver is running under group id in $webservergroup.
TEST-FAILED Fetch of images/padlock.png failed
Your web server could not fetch http://localhost/images/padlock.png.
Check your web server configuration and try again.
So what did I do wrong?
As you can see I'd like to install Bugzilla /var/www/html/
folder where I have also Phpmyadmin
so I will have: /var/www/html/bugzilla
.
Thanks.
Edit: after running: cpan indirect multidimensional bareword::filehandles
the problem is still:
TEST-OK Webserver is running under group id in $webservergroup.
TEST-FAILED Fetch of images/padlock.png failed
Your web server could not fetch http://localhost/images/padlock.png.
Check your web server configuration and try again.
Edit 2:
Ok, the only thing I found in apache2
logs is /var/log/other_vhosts_access.log
:
localhost:80 127.0.0.1 - - [27/Jul/2015:10:29:06 +0200] "GET /images/padlock.png HTTP/1.1" 404 469 "-" "libwww-perl/6.05"
and /var/log/error.log
:
[Mon Jul 27 10:14:38.112755 2015] [mpm_prefork:notice] [pid 7477] AH00163: Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.11 mod_perl/2.0.8 Perl/v5.18.2 configured -- resuming normal operations
[Mon Jul 27 10:14:38.112794 2015] [core:notice] [pid 7477] AH00094: Command line: '/usr/sbin/apache2'
users phpmyadmin bugzilla
Did you runcpan indirect multidimensional bareword::filehandles
?
– Rinzwind
Jul 27 '15 at 8:43
Ok I did right now and the only problem that I still have is:TEST-OK Webserver is running under group id in $webservergroup. TEST-FAILED Fetch of images/padlock.png failed Your web server could not fetch http://localhost/images/padlock.png. Check your web server configuration and try again.
– Frank
Jul 27 '15 at 8:52
Check the apache2 log in /var/log/ for notices. (the problem is a config problem so not really something we can answer). Likely /var/log/apache2/error* is going to tell what. Oh could be a domain issue too.
– Rinzwind
Jul 27 '15 at 9:22
Ok, please see my edit.
– Frank
Jul 27 '15 at 9:35
add a comment |
I'm trying to install Bugzilla.
I have Phpmyadmin
installed in my system so I can't follow the instructions on the Bugzilla site that tells me to remove the /var/www/html
folder because I have Phpmyadmin
in there.
Besides I have seen the instructions here on askubuntu, but I don't want to create other users on my machine and I want to install Bugzilla for my default user because I'm the only one who uses this machine.
Here are the steps I followed:
sudo su
apt-get install git nano
apt-get install apache2 mysql-server libappconfig-perl libdate-calc-perl libtemplate-perl libmime-perl build-essential libdatetime-timezone-perl libdatetime-perl libemail-sender-perl libemail-mime-perl libemail-mime-modifier-perl libdbi-perl libdbd-mysql-perl libcgi-pm-perl libmath-random-isaac-perl libmath-random-isaac-xs-perl apache2-mpm-prefork libapache2-mod-perl2 libapache2-mod-perl2-dev libchart-perl libxml-perl libxml-twig-perl perlmagick libgd-graph-perl libtemplate-plugin-gd-perl libsoap-lite-perl libhtml-scrubber-perl libjson-rpc-perl libdaemon-generic-perl libtheschwartz-perl libtest-taint-perl libauthen-radius-perl libfile-slurp-perl libencode-detect-perl libmodule-build-perl libnet-ldap-perl libauthen-sasl-perl libtemplate-perl-doc libfile-mimeinfo-perl libhtml-formattext-withlinks-perl libgd-dev lynx-cur python-sphinx
cd /var/www/html
git clone --branch release-5.0-stable https://git.mozilla.org/bugzilla/bugzilla bugzilla
cd bugzilla
gedit /etc/mysql/my.cnf`
Altered on Line 52: max_allowed_packet=100M
Added as new line 31, in the [mysqld]
section: ft_min_word_len=2
mysql -u root -p -e "GRANT ALL PRIVILEGES ON bugs.* TO bugs@localhost IDENTIFIED BY '$my_pass'"
service mysql restart
gedit /etc/apache2/sites-available/bugzilla.conf`
Added:
ServerName localhost
<Directory /var/www/html>
AddHandler cgi-script .cgi
Options +ExecCGI
DirectoryIndex index.cgi index.html
AllowOverride Limit FileInfo Indexes Options
</Directory>
Then:
a2ensite bugzilla
a2enmod cgi headers expires
service apache2 restart
cd /var/www/html/bugzilla
./checksetup.pl
It gave me some errors so I run:
/usr/bin/perl install-module.pl –all
./checksetup.pl
gedit localconfig
Line 29: set $webservergroup
to www-data
Line 67: set $db_pass
to the password for the bugs user I have created in MySQL a few steps ago
./checksetup.pl (again)
./testserver.pl http://localhost/
And then I get this error:
strictures.pm extra testing active but couldn't load all modules. Missing were:
indirect multidimensional bareword::filehandles
Extra testing is auto-enabled in checkouts only, so if you're the author
of a strictures-using module you need to run:
cpan indirect multidimensional bareword::filehandles
but these modules are not required by your users.
TEST-OK Webserver is running under group id in $webservergroup.
TEST-FAILED Fetch of images/padlock.png failed
Your web server could not fetch http://localhost/images/padlock.png.
Check your web server configuration and try again.
So what did I do wrong?
As you can see I'd like to install Bugzilla /var/www/html/
folder where I have also Phpmyadmin
so I will have: /var/www/html/bugzilla
.
Thanks.
Edit: after running: cpan indirect multidimensional bareword::filehandles
the problem is still:
TEST-OK Webserver is running under group id in $webservergroup.
TEST-FAILED Fetch of images/padlock.png failed
Your web server could not fetch http://localhost/images/padlock.png.
Check your web server configuration and try again.
Edit 2:
Ok, the only thing I found in apache2
logs is /var/log/other_vhosts_access.log
:
localhost:80 127.0.0.1 - - [27/Jul/2015:10:29:06 +0200] "GET /images/padlock.png HTTP/1.1" 404 469 "-" "libwww-perl/6.05"
and /var/log/error.log
:
[Mon Jul 27 10:14:38.112755 2015] [mpm_prefork:notice] [pid 7477] AH00163: Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.11 mod_perl/2.0.8 Perl/v5.18.2 configured -- resuming normal operations
[Mon Jul 27 10:14:38.112794 2015] [core:notice] [pid 7477] AH00094: Command line: '/usr/sbin/apache2'
users phpmyadmin bugzilla
I'm trying to install Bugzilla.
I have Phpmyadmin
installed in my system so I can't follow the instructions on the Bugzilla site that tells me to remove the /var/www/html
folder because I have Phpmyadmin
in there.
Besides I have seen the instructions here on askubuntu, but I don't want to create other users on my machine and I want to install Bugzilla for my default user because I'm the only one who uses this machine.
Here are the steps I followed:
sudo su
apt-get install git nano
apt-get install apache2 mysql-server libappconfig-perl libdate-calc-perl libtemplate-perl libmime-perl build-essential libdatetime-timezone-perl libdatetime-perl libemail-sender-perl libemail-mime-perl libemail-mime-modifier-perl libdbi-perl libdbd-mysql-perl libcgi-pm-perl libmath-random-isaac-perl libmath-random-isaac-xs-perl apache2-mpm-prefork libapache2-mod-perl2 libapache2-mod-perl2-dev libchart-perl libxml-perl libxml-twig-perl perlmagick libgd-graph-perl libtemplate-plugin-gd-perl libsoap-lite-perl libhtml-scrubber-perl libjson-rpc-perl libdaemon-generic-perl libtheschwartz-perl libtest-taint-perl libauthen-radius-perl libfile-slurp-perl libencode-detect-perl libmodule-build-perl libnet-ldap-perl libauthen-sasl-perl libtemplate-perl-doc libfile-mimeinfo-perl libhtml-formattext-withlinks-perl libgd-dev lynx-cur python-sphinx
cd /var/www/html
git clone --branch release-5.0-stable https://git.mozilla.org/bugzilla/bugzilla bugzilla
cd bugzilla
gedit /etc/mysql/my.cnf`
Altered on Line 52: max_allowed_packet=100M
Added as new line 31, in the [mysqld]
section: ft_min_word_len=2
mysql -u root -p -e "GRANT ALL PRIVILEGES ON bugs.* TO bugs@localhost IDENTIFIED BY '$my_pass'"
service mysql restart
gedit /etc/apache2/sites-available/bugzilla.conf`
Added:
ServerName localhost
<Directory /var/www/html>
AddHandler cgi-script .cgi
Options +ExecCGI
DirectoryIndex index.cgi index.html
AllowOverride Limit FileInfo Indexes Options
</Directory>
Then:
a2ensite bugzilla
a2enmod cgi headers expires
service apache2 restart
cd /var/www/html/bugzilla
./checksetup.pl
It gave me some errors so I run:
/usr/bin/perl install-module.pl –all
./checksetup.pl
gedit localconfig
Line 29: set $webservergroup
to www-data
Line 67: set $db_pass
to the password for the bugs user I have created in MySQL a few steps ago
./checksetup.pl (again)
./testserver.pl http://localhost/
And then I get this error:
strictures.pm extra testing active but couldn't load all modules. Missing were:
indirect multidimensional bareword::filehandles
Extra testing is auto-enabled in checkouts only, so if you're the author
of a strictures-using module you need to run:
cpan indirect multidimensional bareword::filehandles
but these modules are not required by your users.
TEST-OK Webserver is running under group id in $webservergroup.
TEST-FAILED Fetch of images/padlock.png failed
Your web server could not fetch http://localhost/images/padlock.png.
Check your web server configuration and try again.
So what did I do wrong?
As you can see I'd like to install Bugzilla /var/www/html/
folder where I have also Phpmyadmin
so I will have: /var/www/html/bugzilla
.
Thanks.
Edit: after running: cpan indirect multidimensional bareword::filehandles
the problem is still:
TEST-OK Webserver is running under group id in $webservergroup.
TEST-FAILED Fetch of images/padlock.png failed
Your web server could not fetch http://localhost/images/padlock.png.
Check your web server configuration and try again.
Edit 2:
Ok, the only thing I found in apache2
logs is /var/log/other_vhosts_access.log
:
localhost:80 127.0.0.1 - - [27/Jul/2015:10:29:06 +0200] "GET /images/padlock.png HTTP/1.1" 404 469 "-" "libwww-perl/6.05"
and /var/log/error.log
:
[Mon Jul 27 10:14:38.112755 2015] [mpm_prefork:notice] [pid 7477] AH00163: Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.11 mod_perl/2.0.8 Perl/v5.18.2 configured -- resuming normal operations
[Mon Jul 27 10:14:38.112794 2015] [core:notice] [pid 7477] AH00094: Command line: '/usr/sbin/apache2'
users phpmyadmin bugzilla
users phpmyadmin bugzilla
edited Jun 3 '16 at 2:06
user517663
asked Jul 27 '15 at 8:40
FrankFrank
67522137
67522137
Did you runcpan indirect multidimensional bareword::filehandles
?
– Rinzwind
Jul 27 '15 at 8:43
Ok I did right now and the only problem that I still have is:TEST-OK Webserver is running under group id in $webservergroup. TEST-FAILED Fetch of images/padlock.png failed Your web server could not fetch http://localhost/images/padlock.png. Check your web server configuration and try again.
– Frank
Jul 27 '15 at 8:52
Check the apache2 log in /var/log/ for notices. (the problem is a config problem so not really something we can answer). Likely /var/log/apache2/error* is going to tell what. Oh could be a domain issue too.
– Rinzwind
Jul 27 '15 at 9:22
Ok, please see my edit.
– Frank
Jul 27 '15 at 9:35
add a comment |
Did you runcpan indirect multidimensional bareword::filehandles
?
– Rinzwind
Jul 27 '15 at 8:43
Ok I did right now and the only problem that I still have is:TEST-OK Webserver is running under group id in $webservergroup. TEST-FAILED Fetch of images/padlock.png failed Your web server could not fetch http://localhost/images/padlock.png. Check your web server configuration and try again.
– Frank
Jul 27 '15 at 8:52
Check the apache2 log in /var/log/ for notices. (the problem is a config problem so not really something we can answer). Likely /var/log/apache2/error* is going to tell what. Oh could be a domain issue too.
– Rinzwind
Jul 27 '15 at 9:22
Ok, please see my edit.
– Frank
Jul 27 '15 at 9:35
Did you run
cpan indirect multidimensional bareword::filehandles
?– Rinzwind
Jul 27 '15 at 8:43
Did you run
cpan indirect multidimensional bareword::filehandles
?– Rinzwind
Jul 27 '15 at 8:43
Ok I did right now and the only problem that I still have is:
TEST-OK Webserver is running under group id in $webservergroup. TEST-FAILED Fetch of images/padlock.png failed Your web server could not fetch http://localhost/images/padlock.png. Check your web server configuration and try again.
– Frank
Jul 27 '15 at 8:52
Ok I did right now and the only problem that I still have is:
TEST-OK Webserver is running under group id in $webservergroup. TEST-FAILED Fetch of images/padlock.png failed Your web server could not fetch http://localhost/images/padlock.png. Check your web server configuration and try again.
– Frank
Jul 27 '15 at 8:52
Check the apache2 log in /var/log/ for notices. (the problem is a config problem so not really something we can answer). Likely /var/log/apache2/error* is going to tell what. Oh could be a domain issue too.
– Rinzwind
Jul 27 '15 at 9:22
Check the apache2 log in /var/log/ for notices. (the problem is a config problem so not really something we can answer). Likely /var/log/apache2/error* is going to tell what. Oh could be a domain issue too.
– Rinzwind
Jul 27 '15 at 9:22
Ok, please see my edit.
– Frank
Jul 27 '15 at 9:35
Ok, please see my edit.
– Frank
Jul 27 '15 at 9:35
add a comment |
3 Answers
3
active
oldest
votes
For me (Linux Mint 17.2; Bugzilla 5.0.1, Apache 2.4.7) this helped (finally, after trying a lot of other things):
Changed AllowOverride Limit FileInfo Indexes Options
to AllowOverride All
add a comment |
I am experiencing the same problem with Ubuntu 14.04, apache 2.4.7, bugzilla 5.0. Also wants to set as http://localhost/bugzilla.
The trick was to think... Yes, simply.
You executed:
./testserver.pl http://localhost
when in fact you should have used
./testserver.pl http://localhost/bugzilla
since it needs as input the location of itself (yeah, pretty dumb).
You are missing a "g".
– Rinzwind
Nov 19 '15 at 10:04
add a comment |
I am experiencing the same issue. The problem for me was related to the AllowOverride
setting as well. This is in the file /etc/apache2/sites-enabled/000-default.conf
and was set to the following:
<VirtualHost *:80>
<"Directory /var/www/html/bugzilla>
AddHandler cgi-script cgi
DirectoryIndex index.cgi
Options +Indexes +ExecDGI +FollowSymLinks +MultiViews
AllowOverride Limit
Order Allow,deny
Allow from all
<Directory>
<VirtualHost>
The line AllowOverride
was changed to read:
AllowOverride None
The file /etc/apache2/sites-enabled/bugzilla.conf
has the following Directory entry:
<Directory /var/www/html>
AddHandler cgi-script .cgi
Options +ExecCGI +FollowSymLinks
DirecortryIndex index.cgi index.html
AllowOverride All
</Directory>
That fixed the issue for me.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f653219%2fproblems-in-installing-bugzilla-on-ubuntu-15-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
For me (Linux Mint 17.2; Bugzilla 5.0.1, Apache 2.4.7) this helped (finally, after trying a lot of other things):
Changed AllowOverride Limit FileInfo Indexes Options
to AllowOverride All
add a comment |
For me (Linux Mint 17.2; Bugzilla 5.0.1, Apache 2.4.7) this helped (finally, after trying a lot of other things):
Changed AllowOverride Limit FileInfo Indexes Options
to AllowOverride All
add a comment |
For me (Linux Mint 17.2; Bugzilla 5.0.1, Apache 2.4.7) this helped (finally, after trying a lot of other things):
Changed AllowOverride Limit FileInfo Indexes Options
to AllowOverride All
For me (Linux Mint 17.2; Bugzilla 5.0.1, Apache 2.4.7) this helped (finally, after trying a lot of other things):
Changed AllowOverride Limit FileInfo Indexes Options
to AllowOverride All
answered Oct 1 '15 at 11:51
JoshJosh
1
1
add a comment |
add a comment |
I am experiencing the same problem with Ubuntu 14.04, apache 2.4.7, bugzilla 5.0. Also wants to set as http://localhost/bugzilla.
The trick was to think... Yes, simply.
You executed:
./testserver.pl http://localhost
when in fact you should have used
./testserver.pl http://localhost/bugzilla
since it needs as input the location of itself (yeah, pretty dumb).
You are missing a "g".
– Rinzwind
Nov 19 '15 at 10:04
add a comment |
I am experiencing the same problem with Ubuntu 14.04, apache 2.4.7, bugzilla 5.0. Also wants to set as http://localhost/bugzilla.
The trick was to think... Yes, simply.
You executed:
./testserver.pl http://localhost
when in fact you should have used
./testserver.pl http://localhost/bugzilla
since it needs as input the location of itself (yeah, pretty dumb).
You are missing a "g".
– Rinzwind
Nov 19 '15 at 10:04
add a comment |
I am experiencing the same problem with Ubuntu 14.04, apache 2.4.7, bugzilla 5.0. Also wants to set as http://localhost/bugzilla.
The trick was to think... Yes, simply.
You executed:
./testserver.pl http://localhost
when in fact you should have used
./testserver.pl http://localhost/bugzilla
since it needs as input the location of itself (yeah, pretty dumb).
I am experiencing the same problem with Ubuntu 14.04, apache 2.4.7, bugzilla 5.0. Also wants to set as http://localhost/bugzilla.
The trick was to think... Yes, simply.
You executed:
./testserver.pl http://localhost
when in fact you should have used
./testserver.pl http://localhost/bugzilla
since it needs as input the location of itself (yeah, pretty dumb).
edited Nov 19 '15 at 10:04
Rinzwind
211k28406541
211k28406541
answered Nov 19 '15 at 9:47
XonqNoppXonqNopp
12
12
You are missing a "g".
– Rinzwind
Nov 19 '15 at 10:04
add a comment |
You are missing a "g".
– Rinzwind
Nov 19 '15 at 10:04
You are missing a "g".
– Rinzwind
Nov 19 '15 at 10:04
You are missing a "g".
– Rinzwind
Nov 19 '15 at 10:04
add a comment |
I am experiencing the same issue. The problem for me was related to the AllowOverride
setting as well. This is in the file /etc/apache2/sites-enabled/000-default.conf
and was set to the following:
<VirtualHost *:80>
<"Directory /var/www/html/bugzilla>
AddHandler cgi-script cgi
DirectoryIndex index.cgi
Options +Indexes +ExecDGI +FollowSymLinks +MultiViews
AllowOverride Limit
Order Allow,deny
Allow from all
<Directory>
<VirtualHost>
The line AllowOverride
was changed to read:
AllowOverride None
The file /etc/apache2/sites-enabled/bugzilla.conf
has the following Directory entry:
<Directory /var/www/html>
AddHandler cgi-script .cgi
Options +ExecCGI +FollowSymLinks
DirecortryIndex index.cgi index.html
AllowOverride All
</Directory>
That fixed the issue for me.
add a comment |
I am experiencing the same issue. The problem for me was related to the AllowOverride
setting as well. This is in the file /etc/apache2/sites-enabled/000-default.conf
and was set to the following:
<VirtualHost *:80>
<"Directory /var/www/html/bugzilla>
AddHandler cgi-script cgi
DirectoryIndex index.cgi
Options +Indexes +ExecDGI +FollowSymLinks +MultiViews
AllowOverride Limit
Order Allow,deny
Allow from all
<Directory>
<VirtualHost>
The line AllowOverride
was changed to read:
AllowOverride None
The file /etc/apache2/sites-enabled/bugzilla.conf
has the following Directory entry:
<Directory /var/www/html>
AddHandler cgi-script .cgi
Options +ExecCGI +FollowSymLinks
DirecortryIndex index.cgi index.html
AllowOverride All
</Directory>
That fixed the issue for me.
add a comment |
I am experiencing the same issue. The problem for me was related to the AllowOverride
setting as well. This is in the file /etc/apache2/sites-enabled/000-default.conf
and was set to the following:
<VirtualHost *:80>
<"Directory /var/www/html/bugzilla>
AddHandler cgi-script cgi
DirectoryIndex index.cgi
Options +Indexes +ExecDGI +FollowSymLinks +MultiViews
AllowOverride Limit
Order Allow,deny
Allow from all
<Directory>
<VirtualHost>
The line AllowOverride
was changed to read:
AllowOverride None
The file /etc/apache2/sites-enabled/bugzilla.conf
has the following Directory entry:
<Directory /var/www/html>
AddHandler cgi-script .cgi
Options +ExecCGI +FollowSymLinks
DirecortryIndex index.cgi index.html
AllowOverride All
</Directory>
That fixed the issue for me.
I am experiencing the same issue. The problem for me was related to the AllowOverride
setting as well. This is in the file /etc/apache2/sites-enabled/000-default.conf
and was set to the following:
<VirtualHost *:80>
<"Directory /var/www/html/bugzilla>
AddHandler cgi-script cgi
DirectoryIndex index.cgi
Options +Indexes +ExecDGI +FollowSymLinks +MultiViews
AllowOverride Limit
Order Allow,deny
Allow from all
<Directory>
<VirtualHost>
The line AllowOverride
was changed to read:
AllowOverride None
The file /etc/apache2/sites-enabled/bugzilla.conf
has the following Directory entry:
<Directory /var/www/html>
AddHandler cgi-script .cgi
Options +ExecCGI +FollowSymLinks
DirecortryIndex index.cgi index.html
AllowOverride All
</Directory>
That fixed the issue for me.
edited Jun 3 '16 at 1:59
Videonauth
25.1k1274103
25.1k1274103
answered Jun 2 '16 at 22:58
KambizRKambizR
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f653219%2fproblems-in-installing-bugzilla-on-ubuntu-15-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you run
cpan indirect multidimensional bareword::filehandles
?– Rinzwind
Jul 27 '15 at 8:43
Ok I did right now and the only problem that I still have is:
TEST-OK Webserver is running under group id in $webservergroup. TEST-FAILED Fetch of images/padlock.png failed Your web server could not fetch http://localhost/images/padlock.png. Check your web server configuration and try again.
– Frank
Jul 27 '15 at 8:52
Check the apache2 log in /var/log/ for notices. (the problem is a config problem so not really something we can answer). Likely /var/log/apache2/error* is going to tell what. Oh could be a domain issue too.
– Rinzwind
Jul 27 '15 at 9:22
Ok, please see my edit.
– Frank
Jul 27 '15 at 9:35