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

Reply
 
Thread Tools
[HTL] & [very simple TXT] vB-Bugs Details »»
[HTL] & [very simple TXT] vB-Bugs
Version: 1.00, by Andreas Andreas is offline
Developer Last Online: Jan 2023 Show Printable Version Email this Page

Version: 3.0.0 Rating:
Released: 02-03-2004 Last Update: Never Installs: 23
Is in Beta Stage  
No support by the author.

OK, this is my first Hack release, so please forgive me if it's crap.

vB-Bugs
Version: 0.1f Alpha
vB-version: 3.0.0 Release Candidate 2
Developer: Kirby
Install difficulty: Easy
File edits: 1
Template edits: 0

Description of the Hack:
This is a basic vBulletin-powered Bug-Tracker
It is based on vB-Todolist originalli created by RekiM who kindly gave me permission to make this "port".

Features
  • User-definable Types, Severities and States
  • Front-End fully phrased
  • XHTML-Compliant
  • Various possibilities to Filter/Search

Requirements
  • vBulletin 3 RC2
  • mySQL > 4.0.2

Please note that this is an alpha release only and I can't and
won't take any responsibilities. Use it as-is at you own risk.


HACK INSTALLATION DETAILS:
New files for this Hack:
bugs.php
admincp/bugsadmin.php

Files modified for this Hack:
admincp/index.php

New templates for this Hack:
bugs_addbug
bugs_addbugnote
bugs_listbit
bugs_bugnote
bugs_details
bugs_list
BUGS

New DB tables for this Hack:
bugs
bugnotes
bugtypes
bugseverities
bugstates


This post was generated by the Hack Tracking Log

Show Your Support

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

Comments
  #42  
Old 02-05-2004, 02:38 PM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Tarion
when i hit the bugnote button in the detailed buglist the skript take me to the edit bug page and not to the bugnote page.
This is a problem with IE not being standards compliant ...

Template bugs_details, FIND
Code:
<form action="bugs.php" method="post" style="margin-bottom: 0px">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="id" value="$bug[id]" />
<button type="submit" name="do" value="addbugnote">$vbphrase[add_bugnote]</button>
<if condition="is_member_of($bbuserinfo, $vboptions[bugadmingroup])">
&nbsp;<button type="submit" name="do" value="editbug">$vbphrase[edit_bug]</button>
</if>
</form>
REPLACE with
Code:
<form action="bugs.php" method="post" style="margin-bottom: 0px">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="id" value="$bug[id]" />
<input type="hidden" name="do" value="addbugnote">
<input type="submit" value="$vbphrase[add_bugnote]">
</form>
<if condition="is_member_of($bbuserinfo, $vboptions[bugadmingroup])">
<form action="bugs.php" method="post" style="margin-bottom: 0px">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="id" value="$bug[id]" />
<input type="hidden" name="do" value="editbug">
<input type="submit" value="$vbphrase[edit_bug]">
</form>
</if>
Reply With Quote
  #43  
Old 02-05-2004, 03:50 PM
daFish's Avatar
daFish daFish is offline
 
Join Date: Nov 2002
Location: Germany
Posts: 114
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you submit a new bug, there is only one choice on the assignment list.
If you edit the bug, there are the names of all administrators in it. Maybe a bug?
Reply With Quote
  #44  
Old 02-05-2004, 04:23 PM
Tarion's Avatar
Tarion Tarion is offline
 
Join Date: Nov 2001
Location: Germany
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

THX worked fine for me nice work
Reply With Quote
  #45  
Old 02-05-2004, 08:17 PM
PranK PranK is offline
 
Join Date: Apr 2003
Location: Sydney, Aus
Posts: 163
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
@PranK
The line numbers depend on the Version you have. But the text should be there.
Nevertheless, i've also uploaded a new ZIP which should contain the fixes already.
Just replace bugs.php and bugsadmin.php
thanks Kirby, i'll give it a go.

Christian
Reply With Quote
  #46  
Old 02-05-2004, 08:50 PM
Olate Olate is offline
 
Join Date: Feb 2004
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Suggestion: Allow hidden tasks, or an internal task list so this can be used to assign development tasks and track them. See https://vborg.vbsupport.ru/showthread.php?t=61207
Reply With Quote
  #47  
Old 02-05-2004, 09:19 PM
GovGaming GovGaming is offline
 
Join Date: Jan 2004
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Step two of install I get this error:
-------------------------------------------------------------
Current Step: Insert Hack Phrases
This step inserts all the new phrases for vB-Bugs. It creates one new phrase group on the language table, phrasegroup_vbbugs.
---------------------------------------------------------------

Could not add a Phrase group in the System!
Reply With Quote
  #48  
Old 02-05-2004, 09:57 PM
Link14716's Avatar
Link14716 Link14716 is offline
 
Join Date: Jun 2002
Location: Georgia, USA
Posts: 2,519
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bug resulting in uncached template (fix):

In bug.php, find:
PHP Code:
'showdetails' => array('bugs_bugnote_bugnote'
Replace with:
PHP Code:
'showdetails' => array('bugs_bugnote'
Reply With Quote
  #49  
Old 02-05-2004, 10:27 PM
Dark_Wizard Dark_Wizard is offline
 
Join Date: Nov 2001
Location: North Carolina
Posts: 1,251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's a shame I can't use this and it would be nice to have but I don't have MySQL 4.x yet and not planning to due to some issues with it. Any chance on making this 3.x complaint?
Reply With Quote
  #50  
Old 02-05-2004, 10:50 PM
squawell's Avatar
squawell squawell is offline
 
Join Date: Oct 2001
Posts: 681
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
@squawell

Lines 163 & 187 in bugsadmin.php

Change
PHP Code:
"WHERE usergroupid IN ($admingroups)" 
Tp
PHP Code:
"WHERE usergroupid=$vboptions[bugadmingroup] OR $vboptions[bugadmingroup] IN (membergroupids)" 
thankz fix that~BUT i have another problem~when i import the phrase file~it successed but cant see the new phrase group name vBugsbut i can find all phrase~and when i go to bug page all phrase did not show up...any idea?thankz
Reply With Quote
  #51  
Old 02-06-2004, 05:26 AM
daFish's Avatar
daFish daFish is offline
 
Join Date: Nov 2002
Location: Germany
Posts: 114
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dark_Wizard
It's a shame I can't use this and it would be nice to have but I don't have MySQL 4.x yet and not planning to due to some issues with it. Any chance on making this 3.x complaint?
I'm using the hack with MySQL 3.xx and i'm having no problems with it.
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 09:02 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.04705 seconds
  • Memory Usage 2,322KB
  • 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
  • (4)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