Tagged Questions
0
votes
0answers
30 views
merging of two tables of mysql database, in which databases are having two different ports
I have installed two databases in different servers(it means different ports). Consider TESTLINK in 3306 and BUGZILLA in 3307. So i would like to merge two tables from these two databases.
Iam using ...
1
vote
3answers
621 views
bugzilla installation error :“InnoDB is disabled your MySQL installation. Bugzilla requires InnoDb to be enabled.” even if innodb is enabled
i have installed bugzilla4.2.5 in my windows7 machine. When i am ruuning the checksetup.pl script of bugzilla , it showing that
Use of uninitialized value $innodb_on in string ne at ...
0
votes
1answer
82 views
Installing bugzilla with mysql
I'm trying to install Bugzilla as part of setting up Testopia. I'm using 3.6.3 because our company site uses that and there are no plans to upgrade in the foreseeable future. I've install mysql but ...
1
vote
1answer
78 views
How do I manipulate a VARCHAR field in SQL to simplify a collection of roadmaps in a Bugzilla to Redmine migration?
As per an earlier question, I'm migrating from Bugzilla to Redmine and in doing so, I'd like to make use of the road-maps which Redmine offers.
In bugzilla, bugs were always logged against the ...
2
votes
1answer
93 views
How can I migrate versions from bugzilla into a new custom 'source version' field in redmine (what SQL syntax do I need)?
I'm in the process of migrating a bugzilla installation over to redmine.
In bugzilla bugs were always logged against the version of software which caused the issue to be raised.
Since redmine ...
0
votes
0answers
97 views
Bugzilla installation error
perl checksetup.pl error during bugzilla installation. I can't able to fix this error. Please help me to fix this error..
C:\Bugzilla>perl checksetup.pl
Use of :unique is deprecated at ...
0
votes
0answers
268 views
'Access denied' message when trying to move a Bugzilla database [closed]
I have a working Bugzilla database on Windows Home Server (the old one) that I am trying to move to a fresh working Bugzilla setup on another machine running Windows Home Server 2011. To export my old ...
0
votes
2answers
45 views
Adding filter to a for a query of groups a user belongs in bugzilla
select
profiles.realname as User_Name,
sum(ba.added) as Hours_Worked
from
bugs_activity ba join user_group_map u on ba.who = u.user_id
join profiles on ba.who = profiles.userid
where
...
0
votes
0answers
46 views
bugzilla mysql error
I'm running bugzilla 3.0.2 on an external server. In certain fields, every time I try to put '#number BOOL #number' where #number is a number and BOOL is any of AND OR NOT (etc) I get a connection ...
1
vote
1answer
482 views
Basic permission in Bugzilla to separate clients
I'm trying to configure a Bugzilla instance, which will allow my clients to login, and file bugs for their website under development/maintenance.
For e.g: I have created 2 products called ...
3
votes
1answer
3k views
Converting table from MyISAM to INNODB
I am simply trying to convert a table from MyISAM to INNODB. This is for a bugzilla upgrade with testopia.
This simple command fails. ALTER TABLE table_name TYPE = INNODB;
ERROR 1214 (HY000): The ...