Helpdesk Web Interface News
Brought to you by:
kreucher
Having problems with all your entries submitting as "999999.99"? Try this:
$ mysql -u root -p
mysql> use helpdesk;
mysql> alter table entries modify id double(10,2) DEFAULT '0.00' NOT NULL UNIQUE;
mysql> alter table history modify id double(10,2) DEFAULT '0.00' NOT NULL;
Also, check out the new hddb-mysql.sql in CVS.