-- phpMyAdmin SQL Dump -- version 2.11.5 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Dec 09, 2011 at 04:08 AM -- Server version: 5.0.51 -- PHP Version: 5.2.5 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Database: `osticket` -- -- -------------------------------------------------------- -- -- Table structure for table `ost_api_key` -- CREATE TABLE `ost_api_key` ( `id` int(10) unsigned NOT NULL auto_increment, `isactive` tinyint(1) NOT NULL default '1', `ipaddr` varchar(16) NOT NULL, `apikey` varchar(255) NOT NULL, `updated` datetime NOT NULL default '0000-00-00 00:00:00', `created` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `ipaddr` (`ipaddr`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `ost_api_key` -- INSERT INTO `ost_api_key` (`id`, `isactive`, `ipaddr`, `apikey`, `updated`, `created`) VALUES (1, 1, '192.168.1.5', 'siri!', '2011-08-24 11:55:16', '2011-08-24 11:55:16'); -- -------------------------------------------------------- -- -- Table structure for table `os_config` -- CREATE TABLE `os_config` ( `id` tinyint(1) unsigned NOT NULL auto_increment, `isonline` tinyint(1) unsigned NOT NULL default '0', `timezone_offset` float(3,1) NOT NULL default '0.0', `enable_daylight_saving` tinyint(1) unsigned NOT NULL default '0', `staff_ip_binding` tinyint(1) unsigned NOT NULL default '1', `staff_max_logins` tinyint(3) unsigned NOT NULL default '4', `staff_login_timeout` int(10) unsigned NOT NULL default '2', `staff_session_timeout` int(10) unsigned NOT NULL default '30', `client_max_logins` tinyint(3) unsigned NOT NULL default '4', `client_login_timeout` int(10) unsigned NOT NULL default '2', `client_session_timeout` int(10) unsigned NOT NULL default '30', `max_page_size` tinyint(3) unsigned NOT NULL default '25', `max_open_tickets` tinyint(3) unsigned NOT NULL default '0', `max_file_size` int(11) unsigned NOT NULL default '1048576', `autolock_minutes` tinyint(3) unsigned NOT NULL default '3', `overdue_grace_period` int(10) unsigned NOT NULL default '0', `alert_email_id` tinyint(4) unsigned NOT NULL default '0', `default_email_id` tinyint(4) unsigned NOT NULL default '0', `default_dept_id` tinyint(3) unsigned NOT NULL default '0', `default_priority_id` tinyint(2) unsigned NOT NULL default '2', `default_template_id` tinyint(4) unsigned NOT NULL default '1', `default_smtp_id` tinyint(4) unsigned NOT NULL default '0', `spoof_default_smtp` tinyint(1) unsigned NOT NULL default '0', `clickable_urls` tinyint(1) unsigned NOT NULL default '1', `allow_priority_change` tinyint(1) unsigned NOT NULL default '0', `use_email_priority` tinyint(1) unsigned NOT NULL default '0', `enable_captcha` tinyint(1) unsigned NOT NULL default '0', `enable_auto_cron` tinyint(1) unsigned NOT NULL default '0', `enable_mail_fetch` tinyint(1) unsigned NOT NULL default '0', `enable_email_piping` tinyint(1) unsigned NOT NULL default '0', `send_sql_errors` tinyint(1) unsigned NOT NULL default '1', `send_mailparse_errors` tinyint(1) unsigned NOT NULL default '1', `send_login_errors` tinyint(1) unsigned NOT NULL default '1', `save_email_headers` tinyint(1) unsigned NOT NULL default '1', `strip_quoted_reply` tinyint(1) unsigned NOT NULL default '1', `log_ticket_activity` tinyint(1) unsigned NOT NULL default '1', `ticket_autoresponder` tinyint(1) unsigned NOT NULL default '0', `message_autoresponder` tinyint(1) unsigned NOT NULL default '0', `ticket_notice_active` tinyint(1) unsigned NOT NULL default '0', `ticket_alert_active` tinyint(1) unsigned NOT NULL default '0', `ticket_alert_admin` tinyint(1) unsigned NOT NULL default '1', `ticket_alert_dept_manager` tinyint(1) unsigned NOT NULL default '1', `ticket_alert_dept_members` tinyint(1) unsigned NOT NULL default '0', `message_alert_active` tinyint(1) unsigned NOT NULL default '0', `message_alert_laststaff` tinyint(1) unsigned NOT NULL default '1', `message_alert_assigned` tinyint(1) unsigned NOT NULL default '1', `message_alert_dept_manager` tinyint(1) unsigned NOT NULL default '0', `note_alert_active` tinyint(1) unsigned NOT NULL default '0', `note_alert_laststaff` tinyint(1) unsigned NOT NULL default '1', `note_alert_assigned` tinyint(1) unsigned NOT NULL default '1', `note_alert_dept_manager` tinyint(1) unsigned NOT NULL default '0', `overdue_alert_active` tinyint(1) unsigned NOT NULL default '0', `overdue_alert_assigned` tinyint(1) unsigned NOT NULL default '1', `overdue_alert_dept_manager` tinyint(1) unsigned NOT NULL default '1', `overdue_alert_dept_members` tinyint(1) unsigned NOT NULL default '0', `auto_assign_reopened_tickets` tinyint(1) unsigned NOT NULL default '1', `show_assigned_tickets` tinyint(1) unsigned NOT NULL default '0', `show_answered_tickets` tinyint(1) NOT NULL default '0', `hide_staff_name` tinyint(1) unsigned NOT NULL default '0', `overlimit_notice_active` tinyint(1) unsigned NOT NULL default '0', `email_attachments` tinyint(1) unsigned NOT NULL default '1', `allow_attachments` tinyint(1) unsigned NOT NULL default '0', `allow_email_attachments` tinyint(1) unsigned NOT NULL default '0', `allow_online_attachments` tinyint(1) unsigned NOT NULL default '0', `allow_online_attachments_onlogin` tinyint(1) unsigned NOT NULL default '0', `random_ticket_ids` tinyint(1) unsigned NOT NULL default '1', `log_level` tinyint(1) unsigned NOT NULL default '2', `log_graceperiod` int(10) unsigned NOT NULL default '12', `upload_dir` varchar(255) NOT NULL default '', `allowed_filetypes` varchar(255) NOT NULL default '.doc, .pdf', `time_format` varchar(32) NOT NULL default ' h:i A', `date_format` varchar(32) NOT NULL default 'm/d/Y', `datetime_format` varchar(60) NOT NULL default 'm/d/Y g:i a', `daydatetime_format` varchar(60) NOT NULL default 'D, M j Y g:ia', `reply_separator` varchar(60) NOT NULL default '-- do not edit --', `admin_email` varchar(125) NOT NULL default '', `helpdesk_title` varchar(255) NOT NULL default 'osTicket Support Ticket System', `helpdesk_url` varchar(255) NOT NULL default '', `api_passphrase` varchar(125) NOT NULL default '', `ostversion` varchar(16) NOT NULL default '', `updated` timestamp NOT NULL default CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `isoffline` (`isonline`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `os_config` -- INSERT INTO `ost_config` (`id`, `isonline`, `timezone_offset`, `enable_daylight_saving`, `staff_ip_binding`, `staff_max_logins`, `staff_login_timeout`, `staff_session_timeout`, `client_max_logins`, `client_login_timeout`, `client_session_timeout`, `max_page_size`, `max_open_tickets`, `max_file_size`, `autolock_minutes`, `overdue_grace_period`, `alert_email_id`, `default_email_id`, `default_dept_id`, `default_priority_id`, `default_template_id`, `default_smtp_id`, `spoof_default_smtp`, `clickable_urls`, `allow_priority_change`, `use_email_priority`, `enable_captcha`, `enable_auto_cron`, `enable_mail_fetch`, `enable_email_piping`, `send_sql_errors`, `send_mailparse_errors`, `send_login_errors`, `save_email_headers`, `strip_quoted_reply`, `log_ticket_activity`, `ticket_autoresponder`, `message_autoresponder`, `ticket_notice_active`, `ticket_alert_active`, `ticket_alert_admin`, `ticket_alert_dept_manager`, `ticket_alert_dept_members`, `message_alert_active`, `message_alert_laststaff`, `message_alert_assigned`, `message_alert_dept_manager`, `note_alert_active`, `note_alert_laststaff`, `note_alert_assigned`, `note_alert_dept_manager`, `overdue_alert_active`, `overdue_alert_assigned`, `overdue_alert_dept_manager`, `overdue_alert_dept_members`, `auto_assign_reopened_tickets`, `show_assigned_tickets`, `show_answered_tickets`, `hide_staff_name`, `overlimit_notice_active`, `email_attachments`, `allow_attachments`, `allow_email_attachments`, `allow_online_attachments`, `allow_online_attachments_onlogin`, `random_ticket_ids`, `log_level`, `log_graceperiod`, `upload_dir`, `allowed_filetypes`, `time_format`, `date_format`, `datetime_format`, `daydatetime_format`, `reply_separator`, `admin_email`, `helpdesk_title`, `helpdesk_url`, `api_passphrase`, `ostversion`, `updated`) VALUES (1, 1, 5.5, 0, 1, 4, 2, 30, 4, 2, 30, 25, 50, 1048576, 0, 1, 0, 1, 1, 2, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 2, 12, 'C:\\wamp\\www\\support\\attachement', '.doc,.pdf,.docx', ' h:i A', 'd/m/Y', 'd/m/Y g:i a', 'D, M j Y g:ia', '-- do not edit --', 'rituraj00@rediffmail.com', 'Commercial Tax Dept. :: Support Desk ', 'http://10.134.9.64/support/upload/', '', '1.6 ST', '2011-08-24 11:55:17'); -- -------------------------------------------------------- -- -- Table structure for table `ost_department` -- CREATE TABLE `ost_department` ( `dept_id` int(11) unsigned NOT NULL auto_increment, `tpl_id` int(10) unsigned NOT NULL default '0', `email_id` int(10) unsigned NOT NULL default '0', `autoresp_email_id` int(10) unsigned NOT NULL default '0', `manager_id` int(10) unsigned NOT NULL default '0', `dept_name` varchar(32) NOT NULL default '', `dept_signature` tinytext NOT NULL, `ispublic` tinyint(1) unsigned NOT NULL default '1', `ticket_auto_response` tinyint(1) NOT NULL default '1', `message_auto_response` tinyint(1) NOT NULL default '0', `can_append_signature` tinyint(1) NOT NULL default '1', `updated` datetime NOT NULL default '0000-00-00 00:00:00', `created` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`dept_id`), UNIQUE KEY `dept_name` (`dept_name`), KEY `manager_id` (`manager_id`), KEY `autoresp_email_id` (`autoresp_email_id`), KEY `tpl_id` (`tpl_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `ost_department` -- INSERT INTO `ost_department` (`dept_id`, `tpl_id`, `email_id`, `autoresp_email_id`, `manager_id`, `dept_name`, `dept_signature`, `ispublic`, `ticket_auto_response`, `message_auto_response`, `can_append_signature`, `updated`, `created`) VALUES (1, 0, 1, 0, 0, 'Support', 'Support Dept', 1, 1, 1, 1, '2011-08-24 11:55:16', '2011-08-24 11:55:16'); -- -------------------------------------------------------- -- -- Table structure for table `ost_email` -- CREATE TABLE `ost_email` ( `email_id` int(11) unsigned NOT NULL auto_increment, `noautoresp` tinyint(1) unsigned NOT NULL default '0', `priority_id` tinyint(3) unsigned NOT NULL default '2', `dept_id` tinyint(3) unsigned NOT NULL default '0', `email` varchar(125) NOT NULL default '', `name` varchar(32) NOT NULL default '', `userid` varchar(125) NOT NULL, `userpass` varchar(125) NOT NULL, `mail_active` tinyint(1) NOT NULL default '0', `mail_host` varchar(125) NOT NULL, `mail_protocol` enum('POP','IMAP') NOT NULL default 'POP', `mail_encryption` enum('NONE','SSL') NOT NULL, `mail_port` int(6) default NULL, `mail_fetchfreq` tinyint(3) NOT NULL default '5', `mail_fetchmax` tinyint(4) NOT NULL default '30', `mail_delete` tinyint(1) NOT NULL default '0', `mail_errors` tinyint(3) NOT NULL default '0', `mail_lasterror` datetime default NULL, `mail_lastfetch` datetime default NULL, `smtp_active` tinyint(1) default '0', `smtp_host` varchar(125) NOT NULL, `smtp_port` int(6) default NULL, `smtp_secure` tinyint(1) NOT NULL default '1', `smtp_auth` tinyint(1) NOT NULL default '1', `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`email_id`), UNIQUE KEY `email` (`email`), KEY `priority_id` (`priority_id`), KEY `dept_id` (`dept_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Dumping data for table `ost_email` -- INSERT INTO `ost_email` (`email_id`, `noautoresp`, `priority_id`, `dept_id`, `email`, `name`, `userid`, `userpass`, `mail_active`, `mail_host`, `mail_protocol`, `mail_encryption`, `mail_port`, `mail_fetchfreq`, `mail_fetchmax`, `mail_delete`, `mail_errors`, `mail_lasterror`, `mail_lastfetch`, `smtp_active`, `smtp_host`, `smtp_port`, `smtp_secure`, `smtp_auth`, `created`, `updated`) VALUES (1, 0, 2, 1, 'cyber.ctax-jhr@nic.in', 'Dept. of commercial taxes,Jharkh', 'cyber.ctax-jhr@nic.in', 'Dhirju@123', 1, 'mail.nic.in', 'POP', 'SSL', 995, 5, 30, 0, 0, NULL, NULL, 1, 'ssl://mail.nic.in', 465, 1, 1, '2011-08-24 11:55:17', '2011-12-08 14:33:38'); -- -------------------------------------------------------- -- -- Table structure for table `ost_email_banlist` -- CREATE TABLE `ost_email_banlist` ( `id` int(11) NOT NULL auto_increment, `email` varchar(255) NOT NULL default '', `submitter` varchar(126) NOT NULL default '', `added` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `email` (`email`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `ost_email_banlist` -- INSERT INTO `ost_email_banlist` (`id`, `email`, `submitter`, `added`) VALUES (1, 'test@example.com', 'System', '2011-08-24 11:55:16'); -- -------------------------------------------------------- -- -- Table structure for table `ost_email_template` -- CREATE TABLE `ost_email_template` ( `tpl_id` int(11) NOT NULL auto_increment, `cfg_id` int(10) unsigned NOT NULL default '0', `name` varchar(32) NOT NULL default '', `notes` text, `ticket_autoresp_subj` varchar(255) NOT NULL default '', `ticket_autoresp_body` text NOT NULL, `ticket_notice_subj` varchar(255) NOT NULL, `ticket_notice_body` text NOT NULL, `ticket_alert_subj` varchar(255) NOT NULL default '', `ticket_alert_body` text NOT NULL, `message_autoresp_subj` varchar(255) NOT NULL default '', `message_autoresp_body` text NOT NULL, `message_alert_subj` varchar(255) NOT NULL default '', `message_alert_body` text NOT NULL, `note_alert_subj` varchar(255) NOT NULL, `note_alert_body` text NOT NULL, `assigned_alert_subj` varchar(255) NOT NULL default '', `assigned_alert_body` text NOT NULL, `ticket_overdue_subj` varchar(255) NOT NULL default '', `ticket_overdue_body` text NOT NULL, `ticket_overlimit_subj` varchar(255) NOT NULL default '', `ticket_overlimit_body` text NOT NULL, `ticket_reply_subj` varchar(255) NOT NULL default '', `ticket_reply_body` text NOT NULL, `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`tpl_id`), KEY `cfg_id` (`cfg_id`), FULLTEXT KEY `message_subj` (`ticket_reply_subj`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `ost_email_template` -- INSERT INTO `ost_email_template` (`tpl_id`, `cfg_id`, `name`, `notes`, `ticket_autoresp_subj`, `ticket_autoresp_body`, `ticket_notice_subj`, `ticket_notice_body`, `ticket_alert_subj`, `ticket_alert_body`, `message_autoresp_subj`, `message_autoresp_body`, `message_alert_subj`, `message_alert_body`, `note_alert_subj`, `note_alert_body`, `assigned_alert_subj`, `assigned_alert_body`, `ticket_overdue_subj`, `ticket_overdue_body`, `ticket_overlimit_subj`, `ticket_overlimit_body`, `ticket_reply_subj`, `ticket_reply_body`, `created`, `updated`) VALUES (1, 1, 'osTicket Default Template', 'Default osTicket templates', 'Support Complaint Opened [#%ticket],Support Desk,Department of Commercial Taxes,Jharkhand', 'Dear %name,\r\n\r\nA request for support has been created and assigned complaint #%ticket. A representative will follow-up with you as soon as possible.\r\n\r\nYou can view this complaint''s progress online here: %url/view.php?e=%email&t=%ticket.\r\n\r\nIf you wish to send additional comments or information regarding this issue, please don''t open a new complaint. Simply login using the link above and update the complaint.\r\n\r\n%signature\r\nDepartment of Commercial Taxes,\r\nGovt. of Jharkhand', '[#%ticket] %subject,Support Desk,Department of Commercial Taxes,Jharkhand ', 'Dear %name,\r\n\r\nOur customer care team has created a Complaint, #%ticket on your behalf, with the following message.\r\n\r\n%message\r\n\r\nIf you wish to provide additional comments or information regarding this issue, please don''t open a new complaint. You can update or view this ticket''s progress online here: %url/view.php?e=%email&t=%ticket.\r\n\r\n%signature\r\nDepartment of Commercial Taxes,\r\nGovt. of Jharkhand', 'New Complaint Alert', '%staff,\r\n\r\nNew complaint #%ticket created.\r\n-------------------\r\nName: %name\r\nEmail: %email\r\nDept: %dept\r\n\r\n%message\r\n-------------------\r\n\r\nTo view/respond to the complaint, please login to the Support Desk System.\r\n\r\n- Your friendly Support Desk System \r\n- powered by Department of Commercial Taxes,Govt. of Jharkhand', '[#%ticket] Message Added,Support Desk,Department of Commercial Taxes,Jharkhand', 'Dear %name,\r\n\r\nYour reply to support request #%ticket has been noted.\r\n\r\nYou can view this support request progress online here: %url/view.php?e=%email&t=%ticket.\r\n\r\n%signature\r\nDepartment of Commercial Taxes,\r\nGovt. of Jharkhand', 'New Message Alert', 'Dear %staff,\r\n\r\nNew message appended to complaint #%ticket\r\n\r\n----------------------\r\nName: %name\r\nEmail: %email\r\nDept: %dept\r\n\r\n%message\r\n-------------------\r\n\r\nTo view/respond to the complaint, please login to the Support Desk System.\r\n\r\n- Your friendly Support Desk System\r\n- powered by Department of Commercial Taxes,Govt. of Jharkhand', 'New Internal Note Alert', 'Dear %staff,\r\n\r\nInternal note appended to complaint #%ticket\r\n\r\n----------------------\r\nName: %name\r\n\r\n%note\r\n-------------------\r\n\r\nTo view/respond to the complaint, please login to the support desk system.\r\n\r\n- Your friendly Support Desk System \r\n- powered by Department of Commercial Taxes,Govt. of Jharkhand', 'Complaint #%ticket Assigned to you', 'Dear %assignee,\r\n\r\n%assigner has assigned complaint #%ticket to you!\r\n\r\n%message\r\n\r\nTo view complete details, simply login to the Support Desk System.\r\n\r\n- Your friendly Support Desk System \r\n- powered by Department of Commercial Taxes,Govt. of Jharkhand', 'Stale Complaint Alert', 'Dear %staff,\r\n\r\nA complaint, #%ticket assigned to you or in your department is seriously overdue.\r\n\r\n%url/scp/tickets.php?id=%id\r\n\r\nWe should all work hard to guarantee that all complaint are being addressed in a timely manner. Enough baby talk...please address the issue or you will hear from me again.\r\n\r\n\r\n- Your friendly (although with limited patience) Support Desk System \r\n- powered by Department of Commercial Taxes,Govt. of Jharkhand', 'Support Complaint Denied,Support Desk,Department of Commercial Taxes,Jharkhand', 'Dear %name\r\n\r\nNo support complaint has been created. You''ve exceeded maximum number of open complaints allowed.\r\n\r\nThis is a temporary block. To be able to open another complaint, one of your pending complaints must be closed. To update or add comments to an open complaint simply login using the link below.\r\n\r\n%url/view.php?e=%email\r\n\r\nThank you.\r\n\r\nSupport Desk System,\r\nDepartment of Commercial Taxes,\r\nGovt. of Jharkhand', '[#%ticket] %subject,Support Desk,Department of Commercial Taxes,Jharkhand', 'Dear %name,\r\n\r\nA customer support staff member has replied to your support request, #%ticket with the following response:\r\n\r\n%response\r\n\r\nWe hope this response has sufficiently answered your questions. If not, please do not send another email. Instead, reply to this email or login to your account for a complete archive of all your support requests and responses.\r\n\r\n%url/view.php?e=%email&t=%ticket\r\n\r\n%signature\r\nDepartment of Commercial Taxes,\r\nGovt. of Jharkhand', '2011-08-24 11:55:16', '2011-08-24 11:55:16'); -- -------------------------------------------------------- -- -- Table structure for table `ost_groups` -- CREATE TABLE `ost_groups` ( `group_id` int(10) unsigned NOT NULL auto_increment, `group_enabled` tinyint(1) unsigned NOT NULL default '1', `group_name` varchar(50) NOT NULL default '', `dept_access` varchar(255) NOT NULL default '', `can_create_tickets` tinyint(1) unsigned NOT NULL default '1', `can_edit_tickets` tinyint(1) unsigned NOT NULL default '1', `can_delete_tickets` tinyint(1) unsigned NOT NULL default '0', `can_close_tickets` tinyint(1) unsigned NOT NULL default '0', `can_transfer_tickets` tinyint(1) unsigned NOT NULL default '1', `can_ban_emails` tinyint(1) unsigned NOT NULL default '0', `can_manage_kb` tinyint(1) unsigned NOT NULL default '0', `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`group_id`), KEY `group_active` (`group_enabled`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Dumping data for table `ost_groups` -- INSERT INTO `ost_groups` (`group_id`, `group_enabled`, `group_name`, `dept_access`, `can_create_tickets`, `can_edit_tickets`, `can_delete_tickets`, `can_close_tickets`, `can_transfer_tickets`, `can_ban_emails`, `can_manage_kb`, `created`, `updated`) VALUES (1, 1, 'Admins', '1', 1, 1, 1, 1, 1, 1, 1, '2011-08-24 11:55:17', '2011-08-24 11:55:17'), (2, 1, 'Managers', '1', 1, 1, 0, 1, 1, 1, 1, '2011-08-24 11:55:17', '2011-08-24 11:55:17'), (3, 1, 'Staff', '1', 1, 0, 0, 0, 0, 0, 0, '2011-08-24 11:55:17', '2011-08-24 11:55:17'); -- -------------------------------------------------------- -- -- Table structure for table `ost_help_topic` -- CREATE TABLE `ost_help_topic` ( `topic_id` int(11) unsigned NOT NULL auto_increment, `isactive` tinyint(1) unsigned NOT NULL default '1', `noautoresp` tinyint(3) unsigned NOT NULL default '0', `priority_id` tinyint(3) unsigned NOT NULL default '0', `dept_id` tinyint(3) unsigned NOT NULL default '0', `topic` varchar(32) NOT NULL default '', `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`topic_id`), UNIQUE KEY `topic` (`topic`), KEY `priority_id` (`priority_id`), KEY `dept_id` (`dept_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ; -- -- Dumping data for table `ost_help_topic` -- INSERT INTO `ost_help_topic` (`topic_id`, `isactive`, `noautoresp`, `priority_id`, `dept_id`, `topic`, `created`, `updated`) VALUES (1, 1, 0, 2, 1, 'E_Registration', '2011-08-24 11:55:17', '2011-09-22 14:26:42'), (3, 1, 0, 2, 1, 'E_Payments', '2011-09-22 14:26:54', '2011-09-22 14:26:54'), (4, 1, 0, 2, 1, 'E_Returns', '2011-09-22 14:27:03', '2011-09-22 14:27:03'), (5, 1, 0, 2, 1, 'Others', '2011-09-22 14:27:29', '2011-09-22 14:27:29'); -- -------------------------------------------------------- -- -- Table structure for table `ost_kb_premade` -- CREATE TABLE `ost_kb_premade` ( `premade_id` int(10) unsigned NOT NULL auto_increment, `dept_id` int(10) unsigned NOT NULL default '0', `isenabled` tinyint(1) unsigned NOT NULL default '1', `title` varchar(125) NOT NULL default '', `answer` text NOT NULL, `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`premade_id`), UNIQUE KEY `title_2` (`title`), KEY `dept_id` (`dept_id`), KEY `active` (`isenabled`), FULLTEXT KEY `title` (`title`,`answer`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Dumping data for table `ost_kb_premade` -- INSERT INTO `ost_kb_premade` (`premade_id`, `dept_id`, `isenabled`, `title`, `answer`, `created`, `updated`) VALUES (1, 0, 1, 'What is Support Desk System?', 'Support Desk System is a widely-used complaint readressal system, an attractive alternative to higher-cost and complex customer support systems - simple, lightweight, reliable, open source, web-based and easy to setup and use.', '2011-08-24 11:55:17', '2011-08-24 11:55:17'), (2, 0, 1, 'Sample (with variables)', '%name,\r\n\r\nYour complaint #%ticket created on %createdate is in %dept department.\r\n\r\n', '2011-08-24 11:55:17', '2011-08-24 11:55:17'), (3, 1, 1, 'your request has been completely solved', 'your request# %ticket has been completely solved', '2011-09-07 11:33:03', '2011-09-07 11:33:03'); -- -------------------------------------------------------- -- -- Table structure for table `ost_staff` -- CREATE TABLE `ost_staff` ( `staff_id` int(11) unsigned NOT NULL auto_increment, `group_id` int(10) unsigned NOT NULL default '0', `dept_id` int(10) unsigned NOT NULL default '0', `username` varchar(32) NOT NULL default '', `firstname` varchar(32) default NULL, `lastname` varchar(32) default NULL, `passwd` varchar(128) default NULL, `email` varchar(128) default NULL, `phone` varchar(24) NOT NULL default '', `phone_ext` varchar(6) default NULL, `mobile` varchar(24) NOT NULL default '', `signature` tinytext NOT NULL, `isactive` tinyint(1) NOT NULL default '1', `isadmin` tinyint(1) NOT NULL default '0', `isvisible` tinyint(1) unsigned NOT NULL default '1', `onvacation` tinyint(1) unsigned NOT NULL default '0', `daylight_saving` tinyint(1) unsigned NOT NULL default '0', `append_signature` tinyint(1) unsigned NOT NULL default '0', `change_passwd` tinyint(1) unsigned NOT NULL default '0', `timezone_offset` float(3,1) NOT NULL default '0.0', `max_page_size` int(11) unsigned NOT NULL default '0', `auto_refresh_rate` int(10) unsigned NOT NULL default '0', `created` datetime NOT NULL default '0000-00-00 00:00:00', `lastlogin` datetime default NULL, `updated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`staff_id`), UNIQUE KEY `username` (`username`), KEY `dept_id` (`dept_id`), KEY `issuperuser` (`isadmin`), KEY `group_id` (`group_id`,`staff_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ; -- -- Dumping data for table `ost_staff` -- INSERT INTO `ost_staff` (`staff_id`, `group_id`, `dept_id`, `username`, `firstname`, `lastname`, `passwd`, `email`, `phone`, `phone_ext`, `mobile`, `signature`, `isactive`, `isadmin`, `isvisible`, `onvacation`, `daylight_saving`, `append_signature`, `change_passwd`, `timezone_offset`, `max_page_size`, `auto_refresh_rate`, `created`, `lastlogin`, `updated`) VALUES (1, 1, 1, 'admin', 'admin', 'comtax', '0192023a7bbd73250516f069df18b500', 'sunilkm07@gmail.com', '0326-1234567', '', '8797779525', 'Dy.commisioner', 1, 1, 1, 1, 0, 0, 0, 5.5, 25, 0, '2011-08-24 11:55:17', '2011-12-08 14:33:04', '2011-12-08 08:24:42'), (3, 3, 1, 'ritu', 'Sunil', 'Kumar', '48ccc87cd7afb85704a63e8d5953d326', 'sunilkm07@hotmail.com', '0326231-1234567', '123423', '2424242412', 'Programmer', 1, 0, 1, 0, 0, 0, 0, 0.0, 0, 0, '2011-08-27 12:32:47', '2011-12-05 16:13:27', '2011-12-05 16:38:31'), (4, 3, 1, 'kunal', 'kunal', 'kumar', 'ca94aa55199b6b4a96f0b2611f71aa38', 'sunilkm07@hotmail.com', '', '', '8797779525', 'Sr. Programmer', 1, 0, 1, 0, 0, 0, 0, 0.0, 0, 0, '2011-09-02 15:36:01', '2011-09-02 16:14:30', '2011-09-02 15:41:04'), (5, 3, 1, 'rituraj', 'rituraj', 'shriwastaw', 'eea35e6ad06d869b4502600098c9c2e1', 'rituraj00@gmail.com', '', '', '8797779525', 'sr.developer', 1, 0, 1, 0, 0, 0, 0, 0.0, 0, 0, '2011-09-22 15:07:13', '2011-12-05 16:40:54', '2011-12-08 08:21:59'); -- -------------------------------------------------------- -- -- Table structure for table `ost_syslog` -- CREATE TABLE `ost_syslog` ( `log_id` int(11) unsigned NOT NULL auto_increment, `log_type` enum('Debug','Warning','Error') NOT NULL, `title` varchar(255) NOT NULL, `log` text NOT NULL, `logger` varchar(64) NOT NULL, `ip_address` varchar(16) NOT NULL, `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`log_id`), KEY `log_type` (`log_type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=303 ; -- -- Dumping data for table `ost_syslog` -- INSERT INTO `ost_syslog` (`log_id`, `log_type`, `title`, `log`, `logger`, `ip_address`, `created`, `updated`) VALUES (1, 'Debug', 'osTicket installed!', 'Congratulations osTicket basic installation completed!\n\nThank you for choosing osTicket!', '', '127.0.0.1', '2011-08-24 11:55:17', '2011-08-24 11:55:17'), (2, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '10.134.9.21', '2011-08-25 11:52:13', '2011-08-25 11:52:13'), (3, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '10.134.9.21', '2011-08-25 12:34:01', '2011-08-25 12:34:01'), (4, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '127.0.0.1', '2011-08-25 12:56:22', '2011-08-25 12:56:22'), (5, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '127.0.0.1', '2011-08-25 12:58:24', '2011-08-25 12:58:24'), (6, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '127.0.0.1', '2011-08-25 12:58:28', '2011-08-25 12:58:28'), (7, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '127.0.0.1', '2011-08-25 12:59:23', '2011-08-25 12:59:23'), (8, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '127.0.0.1', '2011-08-25 13:11:34', '2011-08-25 13:11:34'), (9, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '127.0.0.1', '2011-08-25 13:12:57', '2011-08-25 13:12:57'), (10, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-08-25 13:19:21', '2011-08-25 13:19:21'), (11, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-08-26 10:18:16', '2011-08-26 10:18:16'), (12, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-08-26 10:18:51', '2011-08-26 10:18:51'), (13, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-08-26 13:12:30', '2011-08-26 13:12:30'), (14, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category WHERE ORDER BY category_id]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ORDER BY category_id'' at line 1', '', '127.0.0.1', '2011-08-26 13:12:47', '2011-08-26 13:12:47'), (15, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-08-26 13:13:05', '2011-08-26 13:13:05'), (16, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category WHERE ORDER BY category_id]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ORDER BY category_id'' at line 1', '', '127.0.0.1', '2011-08-26 13:13:22', '2011-08-26 13:13:22'), (17, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-08-26 13:15:15', '2011-08-26 13:15:15'), (18, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category WHERE ORDER BY category_id]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ORDER BY category_id'' at line 1', '', '127.0.0.1', '2011-08-26 13:15:32', '2011-08-26 13:15:32'), (19, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-08-27 12:21:31', '2011-08-27 12:21:31'), (20, 'Warning', 'Failed login attempt (staff)', 'Username: sunil\nIP: 127.0.0.1\nTIME: Aug 29, 2011, 5:24 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-08-29 10:54:31', '2011-08-29 10:54:31'), (21, 'Warning', 'Failed login attempt (staff)', 'Username: anil\nIP: 127.0.0.1\nTIME: Aug 29, 2011, 5:24 am UTC\n\nAttempts #4', '', '127.0.0.1', '2011-08-29 10:54:45', '2011-08-29 10:54:45'), (22, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-08-29 10:55:15', '2011-08-29 10:55:15'), (23, 'Error', 'Excessive login attempts (staff)', 'Excessive login attempts by a staff member?\nUsername: sunil\nIP: 127.0.0.1\nTIME: Aug 29, 2011, 5:24 am UTC\n\nAttempts #5\nTimeout: 2 minutes \n\n', '', '127.0.0.1', '2011-08-29 10:55:32', '2011-08-29 10:55:32'), (24, 'Warning', 'Failed login attempt (staff)', 'Username: Anil\nIP: 127.0.0.1\nTIME: Aug 29, 2011, 5:27 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-08-29 10:57:23', '2011-08-29 10:57:23'), (25, 'Warning', 'Failed login attempt (staff)', 'Username: Anil\nIP: 127.0.0.1\nTIME: Aug 29, 2011, 5:27 am UTC\n\nAttempts #4', '', '127.0.0.1', '2011-08-29 10:57:47', '2011-08-29 10:57:47'), (26, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-08-29 10:59:14', '2011-08-29 10:59:14'), (27, 'Warning', 'Failed login attempt (staff)', 'Username: sunil\nIP: 10.134.9.64\nTIME: Aug 29, 2011, 7:57 am UTC\n\nAttempts #2', '', '10.134.9.64', '2011-08-29 13:27:32', '2011-08-29 13:27:32'), (28, 'Warning', 'Failed login attempt (staff)', 'Username: sunil\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:36 am UTC\n\nAttempts #2', '', '10.134.9.64', '2011-08-30 11:06:22', '2011-08-30 11:06:22'), (29, 'Warning', 'Failed login attempt (staff)', 'Username: sunil\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:36 am UTC\n\nAttempts #4', '', '10.134.9.64', '2011-08-30 11:06:47', '2011-08-30 11:06:47'), (30, 'Error', 'Excessive login attempts (staff)', 'Excessive login attempts by a staff member?\nUsername: anil\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:37 am UTC\n\nAttempts #5\nTimeout: 2 minutes \n\n', '', '10.134.9.64', '2011-08-30 11:07:01', '2011-08-30 11:07:01'), (31, 'Warning', 'Failed login attempt (staff)', 'Username: anil\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:37 am UTC\n\nAttempts #6', '', '10.134.9.64', '2011-08-30 11:07:16', '2011-08-30 11:07:16'), (32, 'Warning', 'Failed login attempt (staff)', 'Username: anil\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:37 am UTC\n\nAttempts #8', '', '10.134.9.64', '2011-08-30 11:07:42', '2011-08-30 11:07:42'), (33, 'Warning', 'Failed login attempt (staff)', 'Username: anil\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:38 am UTC\n\nAttempts #10', '', '10.134.9.64', '2011-08-30 11:08:09', '2011-08-30 11:08:09'), (34, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmil.com\nTicket #: 772129\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:45 am UTC\n\nAttempts #2', '', '10.134.9.64', '2011-08-30 11:15:31', '2011-08-30 11:15:31'), (35, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmil.com\nTicket #: 772129\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:45 am UTC\n\nAttempts #4', '', '10.134.9.64', '2011-08-30 11:15:58', '2011-08-30 11:15:58'), (36, 'Error', 'Excessive login attempts (client)', 'Excessive login attempts by a client?\nEmail: rituraj00@gmil.com\nTicket#: 772129\nIP: 10.134.9.64\nTime:Aug 30, 2011, 5:45 am UTC\n\nAttempts #5', '', '10.134.9.64', '2011-08-30 11:15:59', '2011-08-30 11:15:59'), (37, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmil.com\nTicket #: 772129\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:47 am UTC\n\nAttempts #6', '', '10.134.9.64', '2011-08-30 11:17:18', '2011-08-30 11:17:18'), (38, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00\nTicket #: 772129\nIP: 10.134.9.64\nTIME: Aug 30, 2011, 5:47 am UTC\n\nAttempts #8', '', '10.134.9.64', '2011-08-30 11:17:50', '2011-08-30 11:17:50'), (39, 'Warning', 'Failed login attempt (staff)', 'Username: sunail\nIP: 127.0.0.1\nTIME: Aug 30, 2011, 6:07 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-08-30 11:37:03', '2011-08-30 11:37:03'), (40, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$ticket->getCategory_id()}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''>getCategory_id()}'' at line 1', '', '127.0.0.1', '2011-08-30 14:14:18', '2011-08-30 14:14:18'), (41, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$ticket->getCategory_id()}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''>getCategory_id()}'' at line 1', '', '127.0.0.1', '2011-08-30 14:14:20', '2011-08-30 14:14:20'), (42, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$ticket->getCategory_id()}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''>getCategory_id()}'' at line 1', '', '127.0.0.1', '2011-08-30 14:14:22', '2011-08-30 14:14:22'), (43, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$ticket->getCategory_id()}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''>getCategory_id()}'' at line 1', '', '127.0.0.1', '2011-08-30 14:14:35', '2011-08-30 14:14:35'), (44, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$ticket->getCategory_id()}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''>getCategory_id()}'' at line 1', '', '127.0.0.1', '2011-08-30 14:15:10', '2011-08-30 14:15:10'), (45, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$ticket->getCategory_id()}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''>getCategory_id()}'' at line 1', '', '127.0.0.1', '2011-08-30 14:15:15', '2011-08-30 14:15:15'), (46, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:16:10', '2011-08-30 14:16:10'), (47, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:16:33', '2011-08-30 14:16:33'), (48, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:16:45', '2011-08-30 14:16:45'), (49, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:17:39', '2011-08-30 14:17:39'), (50, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:18:09', '2011-08-30 14:18:09'), (51, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:18:14', '2011-08-30 14:18:14'), (52, 'Error', 'DB Error #1064', '[SELECT category_id,category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:18:19', '2011-08-30 14:18:19'), (53, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:19:05', '2011-08-30 14:19:05'), (54, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:19:12', '2011-08-30 14:19:12'), (55, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:19:54', '2011-08-30 14:19:54'), (56, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:20:57', '2011-08-30 14:20:57'), (57, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:21:29', '2011-08-30 14:21:29'), (58, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:23:29', '2011-08-30 14:23:29'), (59, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:23:44', '2011-08-30 14:23:44'), (60, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:28:17', '2011-08-30 14:28:17'), (61, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:28:37', '2011-08-30 14:28:37'), (62, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var}]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:29:02', '2011-08-30 14:29:02'), (63, 'Error', 'DB Error #1054', '[SELECT category FROM ost_help_category where category_id =$cat_var]\n\nUnknown column ''$cat_var'' in ''where clause''', '', '127.0.0.1', '2011-08-30 14:29:30', '2011-08-30 14:29:30'), (64, 'Error', 'DB Error #1054', '[SELECT category FROM ost_help_category where category_id =$cat_var]\n\nUnknown column ''$cat_var'' in ''where clause''', '', '127.0.0.1', '2011-08-30 14:30:12', '2011-08-30 14:30:12'), (65, 'Error', 'DB Error #1064', '[SELECT category FROM ost_help_category where category_id ={$cat_var} ]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''}'' at line 1', '', '127.0.0.1', '2011-08-30 14:31:02', '2011-08-30 14:31:02'), (66, 'Error', 'DB Error #1054', '[SELECT category FROM ost_help_category where category_id =$cat_var ]\n\nUnknown column ''$cat_var'' in ''where clause''', '', '127.0.0.1', '2011-08-30 14:48:35', '2011-08-30 14:48:35'), (67, 'Error', 'DB Error #1054', '[SELECT topic_id,topic FROM ost_help_topic WHERE isactive=1 and topic=Support]\n\nUnknown column ''Support'' in ''where clause''', '', '127.0.0.1', '2011-08-30 14:59:38', '2011-08-30 14:59:38'), (68, 'Error', 'DB Error #1064', '[SELECT topic_id,topic FROM ost_help_topic WHERE isactive=1and topic_id=1]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''topic_id=1'' at line 1', '', '127.0.0.1', '2011-08-30 15:02:25', '2011-08-30 15:02:25'), (69, 'Error', 'DB Error #1064', '[SELECT topic_id,topic FROM ost_help_topic WHERE isactive=1and topic_id=1]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''topic_id=1'' at line 1', '', '127.0.0.1', '2011-08-30 15:06:13', '2011-08-30 15:06:13'), (70, 'Warning', 'Failed login attempt (staff)', 'Username: sunail\nIP: 10.134.9.48\nTIME: Sep 2, 2011, 6:00 am UTC\n\nAttempts #2', '', '10.134.9.48', '2011-09-02 11:30:04', '2011-09-02 11:30:04'), (71, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 695323\nIP: 10.134.9.48\nTIME: Sep 2, 2011, 6:02 am UTC\n\nAttempts #2', '', '10.134.9.48', '2011-09-02 11:32:02', '2011-09-02 11:32:02'), (72, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 695323\nIP: 10.134.9.48\nTIME: Sep 2, 2011, 6:02 am UTC\n\nAttempts #4', '', '10.134.9.48', '2011-09-02 11:32:05', '2011-09-02 11:32:05'), (73, 'Warning', 'Failed login attempt (staff)', 'Username: sunil\nIP: 10.134.9.48\nTIME: Sep 2, 2011, 6:47 am UTC\n\nAttempts #2', '', '10.134.9.48', '2011-09-02 12:17:19', '2011-09-02 12:17:19'), (74, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '10.134.9.21', '2011-09-02 12:21:04', '2011-09-02 12:21:04'), (75, 'Warning', 'Failed login attempt (staff)', 'Username: dasda\nIP: 10.134.9.48\nTIME: Sep 2, 2011, 7:00 am UTC\n\nAttempts #2', '', '10.134.9.48', '2011-09-02 12:30:41', '2011-09-02 12:30:41'), (76, 'Warning', 'Failed login attempt (staff)', 'Username: dasda\nIP: 10.134.9.48\nTIME: Sep 2, 2011, 7:03 am UTC\n\nAttempts #4', '', '10.134.9.48', '2011-09-02 12:33:41', '2011-09-02 12:33:41'), (77, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '10.134.9.21', '2011-09-02 12:36:20', '2011-09-02 12:36:20'), (78, 'Error', 'Excessive login attempts (staff)', 'Excessive login attempts by a staff member?\nUsername: dasda\nIP: 10.134.9.48\nTIME: Sep 2, 2011, 7:06 am UTC\n\nAttempts #5\nTimeout: 2 minutes \n\n', '', '10.134.9.48', '2011-09-02 12:36:44', '2011-09-02 12:36:44'), (79, 'Warning', 'Failed login attempt (staff)', 'Username: dasda\nIP: 10.134.9.48\nTIME: Sep 2, 2011, 7:07 am UTC\n\nAttempts #6', '', '10.134.9.48', '2011-09-02 12:37:18', '2011-09-02 12:37:18'), (80, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@redifmail.com\nTicket #: 695323\nIP: 10.134.9.48\nTIME: Sep 2, 2011, 8:03 am UTC\n\nAttempts #2', '', '10.134.9.48', '2011-09-02 13:33:24', '2011-09-02 13:33:24'), (81, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-02 15:42:55', '2011-09-02 15:42:55'), (82, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-02 16:11:09', '2011-09-02 16:11:09'), (83, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-02 16:11:13', '2011-09-02 16:11:13'), (84, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 695323\nIP: 10.134.9.64\nTIME: Sep 3, 2011, 6:12 am UTC\n\nAttempts #2', '', '10.134.9.64', '2011-09-03 11:42:04', '2011-09-03 11:42:04'), (85, 'Error', 'DB Error #1054', '[SELECT category FROM ost_help_category where category_id =$cat_var ]\n\nUnknown column ''$cat_var'' in ''where clause''', '', '10.134.9.64', '2011-09-03 13:45:59', '2011-09-03 13:45:59'), (86, 'Error', 'DB Error #1054', '[SELECT category FROM ost_help_category where category_id =$cat_var ]\n\nUnknown column ''$cat_var'' in ''where clause''', '', '10.134.9.64', '2011-09-03 13:46:52', '2011-09-03 13:46:52'), (87, 'Error', 'DB Error #1054', '[SELECT category FROM ost_help_category where category_id =$cat_var ]\n\nUnknown column ''$cat_var'' in ''where clause''', '', '10.134.9.64', '2011-09-03 13:47:56', '2011-09-03 13:47:56'), (88, 'Error', 'DB Error #1054', '[SELECT count(DISTINCT ticket.ticket_id) FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.caregory_id WHERE 1 AND status=''open'']\n\nUnknown column ''cat.caregory_id'' in ''on clause''', '', '10.134.9.64', '2011-09-03 16:07:30', '2011-09-03 16:07:30'), (89, 'Error', 'DB Error #1054', '[SELECT DISTINCT ticket.ticket_id,lock_id,ticketID,ticket.dept_id,ticket.staff_id,subject,name,email,dept_name,category ,ticket.status,ticket.source,isoverdue,isanswered,ticket.created,pri.* ,count(attach.attach_id) as attachments ,count(attach.attach_id) as attachments, IF(ticket.reopened is NULL,ticket.created,ticket.reopened) as effective_date FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.caregory_id LEFT JOIN ost_ticket_priority pri ON ticket.priority_id=pri.priority_id LEFT JOIN ost_ticket_lock tlock ON ticket.ticket_id=tlock.ticket_id AND tlock.expire>NOW() LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE 1 AND status=''open'' GROUP BY ticket.ticket_id ORDER BY priority_urgency,effective_date DESC ,ticket.created DESC LIMIT 0,25]\n\nUnknown column ''cat.caregory_id'' in ''on clause''', '', '10.134.9.64', '2011-09-03 16:07:30', '2011-09-03 16:07:30'), (90, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 970569\nIP: 10.134.9.64\nTIME: Sep 5, 2011, 6:27 am UTC\n\nAttempts #2', '', '10.134.9.64', '2011-09-05 11:57:34', '2011-09-05 11:57:34'), (91, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 991661\nIP: 10.134.9.64\nTIME: Sep 5, 2011, 6:27 am UTC\n\nAttempts #4', '', '10.134.9.64', '2011-09-05 11:57:50', '2011-09-05 11:57:50'), (92, 'Error', 'Excessive login attempts (client)', 'Excessive login attempts by a client?\nEmail: rituraj00@gmail.com\nTicket#: 991661\nIP: 10.134.9.64\nTime:Sep 5, 2011, 6:27 am UTC\n\nAttempts #5', '', '10.134.9.64', '2011-09-05 11:57:53', '2011-09-05 11:57:53'), (93, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@rediffmail.com\nTicket #: 991661\nIP: 10.134.9.64\nTIME: Sep 5, 2011, 6:28 am UTC\n\nAttempts #6', '', '10.134.9.64', '2011-09-05 11:58:02', '2011-09-05 11:58:02'), (94, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 695323\nIP: 10.134.9.64\nTIME: Sep 5, 2011, 6:28 am UTC\n\nAttempts #8', '', '10.134.9.64', '2011-09-05 11:58:24', '2011-09-05 11:58:24'), (95, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 695323\nIP: 10.134.9.64\nTIME: Sep 5, 2011, 6:28 am UTC\n\nAttempts #10', '', '10.134.9.64', '2011-09-05 11:58:25', '2011-09-05 11:58:25'), (96, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 695323\nIP: 10.134.9.64\nTIME: Sep 5, 2011, 6:28 am UTC\n\nAttempts #12', '', '10.134.9.64', '2011-09-05 11:58:26', '2011-09-05 11:58:26'), (97, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 627685\nIP: 10.134.9.64\nTIME: Sep 5, 2011, 6:29 am UTC\n\nAttempts #2', '', '10.134.9.64', '2011-09-05 11:59:59', '2011-09-05 11:59:59'), (98, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nTicket #: 627685\nIP: 10.134.9.64\nTIME: Sep 5, 2011, 6:30 am UTC\n\nAttempts #4', '', '10.134.9.64', '2011-09-05 12:00:19', '2011-09-05 12:00:19'), (99, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email ,dept_name,category,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:10:49', '2011-09-05 12:10:49'), (100, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email ,dept_name,category,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:13:57', '2011-09-05 12:13:57'), (101, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email ,dept_name,category,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:14:03', '2011-09-05 12:14:03'), (102, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email ,dept_name,category,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:22:28', '2011-09-05 12:22:28'), (103, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email ,dept_name,category,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:27:04', '2011-09-05 12:27:04'), (104, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email ,dept_name,category,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:32:54', '2011-09-05 12:32:54'), (105, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email ,dept_name,category,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:32:54', '2011-09-05 12:32:54'), (106, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email,category ,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:35:23', '2011-09-05 12:35:23'), (107, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email,category ,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:36:51', '2011-09-05 12:36:51'), (108, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email,category ,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:37:11', '2011-09-05 12:37:11'), (109, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,category ,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:39:35', '2011-09-05 12:39:35'), (110, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,category ,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:42:41', '2011-09-05 12:42:41'), (111, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:44:42', '2011-09-05 12:44:42'), (112, 'Error', 'DB Error #1054', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,caregory,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nUnknown column ''caregory'' in ''field list''', '', '10.134.9.64', '2011-09-05 12:45:44', '2011-09-05 12:45:44'), (113, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,category,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:46:12', '2011-09-05 12:46:12'), (114, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,category,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:46:14', '2011-09-05 12:46:14'), (115, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,category,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:46:14', '2011-09-05 12:46:14'), (116, 'Error', 'DB Error #1052', '[SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,category ,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:50:03', '2011-09-05 12:50:03'), (117, 'Error', 'DB Error #1052', '[ SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,category ,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:50:41', '2011-09-05 12:50:41'), (118, 'Error', 'DB Error #1052', '[ SELECT DISTINCT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,category ,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_help_category cat ON ticket.category_id=cat.category_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nColumn ''priority_id'' in field list is ambiguous', '', '10.134.9.64', '2011-09-05 12:56:07', '2011-09-05 12:56:07'), (119, 'Error', 'DB Error #1054', '[ SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,ticket.category_id,isanswered,ispublic,subject,name,email,category ,dept_name,status,source,priority_id ,ticket.created ,count(attach_id) as attachments FROM ost_ticket ticket LEFT JOIN ost_department dept ON ticket.dept_id=dept.dept_id LEFT JOIN ost_ticket_attachment attach ON ticket.ticket_id=attach.ticket_id WHERE email=''rituraj00@rediffmail.com'' GROUP BY ticket.ticket_id ORDER BY ticket.created DESC LIMIT 0,20]\n\nUnknown column ''category'' in ''field list''', '', '10.134.9.64', '2011-09-05 12:56:28', '2011-09-05 12:56:28'), (120, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.\r\n (code: -1, response: )]\n', '', '10.134.9.64', '2011-09-07 11:47:35', '2011-09-07 11:47:35'), (121, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\n authentication failure [SMTP: Invalid response code received from server (code: 454, response: 4.7.0 Authentication server unavailable (Remote authentication server unavailable).)]\n', '', '10.134.9.64', '2011-09-07 11:56:34', '2011-09-07 11:56:34'), (122, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 10:37:13', '2011-09-09 10:37:13'), (123, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 10:37:48', '2011-09-09 10:37:48'), (124, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 10:38:22', '2011-09-09 10:38:22'), (125, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 10:38:57', '2011-09-09 10:38:57'), (126, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 10:39:31', '2011-09-09 10:39:31'), (127, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 10:53:03', '2011-09-09 10:53:03'), (128, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 10:53:38', '2011-09-09 10:53:38'), (129, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 11:47:42', '2011-09-09 11:47:42'), (130, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 11:48:16', '2011-09-09 11:48:16'), (131, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 11:54:34', '2011-09-09 11:54:34'), (132, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 11:55:09', '2011-09-09 11:55:09'), (133, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 11:55:43', '2011-09-09 11:55:43'), (134, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 11:56:18', '2011-09-09 11:56:18'); INSERT INTO `ost_syslog` (`log_id`, `log_type`, `title`, `log`, `logger`, `ip_address`, `created`, `updated`) VALUES (135, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: fsockopen() [function.fsockopen]: unable to connect to ssl://mail.nic.in:465 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-09 11:56:52', '2011-09-09 11:56:52'), (136, 'Warning', 'Failed login attempt (client)', 'Email: 802413\nTicket #: skumar052002@yahoo.com\nIP: 127.0.0.1\nTIME: Sep 13, 2011, 5:31 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-09-13 11:01:00', '2011-09-13 11:01:00'), (137, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-22 14:24:42', '2011-09-22 14:24:42'), (138, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-22 14:24:44', '2011-09-22 14:24:44'), (139, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-22 14:24:45', '2011-09-22 14:24:45'), (140, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-22 14:24:46', '2011-09-22 14:24:46'), (141, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-22 14:28:22', '2011-09-22 14:28:22'), (142, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-22 14:28:24', '2011-09-22 14:28:24'), (143, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-22 14:35:18', '2011-09-22 14:35:18'), (144, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to connect to ssl://mail.nic.in:465 [SMTP: Failed to connect socket: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (code: -1, response: )]\n', '', '127.0.0.1', '2011-09-22 14:42:33', '2011-09-22 14:42:33'), (145, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created="$curr" ,ticketID=169579,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu raj'',tinno=11111111111,mob=2212121311,subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-09-23 15:00:01', '2011-09-23 15:00:01'), (146, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created="$curr" ,ticketID=920919,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu raj'',tinno=11111111111,mob=2212121311,subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-09-23 15:00:20', '2011-09-23 15:00:20'), (147, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created="$curr" ,ticketID=744451,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu raj'',tinno=11111111111,mob=2212121311,subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-09-23 15:00:27', '2011-09-23 15:00:27'), (148, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=$curr ,ticketID=893855,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu raj'',tinno=11111111111,mob=2212121311,subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-09-23 15:01:08', '2011-09-23 15:01:08'), (149, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=2011-09-23 09:32:28,ticketID=464149,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu raj'',tinno=11111111111,mob=2212121311,subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''09:32:28,ticketID=464149,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gma'' at line 1', '', '127.0.0.1', '2011-09-23 15:02:30', '2011-09-23 15:02:30'), (150, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=719595,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu raj'',tinno=11111111111,mob=2212121311,subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-09-23 16:46:34', '2011-09-23 16:46:34'), (151, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=865000,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu raj'',tinno=11111111111,mob=2212121311,subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-09-23 16:47:06', '2011-09-23 16:47:06'), (152, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-09-24 13:41:55', '2011-09-24 13:41:55'), (153, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-09-24 13:41:55', '2011-09-24 13:41:55'), (154, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-09-24 13:41:56', '2011-09-24 13:41:56'), (155, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-09-24 13:41:56', '2011-09-24 13:41:56'), (156, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-09-24 13:41:57', '2011-09-24 13:41:57'), (157, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-09-24 13:41:57', '2011-09-24 13:41:57'), (158, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-09-24 13:41:58', '2011-09-24 13:41:58'), (159, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-09-24 13:41:58', '2011-09-24 13:41:58'), (160, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-09-24 13:41:59', '2011-09-24 13:41:59'), (161, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=828798,dept_id=1,topic_id=1,priority_id=2,email=''kunaljsr@gmail.com'',name=''KUanl Sinha'',tinno=99999999999,mob='''',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''10.134.9.46'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''10.134.9.46'',source=''Web'''' at line 1', '', '10.134.9.46', '2011-11-05 13:52:40', '2011-11-05 13:52:40'), (162, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=540516,dept_id=1,topic_id=1,priority_id=2,email=''kunaljsr@gmail.com'',name=''KUanl Sinha'',tinno=99999999999,mob='''',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''10.134.9.46'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''10.134.9.46'',source=''Web'''' at line 1', '', '10.134.9.46', '2011-11-05 13:53:05', '2011-11-05 13:53:05'), (163, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=634274,dept_id=1,topic_id=1,priority_id=2,email=''kunaljsr@gmail.com'',name=''KUanl Sinha'',tinno=99999999999,mob='''',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''10.134.9.46'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''10.134.9.46'',source=''Web'''' at line 1', '', '10.134.9.46', '2011-11-05 13:53:20', '2011-11-05 13:53:20'), (164, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=505467,dept_id=1,topic_id=1,priority_id=2,email=''rituraj19@in.com'',name=''ritu raj shriwastaw'',tinno='''',mob='''',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-05 13:55:06', '2011-11-05 13:55:06'), (165, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=778876,dept_id=1,topic_id=1,priority_id=2,email=''rituraj19@in.com'',name=''ritu raj shriwastaw'',tinno='''',mob='''',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-05 13:57:07', '2011-11-05 13:57:07'), (166, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=413501,dept_id=1,topic_id=1,priority_id=2,email=''kunaljsr@gmail.com'',name=''Kunal Sinha'',tinno='''',mob=9835539225,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''10.134.9.46'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''10.134.9.46'',source=''Web'''' at line 1', '', '10.134.9.46', '2011-11-05 13:57:41', '2011-11-05 13:57:41'), (167, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=141717,dept_id=1,topic_id=1,priority_id=2,email=''kunaljsr@gmail.com'',name=''Kunal Sinha'',tinno='''',mob=9835539225,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''10.134.9.46'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''10.134.9.46'',source=''Web'''' at line 1', '', '10.134.9.46', '2011-11-05 13:58:22', '2011-11-05 13:58:22'), (168, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=944930,dept_id=1,topic_id=3,priority_id=2,email=''rituraj19@in.com'',name=''RWSERWR'',tinno='''',mob='''',subject=''E_Payments'',helptopic=''E_Payments'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-05 13:59:26', '2011-11-05 13:59:26'), (169, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=409098,dept_id=1,topic_id=1,priority_id=2,email=''rituraj19@in.com'',name=''rajritushri'',tinno='''',mob='''',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-05 14:02:47', '2011-11-05 14:02:47'), (170, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=464149,dept_id=1,topic_id=1,priority_id=2,email=''rituraj19@in.com'',name=''rajritushri'',tinno=12345679866,mob='''',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-05 14:03:23', '2011-11-05 14:03:23'), (171, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=857431,dept_id=1,topic_id=1,priority_id=2,email=''rituraj19@in.com'',name=''rajritushri'',tinno=12345679866,mob='''',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-05 14:03:51', '2011-11-05 14:03:51'), (172, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=253304,dept_id=1,topic_id=1,priority_id=2,email=''kunaljsr@gmail.com'',name=''kunal Sinha'',tinno='''',mob=9835539225,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''10.134.9.46'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''10.134.9.46'',source=''Web'''' at line 1', '', '10.134.9.46', '2011-11-05 14:10:27', '2011-11-05 14:10:27'), (173, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=147996,dept_id=1,topic_id=1,priority_id=2,email=''kunaljsr@gmail.com'',name=''kunal Sinha'',tinno='''',mob=9835539225,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''10.134.9.46'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''10.134.9.46'',source=''Web'''' at line 1', '', '10.134.9.46', '2011-11-05 14:10:51', '2011-11-05 14:10:51'), (174, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=812345,dept_id=1,topic_id=1,priority_id=2,email=''kunaljsr@gmail.com'',name=''kunal Sinha'',tinno=12333333333,mob=9835539225,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''10.134.9.46'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''10.134.9.46'',source=''Web'''' at line 1', '', '10.134.9.46', '2011-11-05 14:11:15', '2011-11-05 14:11:15'), (175, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=276678,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno=12345678901,mob=9798315441,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 11:34:19', '2011-11-08 11:34:19'), (176, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=505467,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno=12345678901,mob=9798315441,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 11:37:15', '2011-11-08 11:37:15'), (177, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=557480,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno=12345678901,mob=9798315441,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 11:57:22', '2011-11-08 11:57:22'), (178, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=687870,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno=12345678901,mob=9798315441,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 12:00:52', '2011-11-08 12:00:52'), (179, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=695603,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno=12345678901,mob=9798315441,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 12:12:23', '2011-11-08 12:12:23'), (180, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=991345,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno=12345678901,mob=9798315441,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 12:17:25', '2011-11-08 12:17:25'), (181, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=818176,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno=12345678901,mob=9798315441,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 12:17:42', '2011-11-08 12:17:42'), (182, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=985304,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@in.com'',name=''rirtet'',tinno=13122131313,mob=9786464646,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 12:19:36', '2011-11-08 12:19:36'), (183, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=497005,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@in.com'',name=''rirtet'',tinno=13122131313,mob=9786464646,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 12:21:01', '2011-11-08 12:21:01'), (184, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=304833,dept_id=1,topic_id=3,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno=31431442424,mob=6868686865,subject=''E_Payments'',helptopic=''E_Payments'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 12:26:37', '2011-11-08 12:26:37'), (185, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=524154,dept_id=1,topic_id=3,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno=31431442424,mob=6868686865,subject=''E_Payments'',helptopic=''E_Payments'',phone="",phone_ext=,ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''ip_address=''127.0.0.1'',source=''Web'''' at line 1', '', '127.0.0.1', '2011-11-08 12:48:23', '2011-11-08 12:48:23'), (186, 'Warning', 'Failed login attempt (client)', 'Email: kunaljsr@gmail.com \nComplaint #: 19968\nIP: 127.0.0.1\nTIME: Nov 29, 2011, 7:38 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-11-29 13:08:40', '2011-11-29 13:08:40'), (187, 'Warning', 'Failed login attempt (client)', 'Email: kunaljsr@gmail.com \nComplaint #: 199698\nIP: 127.0.0.1\nTIME: Nov 29, 2011, 7:39 am UTC\n\nAttempts #4', '', '127.0.0.1', '2011-11-29 13:09:17', '2011-11-29 13:09:17'), (188, 'Error', 'Excessive login attempts (client)', 'Excessive login attempts by a client?\nEmail: kunaljsr@gmail.com \nComplaint#: 1996198\nIP: 127.0.0.1\nTime:Nov 29, 2011, 7:39 am UTC\n\nAttempts #5', '', '127.0.0.1', '2011-11-29 13:09:21', '2011-11-29 13:09:21'), (189, 'Warning', 'Failed login attempt (client)', 'Email: kunaljsr@gmail.com \nComplaint #: 1996198\nIP: 127.0.0.1\nTIME: Nov 29, 2011, 7:39 am UTC\n\nAttempts #6', '', '127.0.0.1', '2011-11-29 13:09:23', '2011-11-29 13:09:23'), (190, 'Warning', 'Failed login attempt (client)', 'Email: kunaljsr@gmail.com \nComplaint #: 196998\nIP: 127.0.0.1\nTIME: Nov 29, 2011, 7:40 am UTC\n\nAttempts #8', '', '127.0.0.1', '2011-11-29 13:10:08', '2011-11-29 13:10:08'), (191, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nComplaint #: 783943\nIP: 127.0.0.1\nTIME: Nov 29, 2011, 7:41 am UTC\n\nAttempts #10', '', '127.0.0.1', '2011-11-29 13:11:00', '2011-11-29 13:11:00'), (192, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nComplaint #: 783943\nIP: 127.0.0.1\nTIME: Nov 29, 2011, 7:41 am UTC\n\nAttempts #12', '', '127.0.0.1', '2011-11-29 13:11:03', '2011-11-29 13:11:03'), (193, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nComplaint #: 783943\nIP: 127.0.0.1\nTIME: Nov 29, 2011, 7:41 am UTC\n\nAttempts #14', '', '127.0.0.1', '2011-11-29 13:11:05', '2011-11-29 13:11:05'), (194, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=409098,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''RITU RAJ SHRIWASTAW'',tinno=12345678900,mob=9835234348,add=''engineering building,block2,dhurwa,ranchi,jharkhand'',subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=''0326'',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''engineering building,block2,dhurwa,ranchi,jharkhand'',subject=''E_Registratio'' at line 1', '', '127.0.0.1', '2011-11-29 14:34:43', '2011-11-29 14:34:43'), (195, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=634274,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''RITU RAJ SHRIWASTAW'',tinno=12345678900,mob=9835234348,add=''engineering building, block2,dhurwa,ranchi,jharkhand'',subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=''0326'',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''engineering building, block2,dhurwa,ranchi,jharkhand'',subject=''E_Registrati'' at line 1', '', '127.0.0.1', '2011-11-29 14:38:29', '2011-11-29 14:38:29'), (196, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=744451,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''RITU RAJ SHRIWASTAW'',tinno=12345678900,mob=9835234348,add=''jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj'',subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=''0326'',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj'' at line 1', '', '127.0.0.1', '2011-11-29 14:42:05', '2011-11-29 14:42:05'), (197, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=846306,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''RITU RAJ SHRIWASTAW'',tinno=12345678900,mob=9835234348,add=''Engineering building block 2, dhurwa,goal chakkar, ranchi,jharkhand'',subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=''0326'',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''Engineering building block 2, dhurwa,goal chakkar, ranchi,jharkhand'',subje'' at line 1', '', '127.0.0.1', '2011-11-29 14:50:51', '2011-11-29 14:50:51'), (198, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=826440,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''RITU RAJ SHRIWASTAW'',tinno=12345678900,mob=9835234348,add=''Engineering building block 2, dhurwa,goal chakkar, ranchi,jharkhand'',subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=''0326'',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''Engineering building block 2, dhurwa,goal chakkar, ranchi,jharkhand'',subje'' at line 1', '', '127.0.0.1', '2011-11-29 14:51:10', '2011-11-29 14:51:10'), (199, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=503145,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''RITU RAJ SHRIWASTAW'',tinno=12345678900,mob=9835234348,add=''Engineering building block 2 dhurwa goal chakkar, ranchi jharkhand'',subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=''0326'',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''Engineering building block 2 dhurwa goal chakkar, ranchi jharkhand'',subjec'' at line 1', '', '127.0.0.1', '2011-11-29 14:54:30', '2011-11-29 14:54:30'), (200, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=524154,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''RITU RAJ SHRIWASTAW'',tinno=12345678900,mob=9835234348,add=''Engineering building block 2 dhurwa goal chakkar, ranchi jharkhand'',subject=''E_Registration'',helptopic=''E_Registration'',phone="1234567",phone_ext=''0326'',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''Engineering building block 2 dhurwa goal chakkar, ranchi jharkhand'',subjec'' at line 1', '', '127.0.0.1', '2011-11-29 14:55:14', '2011-11-29 14:55:14'), (201, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=634274,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''RITU RAJ SHRIWASTAW'',tinno=12345678900,mob=9835234348,add=''Engineering building block 2 dhurwa goal chakkar, ranchi jharkhand'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''Engineering building block 2 dhurwa goal chakkar, ranchi jharkhand'',subjec'' at line 1', '', '127.0.0.1', '2011-11-29 15:13:03', '2011-11-29 15:13:03'), (202, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=985304,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 15:26:55', '2011-11-29 15:26:55'), (203, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=131979,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 15:51:46', '2011-11-29 15:51:46'), (204, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=387952,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 15:52:30', '2011-11-29 15:52:30'), (205, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=754296,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 16:06:22', '2011-11-29 16:06:22'), (206, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=406018,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 16:12:24', '2011-11-29 16:12:24'), (207, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=160240,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 16:19:38', '2011-11-29 16:19:38'), (208, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=282431,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 16:34:52', '2011-11-29 16:34:52'), (209, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=496701,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 16:38:28', '2011-11-29 16:38:28'), (210, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=259403,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 16:57:19', '2011-11-29 16:57:19'), (211, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=162066,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',add=gdgdgdgdgdgsdgdg,subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',add=gdgdgdgdgdgsdgdg,subject=''E_Registration'',helptopic='''' at line 1', '', '127.0.0.1', '2011-11-29 16:59:44', '2011-11-29 16:59:44'), (212, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=368387,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 17:01:52', '2011-11-29 17:01:52'), (213, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=687870,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 17:17:50', '2011-11-29 17:17:50'), (214, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=187417,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''fbfhf'',tinno='''',mob='''',add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''gdgdgdgdgdgsdgdg'',subject=''E_Registration'',helptopic=''E_Registration'',phone'' at line 1', '', '127.0.0.1', '2011-11-29 17:20:13', '2011-11-29 17:20:13'), (215, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=201274,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno='''',mob='''',add=''deo public school '',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''deo public school '',subject=''E_Registration'',helptopic=''E_Registration'',pho'' at line 1', '', '127.0.0.1', '2011-11-30 10:54:05', '2011-11-30 10:54:05'), (216, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=398862,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno='''',mob='''',add=''deo public school '',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''deo public school '',subject=''E_Registration'',helptopic=''E_Registration'',pho'' at line 1', '', '127.0.0.1', '2011-11-30 11:40:46', '2011-11-30 11:40:46'), (217, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=496701,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno='''',mob='''',add=''deo public school '',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''deo public school '',subject=''E_Registration'',helptopic=''E_Registration'',pho'' at line 1', '', '127.0.0.1', '2011-11-30 11:43:29', '2011-11-30 11:43:29'), (218, 'Error', 'DB Error #1064', '[INSERT INTO ost_ticket SET created=NOW() ,ticketID=703782,dept_id=1,topic_id=1,priority_id=2,email=''rituraj00@gmail.com'',name=''ritu'',tinno='''',mob='''',add=''deo public school '',subject=''E_Registration'',helptopic=''E_Registration'',phone="",phone_ext='''',ip_address=''127.0.0.1'',source=''Web'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add=''deo public school '',subject=''E_Registration'',helptopic=''E_Registration'',pho'' at line 1', '', '127.0.0.1', '2011-11-30 12:03:37', '2011-11-30 12:03:37'), (219, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:10:45', '2011-11-30 12:10:45'), (220, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:10:46', '2011-11-30 12:10:46'), (221, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:10:46', '2011-11-30 12:10:46'), (222, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:10:47', '2011-11-30 12:10:47'), (223, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:11:06', '2011-11-30 12:11:06'), (224, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:11:12', '2011-11-30 12:11:12'), (225, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:11:13', '2011-11-30 12:11:13'), (226, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:11:14', '2011-11-30 12:11:14'), (227, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:11:15', '2011-11-30 12:11:15'), (228, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:12:01', '2011-11-30 12:12:01'), (229, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:12:01', '2011-11-30 12:12:01'), (230, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:12:02', '2011-11-30 12:12:02'), (231, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:12:03', '2011-11-30 12:12:03'); INSERT INTO `ost_syslog` (`log_id`, `log_type`, `title`, `log`, `logger`, `ip_address`, `created`, `updated`) VALUES (232, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:12:17', '2011-11-30 12:12:17'), (233, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:12:24', '2011-11-30 12:12:24'), (234, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:12:24', '2011-11-30 12:12:24'), (235, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=85 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:12:25', '2011-11-30 12:12:25'), (236, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=236155 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-30 12:12:26', '2011-11-30 12:12:26'), (237, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to add recipient: rituraj00@gmail.con [SMTP: Invalid response code received from server (code: 550, response: 5.1.2 unknown host or domain: rituraj00@gmail.con)]\n', '', '10.134.9.64', '2011-11-18 12:18:20', '2011-11-18 12:18:20'), (238, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nComplaint #: 236155\nIP: 10.134.9.64\nTIME: Nov 18, 2011, 7:00 am UTC\n\nAttempts #2', '', '10.134.9.64', '2011-11-18 12:30:31', '2011-11-18 12:30:31'), (239, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nComplaint #: 236155\nIP: 10.134.9.64\nTIME: Nov 18, 2011, 7:00 am UTC\n\nAttempts #4', '', '10.134.9.64', '2011-11-18 12:30:32', '2011-11-18 12:30:32'), (240, 'Error', 'Excessive login attempts (client)', 'Excessive login attempts by a client?\nEmail: rituraj00@gmail.com\nComplaint#: 236155\nIP: 10.134.9.64\nTime:Nov 18, 2011, 7:00 am UTC\n\nAttempts #5', '', '10.134.9.64', '2011-11-18 12:30:33', '2011-11-18 12:30:33'), (241, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nComplaint #: 236155\nIP: 10.134.9.64\nTIME: Nov 18, 2011, 7:00 am UTC\n\nAttempts #6', '', '10.134.9.64', '2011-11-18 12:30:35', '2011-11-18 12:30:35'), (242, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nComplaint #: 236155\nIP: 10.134.9.64\nTIME: Nov 18, 2011, 7:00 am UTC\n\nAttempts #8', '', '10.134.9.64', '2011-11-18 12:30:36', '2011-11-18 12:30:36'), (243, 'Warning', 'Failed login attempt (client)', 'Email: rituraj00@gmail.com\nComplaint #: 236155\nIP: 10.134.9.64\nTIME: Nov 18, 2011, 7:01 am UTC\n\nAttempts #10', '', '10.134.9.64', '2011-11-18 12:31:13', '2011-11-18 12:31:13'), (244, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [punit.verma@nic.in]\n\nFailed to add recipient: rituraj00@gmail.con [SMTP: Invalid response code received from server (code: 550, response: 5.1.2 unknown host or domain: rituraj00@gmail.con)]\n', '', '127.0.0.1', '2011-11-18 12:40:44', '2011-11-18 12:40:44'), (245, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-11-18 12:51:48', '2011-11-18 12:51:48'), (246, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-11-18 12:51:48', '2011-11-18 12:51:48'), (247, 'Error', 'DB Error #1064', '[DELETE FROM ost_ticket WHERE ticket_id=]\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''' at line 1', '', '127.0.0.1', '2011-11-18 12:51:49', '2011-11-18 12:51:49'), (248, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:52:23', '2011-11-18 12:52:23'), (249, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:52:23', '2011-11-18 12:52:23'), (250, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:52:24', '2011-11-18 12:52:24'), (251, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:52:25', '2011-11-18 12:52:25'), (252, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:52:54', '2011-11-18 12:52:54'), (253, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:53:00', '2011-11-18 12:53:00'), (254, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:53:01', '2011-11-18 12:53:01'), (255, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:53:02', '2011-11-18 12:53:02'), (256, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:53:03', '2011-11-18 12:53:03'), (257, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:53:18', '2011-11-18 12:53:18'), (258, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:53:19', '2011-11-18 12:53:19'), (259, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:53:19', '2011-11-18 12:53:19'), (260, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '10.134.9.64', '2011-11-18 12:53:20', '2011-11-18 12:53:20'), (261, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 12:59:30', '2011-11-18 12:59:30'), (262, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 12:59:31', '2011-11-18 12:59:31'), (263, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 12:59:31', '2011-11-18 12:59:31'), (264, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 12:59:32', '2011-11-18 12:59:32'), (265, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 13:01:20', '2011-11-18 13:01:20'), (266, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 13:01:30', '2011-11-18 13:01:30'), (267, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 13:01:31', '2011-11-18 13:01:31'), (268, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=89 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 13:01:31', '2011-11-18 13:01:31'), (269, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 13:01:32', '2011-11-18 13:01:32'), (270, 'Error', 'DB Error #1064', '[SELECT ticket_id,ticketID,name,email,topic_id,mob,tinno,phone,phone_ext,add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'']\n\nYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''add FROM ost_ticket WHERE ticketID=187417 AND email=''rituraj00@gmail.com'''' at line 1', '', '127.0.0.1', '2011-11-18 13:01:37', '2011-11-18 13:01:37'), (271, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 10.134.9.62\nTIME: Nov 28, 2011, 10:51 am UTC\n\nAttempts #2', '', '10.134.9.62', '2011-11-28 16:21:42', '2011-11-28 16:21:42'), (272, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 10.134.9.62\nTIME: Nov 28, 2011, 10:52 am UTC\n\nAttempts #4', '', '10.134.9.62', '2011-11-28 16:22:03', '2011-11-28 16:22:03'), (273, 'Error', 'Excessive login attempts (staff)', 'Excessive login attempts by a staff member?\nUsername: admin123\nIP: 10.134.9.62\nTIME: Nov 28, 2011, 10:52 am UTC\n\nAttempts #5\nTimeout: 2 minutes \n\n', '', '10.134.9.62', '2011-11-28 16:22:11', '2011-11-28 16:22:11'), (274, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 10.134.9.62\nTIME: Nov 28, 2011, 10:52 am UTC\n\nAttempts #6', '', '10.134.9.62', '2011-11-28 16:22:19', '2011-11-28 16:22:19'), (275, 'Warning', 'Failed login attempt (staff)', 'Username: admin123\nIP: 10.134.9.62\nTIME: Nov 28, 2011, 10:52 am UTC\n\nAttempts #8', '', '10.134.9.62', '2011-11-28 16:22:50', '2011-11-28 16:22:50'), (276, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:53 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-11-28 16:23:03', '2011-11-28 16:23:03'), (277, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:53 am UTC\n\nAttempts #4', '', '127.0.0.1', '2011-11-28 16:23:32', '2011-11-28 16:23:32'), (278, 'Error', 'Excessive login attempts (staff)', 'Excessive login attempts by a staff member?\nUsername: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:53 am UTC\n\nAttempts #5\nTimeout: 2 minutes \n\n', '', '127.0.0.1', '2011-11-28 16:23:42', '2011-11-28 16:23:42'), (279, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:54 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-11-28 16:24:06', '2011-11-28 16:24:06'), (280, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:54 am UTC\n\nAttempts #4', '', '127.0.0.1', '2011-11-28 16:24:23', '2011-11-28 16:24:23'), (281, 'Error', 'Excessive login attempts (staff)', 'Excessive login attempts by a staff member?\nUsername: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:54 am UTC\n\nAttempts #5\nTimeout: 2 minutes \n\n', '', '127.0.0.1', '2011-11-28 16:24:36', '2011-11-28 16:24:36'), (282, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:54 am UTC\n\nAttempts #6', '', '127.0.0.1', '2011-11-28 16:24:45', '2011-11-28 16:24:45'), (283, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:55 am UTC\n\nAttempts #8', '', '127.0.0.1', '2011-11-28 16:25:09', '2011-11-28 16:25:09'), (284, 'Warning', 'Failed login attempt (staff)', 'Username: Admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:56 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-11-28 16:26:59', '2011-11-28 16:26:59'), (285, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:58 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-11-28 16:28:47', '2011-11-28 16:28:47'), (286, 'Warning', 'Failed login attempt (staff)', 'Username: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:59 am UTC\n\nAttempts #4', '', '127.0.0.1', '2011-11-28 16:29:05', '2011-11-28 16:29:05'), (287, 'Error', 'Excessive login attempts (staff)', 'Excessive login attempts by a staff member?\nUsername: admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:59 am UTC\n\nAttempts #5\nTimeout: 2 minutes \n\n', '', '127.0.0.1', '2011-11-28 16:29:13', '2011-11-28 16:29:13'), (288, 'Warning', 'Failed login attempt (staff)', 'Username: admin123\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:59 am UTC\n\nAttempts #6', '', '127.0.0.1', '2011-11-28 16:29:21', '2011-11-28 16:29:21'), (289, 'Warning', 'Failed login attempt (staff)', 'Username: ritu\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 10:59 am UTC\n\nAttempts #8', '', '127.0.0.1', '2011-11-28 16:29:55', '2011-11-28 16:29:55'), (290, 'Warning', 'Failed login attempt (staff)', 'Username: ritu\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 11:00 am UTC\n\nAttempts #10', '', '127.0.0.1', '2011-11-28 16:30:07', '2011-11-28 16:30:07'), (291, 'Warning', 'Failed login attempt (staff)', 'Username: sunil\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 11:00 am UTC\n\nAttempts #4', '', '127.0.0.1', '2011-11-28 16:30:15', '2011-11-28 16:30:15'), (292, 'Warning', 'Failed login attempt (staff)', 'Username: Admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 11:01 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-11-28 16:31:16', '2011-11-28 16:31:16'), (293, 'Warning', 'Failed login attempt (staff)', 'Username: sunil\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 11:01 am UTC\n\nAttempts #4', '', '127.0.0.1', '2011-11-28 16:31:49', '2011-11-28 16:31:49'), (294, 'Error', 'Excessive login attempts (staff)', 'Excessive login attempts by a staff member?\nUsername: Admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 11:02 am UTC\n\nAttempts #5\nTimeout: 2 minutes \n\n', '', '127.0.0.1', '2011-11-28 16:32:45', '2011-11-28 16:32:45'), (295, 'Warning', 'Failed login attempt (staff)', 'Username: Admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 11:03 am UTC\n\nAttempts #6', '', '127.0.0.1', '2011-11-28 16:33:16', '2011-11-28 16:33:16'), (296, 'Warning', 'Failed login attempt (staff)', 'Username: Admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 11:03 am UTC\n\nAttempts #8', '', '127.0.0.1', '2011-11-28 16:33:38', '2011-11-28 16:33:38'), (297, 'Warning', 'Failed login attempt (staff)', 'Username: Admin\nIP: 127.0.0.1\nTIME: Nov 28, 2011, 11:04 am UTC\n\nAttempts #10', '', '127.0.0.1', '2011-11-28 16:34:27', '2011-11-28 16:34:27'), (298, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '127.0.0.1', '2011-12-03 12:24:42', '2011-12-03 12:24:42'), (299, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '127.0.0.1', '2011-12-03 12:28:53', '2011-12-03 12:28:53'), (300, 'Warning', 'Failed login attempt (staff)', 'Username: Admin\nIP: 127.0.0.1\nTIME: Dec 8, 2011, 2:48 am UTC\n\nAttempts #2', '', '127.0.0.1', '2011-12-08 08:18:45', '2011-12-08 08:18:45'), (301, 'Error', 'SMTP Error', 'Unable to email via ssl://mail.nic.in:465 [cyber.ctax-jhr@nic.in]\n\nFailed to add recipient: rituraj00@gmail.con [SMTP: Invalid response code received from server (code: 550, response: 5.1.2 unknown host or domain: rituraj00@gmail.con)]\n', '', '127.0.0.1', '2011-12-08 08:27:38', '2011-12-08 08:27:38'), (302, 'Warning', 'mcrypt missing', 'Cryptography extension mcrypt is not enabled or installed. IMAP/POP passwords are being stored as plain text in database.', '', '127.0.0.1', '2011-12-08 14:33:38', '2011-12-08 14:33:38'); -- -------------------------------------------------------- -- -- Table structure for table `ost_ticket` -- CREATE TABLE `ost_ticket` ( `ticket_id` int(11) unsigned NOT NULL auto_increment, `ticketID` int(11) unsigned NOT NULL default '0', `dept_id` int(10) unsigned NOT NULL default '1', `priority_id` int(10) unsigned NOT NULL default '2', `topic_id` int(10) unsigned NOT NULL default '0', `staff_id` int(10) unsigned NOT NULL default '0', `email` varchar(120) NOT NULL default '', `name` varchar(32) NOT NULL default '', `tinno` double default NULL, `address` varchar(255) NOT NULL, `subject` varchar(64) NOT NULL default '[no subject]', `helptopic` varchar(255) default NULL, `phone` varchar(16) default NULL, `phone_ext` varchar(8) default NULL, `mob` varchar(16) default NULL, `ip_address` varchar(16) NOT NULL default '', `status` enum('open','closed') NOT NULL default 'open', `source` enum('Web','Email','Phone','Other') NOT NULL default 'Other', `isoverdue` tinyint(1) unsigned NOT NULL default '0', `isanswered` tinyint(1) unsigned NOT NULL default '0', `duedate` datetime default NULL, `reopened` datetime default NULL, `closed` datetime default NULL, `lastmessage` datetime default NULL, `lastresponse` datetime default NULL, `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`ticket_id`), UNIQUE KEY `email_extid` (`ticketID`,`email`), KEY `dept_id` (`dept_id`), KEY `staff_id` (`staff_id`), KEY `status` (`status`), KEY `priority_id` (`priority_id`), KEY `created` (`created`), KEY `closed` (`closed`), KEY `duedate` (`duedate`), KEY `topic_id` (`topic_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=126 ; -- -- Dumping data for table `ost_ticket` -- INSERT INTO `ost_ticket` (`ticket_id`, `ticketID`, `dept_id`, `priority_id`, `topic_id`, `staff_id`, `email`, `name`, `tinno`, `address`, `subject`, `helptopic`, `phone`, `phone_ext`, `mob`, `ip_address`, `status`, `source`, `isoverdue`, `isanswered`, `duedate`, `reopened`, `closed`, `lastmessage`, `lastresponse`, `created`, `updated`) VALUES (120, 365627, 1, 2, 1, 5, 'rituraj00@gmail.com', 'RITU RAJ SHRIWASTAW', 0, 'jharia', 'E_Registration', 'E_Registration', '', '', '8797779525', '127.0.0.1', 'open', 'Web', 1, 0, NULL, NULL, NULL, '2011-12-05 17:03:20', NULL, '2011-12-05 17:03:20', '2011-12-08 08:19:22'), (121, 147996, 1, 2, 1, 0, 'rituraj00@gmail.con', 'ritu raj shriwastaw', 11111111111, 'jharia dhanbad', 'E_Registration', 'E_Registration', '', '', '8797779525', '127.0.0.1', 'open', 'Web', 1, 0, NULL, NULL, NULL, '2011-12-08 08:27:37', NULL, '2011-12-08 08:27:37', '2011-12-08 14:33:05'), (122, 366479, 1, 2, 1, 0, 'rituraj00@gmail.com', 'ritu', 11111111111, 'jhr', 'E_Registration', 'E_Registration', '', '', '8797779525', '127.0.0.1', 'open', 'Web', 1, 0, NULL, NULL, NULL, '2011-12-08 08:34:26', NULL, '2011-12-08 08:34:26', '2011-12-08 14:33:11'), (123, 670061, 1, 2, 1, 0, 'rituraj00@gmail.com', 'ritu', 0, 'jhr', 'E_Registration', 'E_Registration', '', '', '9798315441', '127.0.0.1', 'open', 'Web', 1, 0, NULL, NULL, NULL, '2011-12-08 11:50:36', NULL, '2011-12-08 11:50:36', '2011-12-08 14:33:16'), (124, 678063, 1, 2, 1, 0, 'rituraj00@gmail.com', 'ritu raj shriwastaw', 0, 'jhr', 'E_Registration', 'E_Registration', '', '', '8797779525', '127.0.0.1', 'open', 'Web', 0, 0, NULL, NULL, NULL, '2011-12-08 14:34:18', NULL, '2011-12-08 14:34:18', '0000-00-00 00:00:00'), (125, 401483, 1, 2, 1, 0, 'zephain@gmail.com', 'zephaniah', 0, 'dhdh', 'E_Registration', 'E_Registration', '', '', '9430763987', '10.134.9.16', 'open', 'Web', 0, 0, NULL, NULL, NULL, '2011-12-09 09:34:56', NULL, '2011-12-09 09:34:56', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `ost_ticket_attachment` -- CREATE TABLE `ost_ticket_attachment` ( `attach_id` int(11) unsigned NOT NULL auto_increment, `ticket_id` int(11) unsigned NOT NULL default '0', `ref_id` int(11) unsigned NOT NULL default '0', `ref_type` enum('M','R') NOT NULL default 'M', `file_size` varchar(32) NOT NULL default '', `file_name` varchar(128) NOT NULL default '', `file_key` varchar(128) NOT NULL default '', `deleted` tinyint(1) unsigned NOT NULL default '0', `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime default NULL, PRIMARY KEY (`attach_id`), KEY `ticket_id` (`ticket_id`), KEY `ref_type` (`ref_type`), KEY `ref_id` (`ref_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=26 ; -- -- Dumping data for table `ost_ticket_attachment` -- -- -------------------------------------------------------- -- -- Table structure for table `ost_ticket_lock` -- CREATE TABLE `ost_ticket_lock` ( `lock_id` int(11) unsigned NOT NULL auto_increment, `ticket_id` int(11) unsigned NOT NULL default '0', `staff_id` int(10) unsigned NOT NULL default '0', `expire` datetime default NULL, `created` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`lock_id`), UNIQUE KEY `ticket_id` (`ticket_id`), KEY `staff_id` (`staff_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=151 ; -- -- Dumping data for table `ost_ticket_lock` -- -- -------------------------------------------------------- -- -- Table structure for table `ost_ticket_message` -- CREATE TABLE `ost_ticket_message` ( `msg_id` int(11) unsigned NOT NULL auto_increment, `ticket_id` int(11) unsigned NOT NULL default '0', `messageId` varchar(255) default NULL, `message` text NOT NULL, `headers` text, `source` varchar(16) default NULL, `ip_address` varchar(16) default NULL, `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime default NULL, PRIMARY KEY (`msg_id`), KEY `ticket_id` (`ticket_id`), KEY `msgId` (`messageId`), FULLTEXT KEY `message` (`message`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=140 ; -- -- Dumping data for table `ost_ticket_message` -- INSERT INTO `ost_ticket_message` (`msg_id`, `ticket_id`, `messageId`, `message`, `headers`, `source`, `ip_address`, `created`, `updated`) VALUES (134, 120, '', 'problem.....', '', 'Web', '127.0.0.1', '2011-12-05 17:03:20', NULL), (135, 121, '', 'problem', '', 'Web', '127.0.0.1', '2011-12-08 08:27:37', NULL), (136, 122, '', 'problem', '', 'Web', '127.0.0.1', '2011-12-08 08:34:26', NULL), (137, 123, '', 'problem', '', 'Web', '127.0.0.1', '2011-12-08 11:50:36', NULL), (138, 124, '', 'prob\r\n', '', 'Web', '127.0.0.1', '2011-12-08 14:34:18', NULL), (139, 125, '', 'asas', '', 'Web', '10.134.9.16', '2011-12-09 09:34:56', NULL); -- -------------------------------------------------------- -- -- Table structure for table `ost_ticket_note` -- CREATE TABLE `ost_ticket_note` ( `note_id` int(11) unsigned NOT NULL auto_increment, `ticket_id` int(11) unsigned NOT NULL default '0', `staff_id` int(10) unsigned NOT NULL default '0', `source` varchar(32) NOT NULL default '', `title` varchar(255) NOT NULL default 'Generic Intermal Notes', `note` text NOT NULL, `created` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`note_id`), KEY `ticket_id` (`ticket_id`), KEY `staff_id` (`staff_id`), FULLTEXT KEY `note` (`note`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=203 ; -- -- Dumping data for table `ost_ticket_note` -- INSERT INTO `ost_ticket_note` (`note_id`, `ticket_id`, `staff_id`, `source`, `title`, `note`, `created`) VALUES (198, 120, 1, 'Admin comtax', 'Complaint Assigned to Rituraj shriwastaw', 'dear pls look', '2011-12-05 17:05:00'), (199, 120, 1, 'system', 'Complaint Marked Overdue', 'Complaint flagged as overdue by the system.', '2011-12-08 08:19:25'), (200, 121, 1, 'system', 'Complaint Marked Overdue', 'Complaint flagged as overdue by the system.', '2011-12-08 14:33:11'), (201, 122, 1, 'system', 'Complaint Marked Overdue', 'Complaint flagged as overdue by the system.', '2011-12-08 14:33:16'), (202, 123, 1, 'system', 'Complaint Marked Overdue', 'Complaint flagged as overdue by the system.', '2011-12-08 14:33:21'); -- -------------------------------------------------------- -- -- Table structure for table `ost_ticket_priority` -- CREATE TABLE `ost_ticket_priority` ( `priority_id` tinyint(4) NOT NULL auto_increment, `priority` varchar(60) NOT NULL default '', `priority_desc` varchar(30) NOT NULL default '', `priority_color` varchar(7) NOT NULL default '', `priority_urgency` tinyint(1) unsigned NOT NULL default '0', `ispublic` tinyint(1) NOT NULL default '1', PRIMARY KEY (`priority_id`), UNIQUE KEY `priority` (`priority`), KEY `priority_urgency` (`priority_urgency`), KEY `ispublic` (`ispublic`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Dumping data for table `ost_ticket_priority` -- INSERT INTO `ost_ticket_priority` (`priority_id`, `priority`, `priority_desc`, `priority_color`, `priority_urgency`, `ispublic`) VALUES (1, 'low', 'Low', '#DDFFDD', 4, 1), (2, 'normal', 'Normal', '#FFFFF0', 3, 1), (3, 'high', 'High', '#FEE7E7', 2, 1), (4, 'emergency', 'Emergency', '#FEE7E7', 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `ost_ticket_response` -- CREATE TABLE `ost_ticket_response` ( `response_id` int(11) unsigned NOT NULL auto_increment, `msg_id` int(11) unsigned NOT NULL default '0', `ticket_id` int(11) unsigned NOT NULL default '0', `staff_id` int(11) unsigned NOT NULL default '0', `staff_name` varchar(32) NOT NULL default '', `response` text NOT NULL, `ip_address` varchar(16) NOT NULL default '', `created` datetime NOT NULL default '0000-00-00 00:00:00', `updated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`response_id`), KEY `ticket_id` (`ticket_id`), KEY `msg_id` (`msg_id`), KEY `staff_id` (`staff_id`), FULLTEXT KEY `response` (`response`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=44 ; -- -- Dumping data for table `ost_ticket_response` -- -- -------------------------------------------------------- -- -- Table structure for table `ost_timezone` -- CREATE TABLE `ost_timezone` ( `id` int(11) unsigned NOT NULL auto_increment, `offset` float(3,1) NOT NULL default '0.0', `timezone` varchar(255) NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=31 ; -- -- Dumping data for table `ost_timezone` -- INSERT INTO `ost_timezone` (`id`, `offset`, `timezone`) VALUES (1, -12.0, 'Eniwetok, Kwajalein'), (2, -11.0, 'Midway Island, Samoa'), (3, -10.0, 'Hawaii'), (4, -9.0, 'Alaska'), (5, -8.0, 'Pacific Time (US & Canada)'), (6, -7.0, 'Mountain Time (US & Canada)'), (7, -6.0, 'Central Time (US & Canada), Mexico City'), (8, -5.0, 'Eastern Time (US & Canada), Bogota, Lima'), (9, -4.0, 'Atlantic Time (Canada), Caracas, La Paz'), (10, -3.5, 'Newfoundland'), (11, -3.0, 'Brazil, Buenos Aires, Georgetown'), (12, -2.0, 'Mid-Atlantic'), (13, -1.0, 'Azores, Cape Verde Islands'), (14, 0.0, 'Western Europe Time, London, Lisbon, Casablanca'), (15, 1.0, 'Brussels, Copenhagen, Madrid, Paris'), (16, 2.0, 'Kaliningrad, South Africa'), (17, 3.0, 'Baghdad, Riyadh, Moscow, St. Petersburg'), (18, 3.5, 'Tehran'), (19, 4.0, 'Abu Dhabi, Muscat, Baku, Tbilisi'), (20, 4.5, 'Kabul'), (21, 5.0, 'Ekaterinburg, Islamabad, Karachi, Tashkent'), (22, 5.5, 'Bombay, Calcutta, Madras, New Delhi'), (23, 6.0, 'Almaty, Dhaka, Colombo'), (24, 7.0, 'Bangkok, Hanoi, Jakarta'), (25, 8.0, 'Beijing, Perth, Singapore, Hong Kong'), (26, 9.0, 'Tokyo, Seoul, Osaka, Sapporo, Yakutsk'), (27, 9.5, 'Adelaide, Darwin'), (28, 10.0, 'Eastern Australia, Guam, Vladivostok'), (29, 11.0, 'Magadan, Solomon Islands, New Caledonia'), (30, 12.0, 'Auckland, Wellington, Fiji, Kamchatka');