4, December 2008

havin a problem with help center live - webmaster forum

 
Webdigity webmaster forums
This forum shares its ad revenue with its members!
[ Home | Help | Search | Forum's Shop | Archive | Login | Register | Webmaster Directory ]
Webdigity Webmaster Forums  >  Web Development  >  Databases  >  MySQL
Topic: havin a problem with help center live
« previous next »
Pages: [1] Print

Author Topic: havin a problem with help center live  (Read 1111 times)
aka J Love
Community Supporter ?
Bill Gates is my home boy
*****
Gender: Male
Posts: 884
1636 credits
Members referred : 4



« on: Dec 29, 2005, 09:34:05 AM »

trying to add on the module OsTicket, but when i go to the main page it says the table ticket_conig doesnt exist, so i opened the tables.sql file and found where it said to insert table_config, and then i ran that sql on the DB.. it gives me this error in phpmyadmin:

Quote
SQL query:

CREATE TABLE `ticket_config` (

`accept_attachments` int( 1 ) NOT NULL default '0',
`answer_method` enum( 'pop3', 'automatic' ) NOT NULL default 'automatic',
`attachment_size` int( 10 ) NOT NULL default '1048576',
`attachment_dir` varchar( 255 ) NOT NULL default 'attachments',
`attachment_url` varchar( 255 ) NOT NULL default 'attachments',
`search_disp` int( 1 ) NOT NULL default '1',
`umq` int( 3 ) default '3',
`save_headers` int( 1 ) NOT NULL default '0',
`time_format` varchar( 255 ) NOT NULL default 'l, F j Y g:ia',
`min_interval` int( 20 ) default '0',
`ticket_max` int( 3 ) NOT NULL default '20',
`remove_original` int( 1 ) NOT NULL default '1',
`remove_tag` varchar( 255 ) NOT NULL default '-- do not edit --',
`ticket_response` int( 1 ) NOT NULL default '1',
`ticket_msg` text NOT NULL ,
`ticket_subj` varchar( 255 ) NOT NULL default '',
`limit_response` int( 1 ) NOT NULL default '1',
`limit_email` varchar( 75 ) NOT NULL default '',
`limit_subj` varchar( 255 ) NOT NULL default '',
`limit_msg` text NOT NULL ,
`alert_new` int( 1 ) NOT NULL default '0',
`alert_email` varchar( 255 ) NOT NULL default '',
`alert_user` varchar( 255 ) NOT NULL default '',
`alert_subj` varchar( 255 ) NOT NULL default '',
`alert_msg` text,
`message_response` int( 1 ) NOT NULL default '1',
`message_subj` varchar( 255 ) NOT NULL default '',
`message_msg` text NOT NULL ,
`trans_response` int( 1 ) NOT NULL default '1',
`trans_subj` varchar( 255 ) NOT NULL default '',
`trans_msg` varchar( 255 ) NOT NULL default '',
`timezone` varchar( 255 ) NOT NULL default '',
`tickets_per_page` int( 3 ) NOT NULL default '20',
`root_url` varchar( 255 ) NOT NULL default '',
`filetypes` TEXT NOT NULL ,
FULLTEXT KEY `message_subj` ( `message_subj` )
)
MySQL said: 

#1214 - The used table type doesn't support FULLTEXT indexes

Visit through proxy Visit through proxy Visit through proxy

Last blog : phpHaze 1.59.1 in Development
OMG!I am geek
**
Gender: Male
Posts: 56
374 credits
Members referred : 0



« Reply #1 on: Dec 29, 2005, 07:56:52 PM »

Execute this and it will work :

Code:
CREATE TABLE `ticket_config` (

`accept_attachments` int( 1 ) NOT NULL default '0',
`answer_method` enum( 'pop3', 'automatic' ) NOT NULL default 'automatic',
`attachment_size` int( 10 ) NOT NULL default '1048576',
`attachment_dir` varchar( 255 ) NOT NULL default 'attachments',
`attachment_url` varchar( 255 ) NOT NULL default 'attachments',
`search_disp` int( 1 ) NOT NULL default '1',
`umq` int( 3 ) default '3',
`save_headers` int( 1 ) NOT NULL default '0',
`time_format` varchar( 255 ) NOT NULL default 'l, F j Y g:ia',
`min_interval` int( 20 ) default '0',
`ticket_max` int( 3 ) NOT NULL default '20',
`remove_original` int( 1 ) NOT NULL default '1',
`remove_tag` varchar( 255 ) NOT NULL default '-- do not edit --',
`ticket_response` int( 1 ) NOT NULL default '1',
`ticket_msg` text NOT NULL ,
`ticket_subj` varchar( 255 ) NOT NULL default '',
`limit_response` int( 1 ) NOT NULL default '1',
`limit_email` varchar( 75 ) NOT NULL default '',
`limit_subj` varchar( 255 ) NOT NULL default '',
`limit_msg` text NOT NULL ,
`alert_new` int( 1 ) NOT NULL default '0',
`alert_email` varchar( 255 ) NOT NULL default '',
`alert_user` varchar( 255 ) NOT NULL default '',
`alert_subj` varchar( 255 ) NOT NULL default '',
`alert_msg` text,
`message_response` int( 1 ) NOT NULL default '1',
`message_subj` varchar( 255 ) NOT NULL default '',
`message_msg` text NOT NULL ,
`trans_response` int( 1 ) NOT NULL default '1',
`trans_subj` varchar( 255 ) NOT NULL default '',
`trans_msg` varchar( 255 ) NOT NULL default '',
`timezone` varchar( 255 ) NOT NULL default '',
`tickets_per_page` int( 3 ) NOT NULL default '20',
`root_url` varchar( 255 ) NOT NULL default '',
`filetypes` TEXT NOT NULL
)
aka J Love
Community Supporter ?
Bill Gates is my home boy
*****
Gender: Male
Posts: 884
1636 credits
Members referred : 4



« Reply #2 on: Dec 30, 2005, 02:13:56 AM »

nope now it gives me this error

Fatal Error: Could not retrieve configuration from database.

Visit through proxy Visit through proxy Visit through proxy

Last blog : phpHaze 1.59.1 in Development
I am a metal monkey!
Administrator
Community Supporter ?
Jedai Sword Master
*****
Gender: Male
Posts: 8269
42601 credits
Members referred : 3



« Reply #3 on: Dec 30, 2005, 09:48:35 PM »

This error is propably from phpMyAdmin or from the sql tool that you use for executing queries.

Is there an error number with it?

Trial and Error my two best teachers Cool
Join us @ facebook Visit through proxy or twitter Visit through proxy

Last blog : Free Unlimited Bandwith and disk space to good to be true?
aka J Love
Community Supporter ?
Bill Gates is my home boy
*****
Gender: Male
Posts: 884
1636 credits
Members referred : 4



« Reply #4 on: Dec 30, 2005, 10:22:37 PM »

nope no number

Visit through proxy Visit through proxy Visit through proxy

Last blog : phpHaze 1.59.1 in Development
I am a metal monkey!
Administrator
Community Supporter ?
Jedai Sword Master
*****
Gender: Male
Posts: 8269
42601 credits
Members referred : 3



« Reply #5 on: Dec 31, 2005, 12:24:27 AM »

If there is no number this is not a mySQL problem.

Check the program that you use to connect with mysql

Trial and Error my two best teachers Cool
Join us @ facebook Visit through proxy or twitter Visit through proxy

Last blog : Free Unlimited Bandwith and disk space to good to be true?
aka J Love
Community Supporter ?
Bill Gates is my home boy
*****
Gender: Male
Posts: 884
1636 credits
Members referred : 4



« Reply #6 on: Dec 31, 2005, 01:55:43 AM »

if i install this script on the WSS server, the icon that shows if live support is online or offline stays offline no matter what, and the ticket system works. but on the tlove server, the icons work, but the tickets dont. this is ridikolas

Visit through proxy Visit through proxy Visit through proxy

Last blog : phpHaze 1.59.1 in Development
I am a metal monkey!
Administrator
Community Supporter ?
Jedai Sword Master
*****
Gender: Male
Posts: 8269
42601 credits
Members referred : 3



« Reply #7 on: Dec 31, 2005, 02:00:03 AM »

This is propably because of your session configuration of php.

Trial and Error my two best teachers Cool
Join us @ facebook Visit through proxy or twitter Visit through proxy

Last blog : Free Unlimited Bandwith and disk space to good to be true?
aka J Love
Community Supporter ?
Bill Gates is my home boy
*****
Gender: Male
Posts: 884
1636 credits
Members referred : 4



« Reply #8 on: Dec 31, 2005, 02:15:45 AM »

well the online icons used to work on WSS.. is there anyway to get around this? ive tried contacting support for the script but they keep telling me to do the same thing which doesnt work, add assignments, & that works on tlove but not WSS

Visit through proxy Visit through proxy Visit through proxy

Last blog : phpHaze 1.59.1 in Development
I am a metal monkey!
Administrator
Community Supporter ?
Jedai Sword Master
*****
Gender: Male
Posts: 8269
42601 credits
Members referred : 3



« Reply #9 on: Dec 31, 2005, 02:49:53 AM »

If you want to make it work on your WSS you should make some kind of configuration for cookies.

The easiest thing that you can do, is load it to your real server and code it from there.

Trial and Error my two best teachers Cool
Join us @ facebook Visit through proxy or twitter Visit through proxy

Last blog : Free Unlimited Bandwith and disk space to good to be true?
aka J Love
Community Supporter ?
Bill Gates is my home boy
*****
Gender: Male
Posts: 884
1636 credits
Members referred : 4



« Reply #10 on: Dec 31, 2005, 03:13:32 AM »

i added a new user with DBA privileges, meth0d@someip#forjustinlove.net and it still wont work,i thought maybe it was blocking the conn. but i have allow anon. conn. and remote conn. both enabled so that should be no problem.. how would i do this with a cookie?

Visit through proxy Visit through proxy Visit through proxy

Last blog : phpHaze 1.59.1 in Development
Trackback URI for this entry : http://www.webdigity.com/trackback.php?topic=1105
Tags : php mysql php my admin databases cookies Bookmark this thread : Digg Del.icio.us Dzone more....

Topic sponsors:
Get a permanent link here for $1.99!


Pages: [1] Print 
Webdigity Webmaster Forums  >  Web Development  >  Databases  >  MySQL
Topic: havin a problem with help center live
« previous next »
Jump to:
User Area
Welcome, Guest. Please login or register.
Did you miss your activation email?
Dec 04, 2008, 07:04:11 AM





Login with username, password and session length

Donate to our community, and get a permanent link back to your site!

Donate to our community, and get a permanent link back to your site!


Forum Statistics
Total Posts: 37.988
Total Topics: 7.684
Total Members: 4.465
Tutorials : 56
Resources : 143
Designs : 220
Latest Member: OnlineMastering

25 Guests, 4 Users online :

17 users online today:



Readers

Web Design Gallery · Whois Lookup · Pagerank · Tag Browsing · Lo-fi version · Syndication · Webmaster forum history · Advertise
Developed by HumanWorks © 2005 - 2008 Webdigity webmaster community · sublime directory
Webdigity Webmaster Forums | Powered by SMF 1.0.12. © 2001-2005, Lewis Media. All Rights Reserved.