• 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!

Solved [WEB] - ZnoteAAC table to database (helpdesk)

therrax

Member
Joined
Jul 12, 2012
Messages
262
Solutions
1
Reaction score
11
Hi.
TFS 1.0
I have small problem with help desk :p
What should I add to my database to repair this?

PHP:
string(89) "SELECT id,subject,creation,status FROM znote_tickets WHERE owner=1 ORDER BY creation DESC"
(query - SQL error)
Type: select_multi (select multiple rows from database)

Table 'db.znote_tickets' doesn't exist

Greets ;)
 
Is this helpdesk a plugin? If yes could you please paste me the link to the thread?


Nvm, paste following into the database SQL field:

Code:
CREATE TABLE IF NOT EXISTS `znote_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner` int(11) NOT NULL,
`username` varchar(32) CHARACTER SET latin1 NOT NULL,
`subject` text CHARACTER SET latin1 NOT NULL,
`message` text CHARACTER SET latin1 NOT NULL,
`ip` int(11) NOT NULL,
`creation` int(11) NOT NULL,
`status` varchar(20) CHARACTER SET latin1 NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `znote_tickets_replies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tid` int(11) NOT NULL,
`username` varchar(32) CHARACTER SET latin1 NOT NULL,
`message` text CHARACTER SET latin1 NOT NULL,
`created` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
Found That yesterday, too, but was confused because I Downloaded the Version on otland First and didn't realised that there is a dev Version out.
 
@Znote Why I cant write polish words in HelpDesk? Is it hard to repair? And why Admin cant close or delete ticket? :p
 
Last edited:
Back
Top