vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   vBug Tracker 1.0.3 (https://vborg.vbsupport.ru/showthread.php?t=69600)

Mattius 09-21-2004 01:26 AM

that b good question indeed

Scutter 09-21-2004 03:53 AM

Nice work dark, that got it. I now have the following problem, it displays fine when logged on as admin, but when logged on as a user with view and add permissions only, the screen looks like this...

d3f 09-21-2004 04:11 AM

Installed 1.0.1 had some errors followed the instructions to get to 1.0.2 but had a db error on each step, now im getting lots of..

PHP Code:

WarningDivision by zero in /home/methlabs/domains/methlabs.org/public_html/forums/includes/functions.php on line 123

Warning
Division by zero in /home/methlabs/domains/methlabs.org/public_html/forums/includes/functions.php on line 1730

Invalid SQL

    
SELECT DISTINCT vbug_severity.severitynamevbug_type.typenamevbug_version.versionnamevbug_status.statusnamevbugs.*, admin.username AS adminnameuser.usernameuser.usertitlelastreply.username AS lastreplyname 
    FROM vbugs
    LEFT JOIN vbug_status ON 
(vbugs.vbug_statusid vbug_status.vbug_statusid)
    
LEFT JOIN user AS admin ON (vbugs.adminid admin.userid)
    
LEFT JOIN user ON (vbugs.userid user.userid)
    
LEFT JOIN user AS lastreply ON (vbugs.lastreplyuid lastreply.userid)
    
LEFT JOIN vbug_type ON (vbugs.vbug_typeid vbug_type.vbug_typeid)
    
LEFT JOIN vbug_version ON (vbugs.vbug_versionid vbug_version.vbug_versionid)
    
LEFT JOIN vbug_severity ON (vbugs.vbug_severityid vbug_severity.vbug_severityid)
    
    
WHERE 1
    ORDER BY lastedit desc
    LIMIT 0

    
mysql errorYou have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 13

mysql error number
1064 

and

PHP Code:

WarningDivision by zero in /home/methlabs/domains/methlabs.org/public_html/forums/admincp/vbugs_admin.php on line 177 

ect, any help would be really apreciated.

Dark_Wizard 09-21-2004 09:49 AM

Quote:

Originally Posted by sinclac
To upgrade to 1.0.2 do we need to do all the edits and every thing in the install text?

In the install.txt file are instructions to upgrade from earlier versions.

Dark_Wizard 09-21-2004 09:51 AM

Quote:

Originally Posted by d3f
Installed 1.0.1 had some errors followed the instructions to get to 1.0.2 but had a db error on each step, now im getting lots of..

PHP Code:

WarningDivision by zero in /home/methlabs/domains/methlabs.org/public_html/forums/includes/functions.php on line 123

Warning
Division by zero in /home/methlabs/domains/methlabs.org/public_html/forums/includes/functions.php on line 1730

Invalid SQL

    
SELECT DISTINCT vbug_severity.severitynamevbug_type.typenamevbug_version.versionnamevbug_status.statusnamevbugs.*, admin.username AS adminnameuser.usernameuser.usertitlelastreply.username AS lastreplyname 
    FROM vbugs
    LEFT JOIN vbug_status ON 
(vbugs.vbug_statusid vbug_status.vbug_statusid)
    
LEFT JOIN user AS admin ON (vbugs.adminid admin.userid)
    
LEFT JOIN user ON (vbugs.userid user.userid)
    
LEFT JOIN user AS lastreply ON (vbugs.lastreplyuid lastreply.userid)
    
LEFT JOIN vbug_type ON (vbugs.vbug_typeid vbug_type.vbug_typeid)
    
LEFT JOIN vbug_version ON (vbugs.vbug_versionid vbug_version.vbug_versionid)
    
LEFT JOIN vbug_severity ON (vbugs.vbug_severityid vbug_severity.vbug_severityid)
    
    
WHERE 1
    ORDER BY lastedit desc
    LIMIT 0

    
mysql errorYou have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 13

mysql error number
1064 

and

PHP Code:

WarningDivision by zero in /home/methlabs/domains/methlabs.org/public_html/forums/admincp/vbugs_admin.php on line 177 

ect, any help would be really apreciated.

You didn't set the vBug Options in the admin control panel

Dark_Wizard 09-21-2004 10:04 AM

Quote:

Originally Posted by Scutter
Nice work dark, that got it. I now have the following problem, it displays fine when logged on as admin, but when logged on as a user with view and add permissions only, the screen looks like this...

Edit your VBUGS template with the following:

find this:
Code:

$buglist
</tr></table>

change to this:
Code:

$buglist
</table>

Replace the entire contents of the vbugs_listbit with the following:
Code:

<tr>
        <if condition="$admin">
        <td class="alt1">$vbugs_id</td>
        <td class="alt2">
                <div>
                <span style="float:right"></span>
                <a href="vbugs.php?do=view&amp;vbugs_id=$bug[vbugs_id]">$title</a></span>
                $moderateicon $privateicon $unassignedicon
                </div>
        <else />
        <td class="alt1">$vbugs_id</td>
        <td class="alt2">
                <div>
                <span style="float:right"></span>
                <a href="vbugs.php?do=view&amp;vbugs_id=$bug[vbugs_id]">$title</a>
                </div>
        </if>
                <div class="smallfont">
                        <span style="float:right">$date <span class="time">$time</span></span>
                        <strong onclick="window.location='member.php?u=$bug[userid]';" style="cursor:pointer">$username</strong>
                </div>
        </td>
        <td class="alt1"><span class="smallfont">$typename: <strong>$statusname</strong><br /><em><if condition="$bug[adminid]">$adminname<else />$vbphrase[vbugs_unassigned]</if></em></span></td>
        <td class="alt2"><div class="smallfont" style="white-space:nowrap">$lastreplydate <span class="time">$lastreplytime</span></div><div class="smallfont">by <a href="member.php?u=$bug[lastreplyuid]">$lastreplyname</a></div></td>
</tr>


Scutter 09-21-2004 10:33 AM

thanks vm

Dark_Wizard 09-21-2004 10:48 AM

Quote:

Originally Posted by Scutter
thanks vm

your welcome....

Boofo 09-21-2004 10:55 AM

When I try to upgrade from version 1.0, I keep getting db errors for tables and settings and phrases that are already there. Duplicate. How do I upgrade without getting those? ;)

It seems I am running 1.0 beta version for some reason. How do I upgrade from that? ;)

Dark_Wizard 09-21-2004 11:01 AM

Quote:

Originally Posted by Boofo
When I try to upgrade from version 1.0, I keep getting db errors for tables and settings and phrases that are already there. Duplicate. How do I upgrade without getting those? ;)


You shouldn't be getting that...it detects you earlier version and upgrades only whats needed...I just ran the script on another site and it works for me...can you PM me with more details?

Mattius 09-21-2004 12:19 PM

Ya i got too the same point as well. I get a duplicate error.

Attached is a screeny

chet 09-21-2004 10:29 PM

Hi there, I have installed this hack and I need to know where to add/remove or edit the bug types.

Thanks very much

Chet

chet 09-21-2004 11:04 PM

:squareeyed:

Found it, I should have looked harder

Chet

sinclac 09-21-2004 11:43 PM

Ok so where is it?

chet 09-21-2004 11:51 PM

Admin Control Panel

dndog 09-22-2004 02:16 AM

This thing had a bug in it and had to be upgraded?

The irony... :rolleyes:

Mattius 09-22-2004 03:11 AM

Anyone got a solution for this duplication problem upon installing 1.0.2?

Dark_Wizard 09-22-2004 09:30 AM

Quote:

Originally Posted by Mattius
Anyone got a solution for this duplication problem upon installing 1.0.2?

Uninstall first as it isn't seeing the beta correctly...use this -> http://www.yourdomain.com/forums/adm...step=uninstall

Then reinstall...

Mattius 09-22-2004 10:10 AM

That worked :)

Thx Dark Wiz and grats on a superb hack btw

GamerzWorld 09-22-2004 11:03 AM

Since installing i cant upload any images. I simply get

Warning: move_uploaded_file(/home/merlin/public_html/mirzone/attachment/19aeaef8f86492e71637dd632239c7ea): failed to open stream: No such file or directory in /home/merlin/public_html/mirzone/forum/includes/functions_file.php on line 274

Warning: move_uploaded_file(): Unable to move '/tmp/php1Fki30' to '/home/merlin/public_html/mirzone/attachment/19aeaef8f86492e71637dd632239c7ea' in /home/merlin/public_html/mirzone/forum/includes/functions_file.php on line 274

Warning: filesize(): Stat failed for /home/merlin/public_html/mirzone/attachment/19aeaef8f86492e71637dd632239c7ea (errno=2 - No such file or directory) in /home/merlin/public_html/mirzone/forum/includes/functions_file.php on line 286

Any idea which file ive mucked up lol

Natch 09-22-2004 11:41 AM

You need to make sure you have CHMOD'ed your attachments upload folder to 777

chet 09-23-2004 03:41 PM

Is there a way to add the following to the mods control panel:

Vbug Bugs
- Add
- Modify
- Moderate

The reason I ask is because we have a number of trials forums and I would rather the mods of those forums allocate the bugs, apart from that this is a fantastic hack

Many thanks

Chet

Dark_Wizard 09-23-2004 04:05 PM

