You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(6) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
|
Feb
(5) |
Mar
|
Apr
(3) |
May
|
Jun
(11) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2003 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2004 |
Jan
|
Feb
|
Mar
(2) |
Apr
(6) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Brian N. <no...@no...> - 2004-04-06 15:23:29
|
I am wondering if somehow you have a wrong index.php...
is this an upgrade or a fresh install?
Chris Privitere said:
> Sorry, this is on RedHat linux 9. Php version 4.2.2 and Mysql version
> 3.23.58.
>
> --Chris
>
> -----Original Message-----
> From: Brian Nelson [mailto:no...@no...]
> Sent: Monday, April 05, 2004 10:28 PM
> To: Chris Privitere
> Cc: Brian Nelson; bug...@li...
> Subject: RE: [Bugin-users] lang.en.php file not included
>
> strange; what OS? I will take a look and see if I can find a way in
> which this would happen. :)
>
>
> Chris Privitere said:
>> I tried both retrieving 0.66 bugin from the CVS server via the
>> sourceforge anonymous cvs instructions, as well as the 0.65 release on
>> sourceforge itself.
>>
>> After downloading it, I untarred it to the /bugin directory in my
>> apache's html directory.
>>
>> I then followed the INSTALL directions, made the db and added a bugin
>> user, set up access, and imported the data and all that. Then made my
>> config.local.php file:
>>
>> <?php
>> /*
>> * This is the local configuration file for bugin.
>> */
>>
>> // System information variables
>> $options['baseURL'] =3D "/bugin/";
>> $options['modEmail'] =3D "use...@my...";
>>
>> // DB stuffs.
>> $dbUser =3D "bugin";
>> $dbPass =3D "XXXX";
>> $dbName =3D "bugin";
>>
>> //call it what you like...
>> $options['ticketName'] =3D "Ticket";
>>
>> # What status should be set on "take"
>> $takeStatusNum =3D 4;
>> // This is the size of the pop-up window for all info links.
>> $infoWindowWidth =3D 400;
>> $infoWindowHeight =3D 300;
>>
>> // Regular Expressions for Signup things...
>> $options['unameMinLength'] =3D 3;
>> $options['phoneMinLen'] =3D 4;
>>
>> // These are options for closed/fixed ticket numbers
>> $options['closedNum'] =3D "9,11,12";
>> $options['timeWarnStatusIgnore'] =3D array(9,11,12);
>>
>> ?>
>>
>>
>> When trying to use it after that I noticed that there were no options
>> showing up. Looking at an older version we had running on another
>> computer I tracked things down to the $verbage variable, which was now
>> no longer defined in the config.inc.php file, but in the lang.en.php
>> file. So looking for the lines that loaded that, I found this in the
>> config.inc.php file:
>>
>> $language =3D
>> $bugDatabase->lists['lang'][$options['defaultLanguage']]['name'];
>> require_once("{$options['buginBase']}conf/lang/lang.{$language}.php");
>>
>> No idea why that line isn't working, but I added this line to my
>> config.local.php file:
>>
>> require_once("{$options['buginBase']}conf/lang/lang.en.php");
>>
>> And now it's working fine.
>>
>> Obviously, that's a hack to fudge it to working. Was there some step
>> along the way that I missed?
>>
>> --Chris
>>
>> -----Original Message-----
>> From: Brian Nelson [mailto:no...@no...]
>> Sent: Monday, April 05, 2004 5:52 PM
>> To: Chris Privitere
>> Cc: bug...@li...
>> Subject: Re: [Bugin-users] lang.en.php file not included
>>
>> perhaps I can get some more information about your configuration ?
>>
>>
>> Chris Privitere said:
>>> Has anyone had the problem where the lang.en.php file is not getting
>>> included, thus resulting in there being no text descriptions
> anywhere?
>>>
>>>
>>>
>>>
>>
>>
>> --
>> Brian J Nelson http://notgod.com/
>> --------------------------------------------
>> Never send a message to not...@no....
>>
>>
>>
>>
>>
>>
>
>
> --
> Brian J Nelson http://notgod.com/
> --------------------------------------------
> Never send a message to not...@no....
>
>
> !DSPAM:4072bcea34261072040177!
>
>
>
--=20
Brian J Nelson http://notgod.com/
--------------------------------------------
Never send a message to not...@no....
|
|
From: Chris P. <cpr...@ep...> - 2004-04-06 14:21:18
|
Sorry, this is on RedHat linux 9. Php version 4.2.2 and Mysql version
3.23.58.
--Chris
-----Original Message-----
From: Brian Nelson [mailto:no...@no...]=20
Sent: Monday, April 05, 2004 10:28 PM
To: Chris Privitere
Cc: Brian Nelson; bug...@li...
Subject: RE: [Bugin-users] lang.en.php file not included
strange; what OS? I will take a look and see if I can find a way in
which this would happen. :)
Chris Privitere said:
> I tried both retrieving 0.66 bugin from the CVS server via the
> sourceforge anonymous cvs instructions, as well as the 0.65 release on
> sourceforge itself.
>
> After downloading it, I untarred it to the /bugin directory in my
> apache's html directory.
>
> I then followed the INSTALL directions, made the db and added a bugin
> user, set up access, and imported the data and all that. Then made my
> config.local.php file:
>
> <?php
> /*
> * This is the local configuration file for bugin.
> */
>
> // System information variables
> $options['baseURL'] =3D "/bugin/";
> $options['modEmail'] =3D "use...@my...";
>
> // DB stuffs.
> $dbUser =3D "bugin";
> $dbPass =3D "XXXX";
> $dbName =3D "bugin";
>
> //call it what you like...
> $options['ticketName'] =3D "Ticket";
>
> # What status should be set on "take"
> $takeStatusNum =3D 4;
> // This is the size of the pop-up window for all info links.
> $infoWindowWidth =3D 400;
> $infoWindowHeight =3D 300;
>
> // Regular Expressions for Signup things...
> $options['unameMinLength'] =3D 3;
> $options['phoneMinLen'] =3D 4;
>
> // These are options for closed/fixed ticket numbers
> $options['closedNum'] =3D "9,11,12";
> $options['timeWarnStatusIgnore'] =3D array(9,11,12);
>
> ?>
>
>
> When trying to use it after that I noticed that there were no options
> showing up. Looking at an older version we had running on another
> computer I tracked things down to the $verbage variable, which was now
> no longer defined in the config.inc.php file, but in the lang.en.php
> file. So looking for the lines that loaded that, I found this in the
> config.inc.php file:
>
> $language =3D
> $bugDatabase->lists['lang'][$options['defaultLanguage']]['name'];
> require_once("{$options['buginBase']}conf/lang/lang.{$language}.php");
>
> No idea why that line isn't working, but I added this line to my
> config.local.php file:
>
> require_once("{$options['buginBase']}conf/lang/lang.en.php");
>
> And now it's working fine.
>
> Obviously, that's a hack to fudge it to working. Was there some step
> along the way that I missed?
>
> --Chris
>
> -----Original Message-----
> From: Brian Nelson [mailto:no...@no...]
> Sent: Monday, April 05, 2004 5:52 PM
> To: Chris Privitere
> Cc: bug...@li...
> Subject: Re: [Bugin-users] lang.en.php file not included
>
> perhaps I can get some more information about your configuration ?
>
>
> Chris Privitere said:
>> Has anyone had the problem where the lang.en.php file is not getting
>> included, thus resulting in there being no text descriptions
anywhere?
>>
>>
>>
>>
>
>
> --
> Brian J Nelson http://notgod.com/
> --------------------------------------------
> Never send a message to not...@no....
>
>
> !DSPAM:4071e586925181503374472!
>
>
>
--=20
Brian J Nelson http://notgod.com/
--------------------------------------------
Never send a message to not...@no....
|
|
From: Brian N. <no...@no...> - 2004-04-06 03:28:24
|
strange; what OS? I will take a look and see if I can find a way in
which this would happen. :)
Chris Privitere said:
> I tried both retrieving 0.66 bugin from the CVS server via the
> sourceforge anonymous cvs instructions, as well as the 0.65 release on
> sourceforge itself.
>
> After downloading it, I untarred it to the /bugin directory in my
> apache's html directory.
>
> I then followed the INSTALL directions, made the db and added a bugin
> user, set up access, and imported the data and all that. Then made my
> config.local.php file:
>
> <?php
> /*
> * This is the local configuration file for bugin.
> */
>
> // System information variables
> $options['baseURL'] =3D "/bugin/";
> $options['modEmail'] =3D "use...@my...";
>
> // DB stuffs.
> $dbUser =3D "bugin";
> $dbPass =3D "XXXX";
> $dbName =3D "bugin";
>
> //call it what you like...
> $options['ticketName'] =3D "Ticket";
>
> # What status should be set on "take"
> $takeStatusNum =3D 4;
> // This is the size of the pop-up window for all info links.
> $infoWindowWidth =3D 400;
> $infoWindowHeight =3D 300;
>
> // Regular Expressions for Signup things...
> $options['unameMinLength'] =3D 3;
> $options['phoneMinLen'] =3D 4;
>
> // These are options for closed/fixed ticket numbers
> $options['closedNum'] =3D "9,11,12";
> $options['timeWarnStatusIgnore'] =3D array(9,11,12);
>
> ?>
>
>
> When trying to use it after that I noticed that there were no options
> showing up. Looking at an older version we had running on another
> computer I tracked things down to the $verbage variable, which was now
> no longer defined in the config.inc.php file, but in the lang.en.php
> file. So looking for the lines that loaded that, I found this in the
> config.inc.php file:
>
> $language =3D
> $bugDatabase->lists['lang'][$options['defaultLanguage']]['name'];
> require_once("{$options['buginBase']}conf/lang/lang.{$language}.php");
>
> No idea why that line isn't working, but I added this line to my
> config.local.php file:
>
> require_once("{$options['buginBase']}conf/lang/lang.en.php");
>
> And now it's working fine.
>
> Obviously, that's a hack to fudge it to working. Was there some step
> along the way that I missed?
>
> --Chris
>
> -----Original Message-----
> From: Brian Nelson [mailto:no...@no...]
> Sent: Monday, April 05, 2004 5:52 PM
> To: Chris Privitere
> Cc: bug...@li...
> Subject: Re: [Bugin-users] lang.en.php file not included
>
> perhaps I can get some more information about your configuration ?
>
>
> Chris Privitere said:
>> Has anyone had the problem where the lang.en.php file is not getting
>> included, thus resulting in there being no text descriptions anywhere?
>>
>>
>>
>>
>
>
> --
> Brian J Nelson http://notgod.com/
> --------------------------------------------
> Never send a message to not...@no....
>
>
> !DSPAM:4071e586925181503374472!
>
>
>
--=20
Brian J Nelson http://notgod.com/
--------------------------------------------
Never send a message to not...@no....
|
|
From: Chris P. <cpr...@ep...> - 2004-04-05 23:02:28
|
I tried both retrieving 0.66 bugin from the CVS server via the
sourceforge anonymous cvs instructions, as well as the 0.65 release on
sourceforge itself. =20
After downloading it, I untarred it to the /bugin directory in my
apache's html directory. =20
I then followed the INSTALL directions, made the db and added a bugin
user, set up access, and imported the data and all that. Then made my
config.local.php file:
<?php
/*
* This is the local configuration file for bugin.
*/
// System information variables
$options['baseURL'] =3D "/bugin/";
$options['modEmail'] =3D "use...@my...";
// DB stuffs.
$dbUser =3D "bugin";
$dbPass =3D "XXXX";
$dbName =3D "bugin";
//call it what you like...
$options['ticketName'] =3D "Ticket";
# What status should be set on "take"
$takeStatusNum =3D 4;
// This is the size of the pop-up window for all info links.
$infoWindowWidth =3D 400;
$infoWindowHeight =3D 300;
// Regular Expressions for Signup things...
$options['unameMinLength'] =3D 3;
$options['phoneMinLen'] =3D 4;
// These are options for closed/fixed ticket numbers
$options['closedNum'] =3D "9,11,12";
$options['timeWarnStatusIgnore'] =3D array(9,11,12);
?>
When trying to use it after that I noticed that there were no options
showing up. Looking at an older version we had running on another
computer I tracked things down to the $verbage variable, which was now
no longer defined in the config.inc.php file, but in the lang.en.php
file. So looking for the lines that loaded that, I found this in the
config.inc.php file:=20
$language =3D
$bugDatabase->lists['lang'][$options['defaultLanguage']]['name'];
require_once("{$options['buginBase']}conf/lang/lang.{$language}.php");
No idea why that line isn't working, but I added this line to my
config.local.php file:
require_once("{$options['buginBase']}conf/lang/lang.en.php");
And now it's working fine. =20
Obviously, that's a hack to fudge it to working. Was there some step
along the way that I missed?
--Chris
-----Original Message-----
From: Brian Nelson [mailto:no...@no...]=20
Sent: Monday, April 05, 2004 5:52 PM
To: Chris Privitere
Cc: bug...@li...
Subject: Re: [Bugin-users] lang.en.php file not included
perhaps I can get some more information about your configuration ?
Chris Privitere said:
> Has anyone had the problem where the lang.en.php file is not getting
> included, thus resulting in there being no text descriptions anywhere?
>
>
> !DSPAM:4071dead921109320220340!
>
--=20
Brian J Nelson http://notgod.com/
--------------------------------------------
Never send a message to not...@no....
|
|
From: Brian N. <no...@no...> - 2004-04-05 22:51:57
|
perhaps I can get some more information about your configuration ? Chris Privitere said: > Has anyone had the problem where the lang.en.php file is not getting > included, thus resulting in there being no text descriptions anywhere? > > > !DSPAM:4071dead921109320220340! > --=20 Brian J Nelson http://notgod.com/ -------------------------------------------- Never send a message to not...@no.... |
|
From: Chris P. <cpr...@ep...> - 2004-04-05 22:32:45
|
Has anyone had the problem where the lang.en.php file is not getting included, thus resulting in there being no text descriptions anywhere? =20 |
|
From: Brian N. <no...@no...> - 2004-03-09 19:17:21
|
Forgot to append the Changelog:
Changes in 0.65-RC1
----------------------
ADDITIONS:
o l10n: Spanish language translation from
Jose Alfonso Martinez del Paso (tri...@ya...)
o i18n: Per-language Templates
o Reverse sort list checkbox on list view.
o Options Editor interface now has tabs for different
configuration sections.
o Postgres has been tested, ported, and is now working.
o Session timeouts have been made extremely long, to avoid
strange happenings on timeouts.
o Quick ticket search (by number) was added to the side bar.
o Table prefix is complete... now all tables begin with
"bugin_", which will eventually be configurable.
FIXES:
o i18n: More multi-language support, including default
templates for different languages.
o List view strangeness should be fixed. This includes
search results going away after editing a ticket.
o Viewing an invalid ticket number now displays an error.
o Anonymous Ticket Access Control (DUH!)
NOTICES:
o Upgraded to adodb 3.72
o notgod is a moron and forgot to credit the great work
by Michael R on language support in 0.60.
Brian Nelson said:
> I am working on fixing up BugIn' for a new release. Here's the release
> plan:
>
> 0) $RELNUM =3D 1
> 1) Release 0.65-RC{$RELNUM}
> 2) Wait 2 weeks for bugs, fixes.
> 3) if bugs > tolerance, $RELNUM++; goto 1
> 4) Release 0.65
>
> Questions or comments, lets start a discussion!
>
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by: IBM Linux Tutorials
> Free Linux tutorial presented by Daniel Robbins, President and CEO of
> GenToo technologies. Learn everything from fundamentals to system
> administration.http://ads.osdn.com/?ad_id=1470&alloc_id638&op=3Dclick
> _______________________________________________
> Bugin-hackers mailing list
> Bug...@li...
> https://lists.sourceforge.net/lists/listinfo/bugin-hackers
>
|
|
From: Brian N. <no...@no...> - 2004-03-09 19:08:04
|
I am working on fixing up BugIn' for a new release. Here's the release p=
lan:
0) $RELNUM =3D 1
1) Release 0.65-RC{$RELNUM}
2) Wait 2 weeks for bugs, fixes.
3) if bugs > tolerance, $RELNUM++; goto 1
4) Release 0.65
Questions or comments, lets start a discussion!
|
|
From: Stephen F. <sfe...@lo...> - 2003-04-03 03:10:25
|
This message was sent from: BugIn' General. <http://notgod.com/phorum/read.php?f=20&i=19&t=17> ---------------------------------------------------------------- if you dont want everyone to be able to submit, remove the group(everyone) perms for a project, and add the appropriate group(x) with add. ---------------------------------------------------------------- Sent using Phorum software version ng <http://phorum.org> |
|
From: Stephen F. <sfe...@lo...> - 2003-04-03 03:07:32
|
This message was sent from: BugIn' General. <http://notgod.com/phorum/read.php?f=20&i=18&t=17> ---------------------------------------------------------------- Documentation is in progress. -------------------------------------------- |Project | User/Group | Permissions -------------------------------------------- |Sales |group(everyone)| add |Sales |group(sales) | read,add,modify |Support |group(everyone)| add |Support |group(support) | read,add,modify |Network |group(everyone)| add |Network |group(network) | read,add,modify |Accounting|group(everyone)| add |Accounting|group(accounting)| If you want the users from outside groups to read, then add that also. Barring any ACL issues, this should work for you. ---------------------------------------------------------------- Sent using Phorum software version ng <http://phorum.org> |
|
From: Bill H. <bhi...@fr...> - 2003-03-11 15:41:50
|
This message was sent from: BugIn' General. <http://notgod.com/phorum/read.php?f=20&i=17&t=17> ---------------------------------------------------------------- Hi All, *Great* job on BugIn!!! Is there any documentation at all? I would like to better understand the correlation between Users, Groups, Projects & ACL's... I have installed BugIn and added groups Accounting, Network, Sales, Support, these represent 'departments', I created Projects with the same names, the idea is a member of Accounting submits a ticket in the Network project for the Network department to pickup and resolve. Problem is any user can submit a ticket in any department then any other user can change that ticket no matter who owns it. I assume I do not have the ACL's setup right... Thanks! ---------------------------------------------------------------- Sent using Phorum software version ng <http://phorum.org> |
|
From: Frank <ice...@ya...> - 2003-02-28 13:06:41
|
This message was sent from: BugIn' General. <http://notgod.com/phorum/read.php?f=20&i=16&t=14> ---------------------------------------------------------------- Thanks Brian! Sorry for the simple question. ---------------------------------------------------------------- Sent using Phorum software version ng <http://phorum.org> |
|
From: Brian N. <no...@no...> - 2003-02-27 20:29:46
|
This message was sent from: BugIn' General. <http://notgod.com/phorum/read.php?f=20&i=15&t=14> ---------------------------------------------------------------- Set the $options['formSubmitTo'] to "index.php" in config.local.php Or you could add index.php to your DirectoryIndex directive in httpd.conf and re-start apache. (this would allow other PHP applications to work) ---------------------------------------------------------------- Sent using Phorum software version ng <http://phorum.org> |
|
From: Frank <ice...@ya...> - 2003-02-27 14:44:23
|
This message was sent from: BugIn' General. <http://notgod.com/phorum/read.php?f=20&i=14&t=14> ---------------------------------------------------------------- I'm new to PHP and have a simple question regarding Bugin. I have apache compiled with PHP and untar'ed Bugin under the htdocs subdirectory. I followed the installation steps. When I open bugin/index.php the login box comes up, but after entering the admin id & p/w the browser indicates that the URL /bugin/ cannot be found. I know this is something simple but... Thanks, Frank Ps. Tool looks great on your site and I look forward to using it! ---------------------------------------------------------------- Sent using Phorum software version ng <http://phorum.org> |
|
From: Brian N. <no...@no...> - 2002-06-07 21:57:59
|
new test up, -t2... this shoudl (1) add the e-mail template to the
options menu, and (2) make it so it is %BASE_URL% in the default
template, instead of {$options['baseURL']}, which gets processed before
the local includes are loaded :)
Thanks for all the testing, btw
Bradley Miller wrote:
> At 02:22 PM 6/7/02 -0700, Brian Nelson wrote:
>
>>Set your base URL prefs to the full URL for your site (either in the
>>admin tool or in the config.local.php)
>
>
> I double checked and it's just the "Welcome" message that it didn't come in
> on. Base URL is setup in the admin tool area. The ticket updates show the
> complete URL. Hmm.
>
> -- Bradley Miller
>
> _______________________________________________________________
>
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink
>
> _______________________________________________
> Bugin-users mailing list
> Bug...@li...
> https://lists.sourceforge.net/lists/listinfo/bugin-users
|
|
From: Bradley M. <bra...@ac...> - 2002-06-07 21:38:33
|
At 02:22 PM 6/7/02 -0700, Brian Nelson wrote: >Set your base URL prefs to the full URL for your site (either in the >admin tool or in the config.local.php) I double checked and it's just the "Welcome" message that it didn't come in on. Base URL is setup in the admin tool area. The ticket updates show the complete URL. Hmm. -- Bradley Miller |
|
From: Brian N. <no...@no...> - 2002-06-07 21:22:23
|
Bradley Miller wrote: > Minor glitch here, I mentioned the "adding 1 to username but not showing in > welcome message" problem, but noticed this also: > > "You can sign into the system at: > /support/" > > It looks like it's not including the complete URL path on that message. > The rest of the messages come through fine with URL info. > > -- Bradley Miller Set your base URL prefs to the full URL for your site (either in the admin tool or in the config.local.php) |
|
From: Bradley M. <bra...@ac...> - 2002-06-07 21:19:10
|
Minor glitch here, I mentioned the "adding 1 to username but not showing in welcome message" problem, but noticed this also: "You can sign into the system at: /support/" It looks like it's not including the complete URL path on that message. The rest of the messages come through fine with URL info. -- Bradley Miller |
|
From: Bradley M. <bra...@ac...> - 2002-06-07 21:13:08
|
Yes, those new files do fix the filtering problem I mentioned earlier. Looks great! -- Bradley Miller |
|
From: Brian N. <no...@no...> - 2002-06-07 20:55:31
|
Brian Nelson wrote: > there is a new test set up, fixing this problem. most of the code was > already there, it jsut got masked by some other things -- give it a whirl. by test set, I mean binaries on http://notgod.com:81/bugin/test/ |
|
From: Brian N. <no...@no...> - 2002-06-07 20:52:55
|
Bradley Miller wrote: > On the filtering issue for projects, this works: > > SELECT *,(UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(date_modified)) as > age,UNIX_TIMESTAMP(date_added) AS added_ts FROM tickets WHERE > (1) AND (status != '7' AND status != '9') AND (creator = '1') AND ( > project IN(3,4,5,1,2) > OR (creator = 1) OR (owner = 1)) *and project = 5 *ORDER BY status DESC > LIMIT 0,15 > > Now I just need to see if there's a place in the code to add that fairly > painlessly? > > -- Bradley Miller > _______________________________________________________________ > Don't miss the 2002 Sprint PCS Application Developer's Conference August > 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm > _______________________________________________ Bugin-users mailing list > Bug...@li... > https://lists.sourceforge.net/lists/listinfo/bugin-users there is a new test set up, fixing this problem. most of the code was already there, it jsut got masked by some other things -- give it a whirl. |
|
From: Brian N. <no...@no...> - 2002-06-07 20:30:07
|
Bradley Miller wrote: > When entering a bug, if you are electing to add a bug but are doing it > without signing in, if the username already exists it puts a 1 at the end. > But when the email program emails you the username/password, the 1 is > missing. I found that by accident when I re-signed up. > > When you are signed in, it doesn't show the task at all under the > username/password you signed in with. Should it show as pending or > something to acknowledge that it's in the system? > > Another small thing -- on the projects, when I slick to "filter" the > projects, they don't filter. It still shows all projects even if I select > one project. > > I think having a more generic form would be handy for the bug entry -- I > don't want to enter 200+ domains in just so it's tied to a project. I > would like to add the project that they are working on, but I don't just > want a blatant list for a competitor to go "Hmmm . . . " > > -- Bradley Miller > > -- Bradley Miller > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm > > _______________________________________________ > Bugin-users mailing list > Bug...@li... > https://lists.sourceforge.net/lists/listinfo/bugin-users I think I know how to fix this one :) |
|
From: Bradley M. <bra...@ac...> - 2002-06-07 19:56:15
|
On the filtering issue for projects, this works: SELECT *,(UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(date_modified)) as age,UNIX_TIMESTAMP(date_added) AS added_ts FROM tickets WHERE (1) AND (status != '7' AND status != '9') AND (creator = '1') AND ( project IN(3,4,5,1,2) OR (creator = 1) OR (owner = 1)) <bold>and project = 5 </bold>ORDER BY status DESC LIMIT 0,15 Now I just need to see if there's a place in the code to add that fairly painlessly? -- Bradley Miller |
|
From: Bradley M. <bra...@ac...> - 2002-06-07 18:54:19
|
When entering a bug, if you are electing to add a bug but are doing it without signing in, if the username already exists it puts a 1 at the end. But when the email program emails you the username/password, the 1 is missing. I found that by accident when I re-signed up. When you are signed in, it doesn't show the task at all under the username/password you signed in with. Should it show as pending or something to acknowledge that it's in the system? Another small thing -- on the projects, when I slick to "filter" the projects, they don't filter. It still shows all projects even if I select one project. I think having a more generic form would be handy for the bug entry -- I don't want to enter 200+ domains in just so it's tied to a project. I would like to add the project that they are working on, but I don't just want a blatant list for a competitor to go "Hmmm . . . " -- Bradley Miller -- Bradley Miller |
|
From: Bradley M. <bra...@ac...> - 2002-06-07 16:52:10
|
* $Id: database.inc.php,v 1.9.4.1.2.4 2002/06/06 19:02:02 notgod Exp $ * $Revision: 1.9.4.1.2.4 $ * $Author: notgod $ * $Date: 2002/06/06 19:02:02 $ */ I downloaded that file and now I don't get anything -- under any of the areas. ??? Here's what debug info shows when I click on "groups open tasks": BugIn Debug: Beginning new AND statement AND (status != '7' BugIn Debug: closedNum is 7 (Closed) BugIn Debug: Appending AND statement AND (status != '7' AND status != '9' BugIn Debug: fixedNum is 9 (Fixed) BugIn Debug: Ended AND statement AND (status != '7' AND status != '9') BugIn Debug: Registering Closed Task Types (AND (status != '7' AND status != '9')) Any suggestions??? -- Bradley Miller |