• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Gesior AAC] Advanced Bug Tracker

Rodo

New Member
Joined
Oct 23, 2007
Messages
575
Solutions
1
Reaction score
3
Location
Mexico
At first I want to say that I don't maked the Bug Tracker, only modified.

Original Bug Tracker: http://otland.net/f118/gesior-acc-bug-tracker-v2-34774/

Well, I just remaked (visually) the Bug Tracker adding images and some fields to make it more cute and functionally;)




______________________________________________

How to





1. Download the attachment
2. Extract all in your htdocs folder
3. Go to phpMyAdmin, SQL tab and execute this:



PHP:
CREATE TABLE z_bug_tracker (
  account varchar(255) NOT NULL,
  `type` int(11) NOT NULL,
  `status` int(11) NOT NULL,
  `text` text NOT NULL,
  id int(11) NOT NULL,
  `subject` varchar(255) NOT NULL,
  priority int(11) NOT NULL,
  reply int(11) NOT NULL,
  who int(11) NOT NULL,
  uid int(11) NOT NULL AUTO_INCREMENT,
  tag int(11) NOT NULL,
  PRIMARY KEY (uid)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;

And that's it :D




Images:


______________________________________________

New bug:

87636644.png



Replyng as Admin: (New status) :D

68547490.png



Bug List: (The icons means the priority) ;)

asdxk.png



Bug report:

79165001.png



 

Attachments

Last edited:
... its really so hard to ctrl+c, ctrl+v part of layout.php and edit pasted line?
and jhow he can tell you if in many layouts it differ?
 
... its really so hard to ctrl+c, ctrl+v part of layout.php and edit pasted line?
and jhow he can tell you if in many layouts it differ?

Obv i already did that.

<a href='?subtopic=bug'>
<div id='submenu_bug' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'>
<div class='LeftChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
<div id='ActiveSubmenuItemIcon_bug' class='ActiveSubmenuItemIcon' style='background-image:url(<?PHP echo $layout_name; ?>/images/menu/icon-activesubmenu.gif);'></div>
<div class='SubmenuitemLabel'>Bug Report</div>
<div class='RightChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
</div>
</a>

Also this is my error. (Invalid subtopic. Can't load page.)
 
Add this to index.php:

PHP:
 	case "bugtracker";
  	        $topic = "Bug Tracker";
 	        $subtopic = "bug";
 	        include("bug.php");
	break;
 
Back
Top