Quote:

Originally Posted by chet
Is there a way to add the following to the mods control panel:

Vbug Bugs
- Add
- Modify
- Moderate

The reason I ask is because we have a number of trials forums and I would rather the mods of those forums allocate the bugs, apart from that this is a fantastic hack

Many thanks

Chet

Can you give them limited access to the admincp? If not I will consider it for the next version as I am currently still working on the vBug Tracker Pro version.

chet 09-23-2004 04:17 PM

:( I dont want to give them access to admin to at all, if you are busy is there anybody else here who could help me out

Thanks

Chet

Dark_Wizard 09-23-2004 04:20 PM

Quote:

Originally Posted by chet
:( I dont want to give them access to admin to at all, if you are busy is there anybody else here who could help me out

Thanks

Chet


why not make them a vBug Admin and they can make the changes from the front end....

chet 09-23-2004 04:41 PM

OK no worries, I may even go for the pro version myself

Chet

TheMayhem 09-25-2004 06:11 PM

I get this error everytime I try to go in the admin cp and edit/add/ something in the vb bug admin file...

Parse error: parse error, unexpected T_PRIVATE, expecting ']' in /home/nodq/public_html/admincp/vbugs_admin.php on line 125

djohn 09-25-2004 06:48 PM

What will be new in vBug Tracker Pro?

Dark_Wizard 09-26-2004 01:20 AM

Quote:

Originally Posted by djohn
What will be new in vBug Tracker Pro?

The Pro version will contain the following features:
  • * Can handle Multiple Projects.
    * Attachments
    * Versions based on Projects, (i.e. I have several projects I am working on vBWar, vBug Tracker Pro and vBPool, each can have it's own versions.).
    * Attachments can be moderated.
    * Attachment uploads and downloads based on permissions.
    * Bugs also based on a per project basis.

vBug Tracker Pro is running now on vBWar.com....

Dark_Wizard 09-26-2004 01:24 AM

Hmmm...over 200 downloads and only 28 people clicked installed?

djohn 09-27-2004 06:18 AM

[high]* djohn clicked install ;)
[/high]

ps: is vBug Tracker Pro going to be released here for free?

Dark_Wizard 09-27-2004 10:05 AM

Quote:

Originally Posted by djohn
[high]* djohn clicked install ;)
[/high]

ps: is vBug Tracker Pro going to be released here for free?

Sorry but no...it will only be available from vbwar.com and for a fee.

LDEV 09-27-2004 12:07 PM

Quote:

Originally Posted by Dark_Wizard
Hmmm...over 200 downloads and only 28 people clicked installed?

I haven't clicked Installed because I haven't installed it yet. :) But I will, once it's installed.

Quote:

Originally Posted by Dark_Wizard
it will only be available from vbwar.com and for a fee.

Do you know what the fee is going to be yet? If so, can you let us know. I'm very interested in the Pro version. We have an absolute need for file attachments.

Regards,
Rich

Dark_Wizard 09-27-2004 01:28 PM

Quote:

Originally Posted by LDEV
Do you know what the fee is going to be yet? If so, can you let us know. I'm very interested in the Pro version. We have an absolute need for file attachments.

Regards,
Rich


I cannot discuss that here as it's against the forum rules. Please register at vbwar.com and ask there...thx!

LDEV 09-27-2004 02:18 PM

Quote:

Originally Posted by Dark_Wizard
I cannot discuss that here as it's against the forum rules.

Doh! I knew that, really, I did! :)

Boofo 09-27-2004 05:09 PM

Quote:

Originally Posted by Dark_Wizard
Hmmm...over 200 downloads and only 28 people clicked installed?

But I clicked it 3 times myself. Did you count those? ;)

Dark_Wizard 09-27-2004 09:08 PM

Quote:

Originally Posted by Boofo
But I clicked it 3 times myself. Did you count those? ;)

Smartass... :rolleyes:

TTG 09-27-2004 09:26 PM

Just installed and 'clicked' .. great, useful hack.https://vborg.vbsupport.ru/external/2005/01/2.gif

Thanks Dark Wizard ..

Gary King 09-29-2004 07:29 PM

There should really be a faster way to change values on bugs.

I think the values should be shown in a dropdown list with a button next to it so you can easily submit it ;)

Dark_Wizard 09-29-2004 09:09 PM

Quote:

Originally Posted by Gary King
There should really be a faster way to change values on bugs.

I think the values should be shown in a dropdown list with a button next to it so you can easily submit it ;)


This hack was meant to duplicate exactly as it is on vb.com as alot of people wanted it. The Pro version will have alot more features than this version.


All times are GMT. The time now is 09:47 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01517 seconds
  • Memory Usage 1,871KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (4)bbcode_php_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete