Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBug Tracker 1.0.3 Details »»
vBug Tracker 1.0.3
Version: 1.0.3, by Dark_Wizard Dark_Wizard is offline
Developer Last Online: Jun 2014 Show Printable Version Email this Page

Version: 3.0.6 Rating:
Released: 09-17-2004 Last Update: 02-20-2005 Installs: 97
DB Changes
 
No support by the author.

You asked for it and here it is...a bug tracker that mimics the one at vBulletin.com.
There is no upgrade yet from the other bug trackers listed on this site but if enough people request it I will add it to the installer.

Also, please DO NOT request help, assistance or ask questions via IM as I will ignore you and if your persistent will block you. Your best option for immediate support is at vbwar.com but I will check in here from time to time.

Enjoy!

Please click install if you use this hack. Support is only given to those who click. Thx!

Version 1.0.1:
Fixed missing phrase (here)
Fixed redirect to blank page after edit bug
Fixed assigned to not working after bug edit

Version 1.0.2:
Finally fixed the dropped title and missing phrases.
Plus a few other small bugs you people didn't catch.

New bug found...file updated. Users of version 1.0.2 need to perform these steps found here.

Version 1.0.3:
Fixed all tableprefixes and a small bug. Tested in both tableprefixed db and no tableprefix db...

Pro Version can be seen here!

Additional support can be found here.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #172  
Old 03-06-2005, 01:11 AM
ccunnin71 ccunnin71 is offline
 
Join Date: Mar 2004
Location: Crystal, MN. USA
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How does one do an uninstall? I see that the bottom of 'vbug.install.php' has code for an uninstall but I am not php savy. I am more of the cut&paste guy I want to reinstall this mod and start it from scratch. I was hoping to avoid a lot of manual table drops.

Ok... Days later. Support on this mod is sketchy. Will hold out for pro version.

For those who might want to know how-to uninstall the trigger to get the uninstall script to run. Execute the vbug_install.php file from your admincp (yes, you would have to ftp it back up) It will fail right away saying that tables already exist. Just change the step 1 = to uninstall.

I still had to manually pull the seven new tables it created. I like the app but it needs a lot more features. Lets hope the pro version gives us a more robust system.

chow
Reply With Quote
  #173  
Old 03-20-2005, 04:25 PM
PitchouneN64ngc's Avatar
PitchouneN64ngc PitchouneN64ngc is offline
Senior Member
 
Join Date: Aug 2002
Location: France
Posts: 515
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have found some errors in ACP with prefix tables.

In ./admincp/vbugs_admin.php, find:

PHP Code:
 $DB_site->query("
INSERT INTO vbugs 
Replace by:

PHP Code:
 $DB_site->query("
INSERT INTO " 
TABLE_PREFIX "vbugs 
Then, find:

PHP Code:
 $DB_site->query("UPDATE vbugs SET title = '" addslashes($title) . "', description = '" addslashes($description) . "', vbug_statusid = '$vbug_statusid', moderate = '$moderate', adminid = '$adminid', vbug_versionid = '$vbug_versionid', vbug_severityid = '$vbug_severityid', vbug_typeid = '$vbug_typeid', lastedit = '" TIMENOW "', lastreplyuid = '$bbuserinfo[userid]', private = '$private' WHERE vbugs_id = $vbugs_id"); 
Replace by:

PHP Code:
 $DB_site->query("UPDATE " TABLE_PREFIX "vbugs SET title = '" addslashes($title) . "', description = '" addslashes($description) . "', vbug_statusid = '$vbug_statusid', moderate = '$moderate', adminid = '$adminid', vbug_versionid = '$vbug_versionid', vbug_severityid = '$vbug_severityid', vbug_typeid = '$vbug_typeid', lastedit = '" TIMENOW "', lastreplyuid = '$bbuserinfo[userid]', private = '$private' WHERE vbugs_id = $vbugs_id"); 
Then, find:

PHP Code:
 $bugs $DB_site->query("
SELECT * 
FROM vbugs 
LIMIT " 
. (($page 1) * $perpage) . ", $perpage
"
); 
Replace by:

PHP Code:
 $bugs $DB_site->query("
SELECT * 
FROM " 
TABLE_PREFIX "vbugs 
LIMIT " 
. (($page 1) * $perpage) . ", $perpage
"
); 
Then, find:

PHP Code:
 $versions $DB_site->query("
SELECT *
FROM vbug_version
ORDER BY displayorder
"
); 
Replace by:

PHP Code:
 $versions $DB_site->query("
SELECT *
FROM " 
TABLE_PREFIX "vbug_version
ORDER BY displayorder
"
); 
Then, find:

PHP Code:
 $status $DB_site->query_first("
SELECT *
FROM vbug_status
WHERE vbug_statusid = 
$vbug_statusid
"
); 
Replace by:

PHP Code:
 $status $DB_site->query_first("
SELECT *
FROM " 
TABLE_PREFIX "vbug_status
WHERE vbug_statusid = 
$vbug_statusid
"
); 
Then find:

PHP Code:
 $severity $DB_site->query_first("
SELECT *
FROM vbug_severity
WHERE vbug_severityid = 
$vbug_severityid
"
); 
Replace by:

PHP Code:
 $severity $DB_site->query_first("
SELECT *
FROM " 
TABLE_PREFIX "vbug_severity
WHERE vbug_severityid = 
$vbug_severityid
"
); 
Then find:

PHP Code:
 $type $DB_site->query_first("
SELECT *
FROM vbug_type
WHERE vbug_typeid = 
$vbug_typeid
"
); 
Replace by:

PHP Code:
 $type $DB_site->query_first("
SELECT *
FROM " 
TABLE_PREFIX "vbug_type
WHERE vbug_typeid = 
$vbug_typeid
"
); 
And all works
Reply With Quote
  #174  
Old 03-23-2005, 06:30 PM
DS MrSinister DS MrSinister is offline
 
Join Date: Dec 2002
Location: the burgh
Posts: 553
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I got this error when i upgraded to VB 3.0.6. I had ver. 1.0.2 installed.

PHP Code:
Fatal errorCall to undefined function: fetch_state_array() in /includes/adminfunctions_options.php(96) : eval()'d code on line 1 

I thought if i upgraded to ver 1.0.3 might go away Nope..

If i Uninstall this hack it goes away.

any idea on how to fix this?
Reply With Quote
  #175  
Old 03-27-2005, 10:35 AM
Dark_Wizard Dark_Wizard is offline
 
Join Date: Nov 2001
Location: North Carolina
Posts: 1,251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DS MrSinister
I got this error when i upgraded to VB 3.0.6. I had ver. 1.0.2 installed.

PHP Code:
Fatal errorCall to undefined function: fetch_state_array() in /includes/adminfunctions_options.php(96) : eval()'d code on line 1 

I thought if i upgraded to ver 1.0.3 might go away Nope..

If i Uninstall this hack it goes away.

any idea on how to fix this?
When you upgraded you forgot the file edits in admin_functions.php, please read the install.txt file for the vBug Tracker and make the changes.
Reply With Quote
  #176  
Old 03-27-2005, 10:39 AM
Dark_Wizard Dark_Wizard is offline
 
Join Date: Nov 2001
Location: North Carolina
Posts: 1,251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ccunnin71
How does one do an uninstall? I see that the bottom of 'vbug.install.php' has code for an uninstall but I am not php savy. I am more of the cut&paste guy I want to reinstall this mod and start it from scratch. I was hoping to avoid a lot of manual table drops.

Ok... Days later. Support on this mod is sketchy. Will hold out for pro version.

For those who might want to know how-to uninstall the trigger to get the uninstall script to run. Execute the vbug_install.php file from your admincp (yes, you would have to ftp it back up) It will fail right away saying that tables already exist. Just change the step 1 = to uninstall.

I still had to manually pull the seven new tables it created. I like the app but it needs a lot more features. Lets hope the pro version gives us a more robust system.

chow
I will look into this and yes the Pro is more robust and has alot more features, new coding and has a new installer/uninstaller. Lastly...support isn't sketchy and has been requested that for faster support please visit vBWar.com.
Reply With Quote
  #177  
Old 03-27-2005, 10:40 AM
Dark_Wizard Dark_Wizard is offline
 
Join Date: Nov 2001
Location: North Carolina
Posts: 1,251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by HarryButt
Vbugs.php
Find:

Code:
// pre-cache templates used by all actions
$globaltemplates = array(
	'VBUGS',
	'userfield_select_option'
	);
Replace:

Code:
// pre-cache templates used by all actions
$globaltemplates = array(
	'VBUGS',
	'vbugs_footer',
	'userfield_select_option'
	);
Thanks for the catch....
Reply With Quote
  #178  
Old 04-17-2005, 02:26 PM
scottct1 scottct1 is offline
 
Join Date: Mar 2002
Location: Connecticut
Posts: 391
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just installed this.

How do I change and add selectable versions in the versionid pull down?

Great mod!
Reply With Quote
  #179  
Old 06-20-2005, 04:22 PM
Dark_Wizard Dark_Wizard is offline
 
Join Date: Nov 2001
Location: North Carolina
Posts: 1,251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by scottct1
Just installed this.

How do I change and add selectable versions in the versionid pull down?

Great mod!
This is done in the admincp.
Reply With Quote
  #180  
Old 06-20-2005, 04:23 PM
Dark_Wizard Dark_Wizard is offline
 
Join Date: Nov 2001
Location: North Carolina
Posts: 1,251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Alot of people have been asking if this will be ported to vbulletin 3.5 and yes it will be...
Reply With Quote
  #181  
Old 06-20-2005, 04:24 PM
PitchouneN64ngc's Avatar
PitchouneN64ngc PitchouneN64ngc is offline
Senior Member
 
Join Date: Aug 2002
Location: France
Posts: 515
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you for this answer, I'm waiting for the vB 3.5 version
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:17 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05142 seconds
  • Memory Usage 2,358KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (16)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete