473,466 Members | 1,333 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

MySQL sintax error

matheussousuke
249 New Member
Hi, I'm currently trying to fix this db, it gives me sintax error all the time, I checked it from down to up, nothing worked.

Could anyone please give me a little hand? :)


Expand|Select|Wrap|Line Numbers
  1. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_categories` (
  2.   `category_id` bigint(20) NOT NULL AUTO_INCREMENT,
  3.   `cname` text NOT NULL,
  4.   `rep_id` bigint(20) NOT NULL,
  5.   UNIQUE KEY `category_id` (`category_id`)
  6. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  7.  
  8. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_config` (
  9.   `id` int(11) NOT NULL,
  10.   `hdreply` text NOT NULL,
  11.   `hdurl` text NOT NULL,
  12.   `notifyuser` int(11) NOT NULL,
  13.   `enablekb` int(11) NOT NULL,
  14.   `defaultpriority` bigint(20) NOT NULL,
  15.   `defaultstatus` bigint(20) NOT NULL,
  16.   `closestatus` bigint(20) NOT NULL,
  17.   `allowanonymous` int(11) NOT NULL,
  18.   `defaultlang` int(11) NOT NULL,
  19.   `pagerpriority` int(11) NOT NULL,
  20.   `userselect` int(11) NOT NULL,
  21.   UNIQUE KEY `id` (`id`)
  22. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
  23.  
  24. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_departments` (
  25.   `department_id` bigint(20) NOT NULL AUTO_INCREMENT,
  26.   `dname` text NOT NULL,
  27.   UNIQUE KEY `department_id` (`department_id`)
  28. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  29.  
  30. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_emailmsg` (
  31.   `id` int(11) NOT NULL AUTO_INCREMENT,
  32.   `type` text NOT NULL,
  33.   `subject` text NOT NULL,
  34.   `body` longtext NOT NULL,
  35.   PRIMARY KEY (`id`)
  36. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
  37.  
  38. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_langstrings` (
  39.   `id` int(11) NOT NULL AUTO_INCREMENT,
  40.   `lang_id` bigint(20) NOT NULL,
  41.   `variable` text NOT NULL,
  42.   `langtext` longtext NOT NULL,
  43.   PRIMARY KEY (`id`)
  44. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=538 ;
  45.  
  46. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_language` (
  47.   `id` bigint(20) NOT NULL AUTO_INCREMENT,
  48.   `langname` text NOT NULL,
  49.   `localized` text NOT NULL,
  50.   PRIMARY KEY (`id`)
  51. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
  52.  
  53. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_notes` (
  54.   `note_id` int(11) NOT NULL AUTO_INCREMENT,
  55.   `id` bigint(20) NOT NULL,
  56.   `note` longtext NOT NULL,
  57.   `adddate` datetime NOT NULL,
  58.   `uid` text NOT NULL,
  59.   `priv` int(11) NOT NULL,
  60.   PRIMARY KEY (`note_id`),
  61.   FULLTEXT KEY `note` (`note`)
  62. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  63.  
  64. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_attachments` (
  65.   `id` int(11) NOT NULL AUTO_INCREMENT,
  66.   `note_id` int(11) NOT NULL,
  67.   `name` text NOT NULL,
  68.   `type` text NOT NULL,
  69.   `size` int(11) NOT NULL,
  70.   `content` MEDIUMBLOB NOT NULL,
  71.   PRIMARY KEY(`id`)
  72. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  73.  
  74. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_priority` (
  75.   `priority_id` bigint(20) NOT NULL AUTO_INCREMENT,
  76.   `pname` text NOT NULL,
  77.   UNIQUE KEY `priority_id` (`priority_id`)
  78. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
  79.  
  80. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_problems` (
  81.   `id` bigint(20) NOT NULL AUTO_INCREMENT,
  82.   `uid` text NOT NULL,
  83.   `uemail` text NOT NULL,
  84.   `ulocation` text NOT NULL,
  85.   `uphone` text NOT NULL,
  86.   `rep` bigint(20) NOT NULL,
  87.   `status` bigint(20) NOT NULL,
  88.   `time_spent` bigint(20) NOT NULL,
  89.   `category` bigint(20) NOT NULL,
  90.   `close_date` datetime NOT NULL,
  91.   `department` bigint(20) NOT NULL,
  92.   `title` text NOT NULL,
  93.   `description` text NOT NULL,
  94.   `solution` text NOT NULL,
  95.   `start_date` datetime NOT NULL,
  96.   `priority` bigint(20) NOT NULL,
  97.   `entered_by` bigint(20) NOT NULL,
  98.   `kb` bigint(20) NOT NULL,
  99.   UNIQUE KEY `id` (`id`),
  100.   KEY `rep` (`rep`,`status`,`category`,`department`,`priority`),
  101.   FULLTEXT KEY `solution` (`solution`),
  102.   FULLTEXT KEY `description` (`description`),
  103.   FULLTEXT KEY `title` (`title`)
  104. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  105.  
  106. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_status` (
  107.   `id` int(11) NOT NULL AUTO_INCREMENT,
  108.   `status_id` bigint(20) NOT NULL,
  109.   `sname` text NOT NULL,
  110.   PRIMARY KEY (`id`)
  111. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=25 ;
  112.  
  113. CREATE TABLE IF NOT EXISTS `#__huruhelpdesk_users` (
  114.   `id` int(11) NOT NULL AUTO_INCREMENT,
  115.   `joomla_id` int(11) NOT NULL,
  116.   `isuser` int(11) NOT NULL,
  117.   `isrep` int(11) NOT NULL,
  118.   `isadmin` int(11) NOT NULL,
  119.   `phone` text NOT NULL,
  120.   `pageraddress` text NOT NULL,
  121.   `phonemobile` text NOT NULL,
  122.   `phonehome` text NOT NULL,
  123.   `location1` text NOT NULL,
  124.   `location2` text NOT NULL,
  125.   `department` bigint(20) NOT NULL,
  126.   `language` bigint(20) NOT NULL,
  127.   `viewreports` int(11) NOT NULL,
  128.   UNIQUE KEY `id` (`id`)
  129. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  130.  
  131.  
  132. --
  133. -- Dumping data for table `#__huruhelpdesk_config`
  134. --
  135.  
  136. INSERT IGNORE INTO `#__huruhelpdesk_config` (`id`, `hdreply`, `hdurl`, `notifyuser`, `enablekb`, `defaultpriority`, `defaultstatus`, `closestatus`, `allowanonymous`, `defaultlang`, `pagerpriority`, `userselect`) VALUES
  137. (1, 'helpdesk@domain.com', 'http://server.domain.com/', 1, 1, 3, 15, 24, 1, 1, 10, 1);
  138.  
  139. --
  140. -- Dumping data for table `#__huruhelpdesk_emailmsg`
  141. --
  142.  
  143. INSERT IGNORE INTO `#__huruhelpdesk_emailmsg` (`id`, `type`, `subject`, `body`) VALUES
  144. (1, 'repclose', 'HELPDESK: Problem [problemid] Closed', 'The following problem has been closed.  You can view the problem at [url]\r\n\r\nPROBLEM DETAILS\r\n---------------\r\nID: [problemid]\r\nUser: [uid]\r\nDate: [startdate]\r\nTitle: [title]\r\nPriority: [priority]\r\nCategory: [category]\r\n\r\nSOLUTION\r\n--------\r\n[solution]'),
  145. (2, 'repnew', 'HELPDESK: Problem [problemid] Assigned', 'The following problem has been assigned to you.  You can update the problem at [url]\r\n\r\nPROBLEM DETAILS\r\n---------------\r\nID: [problemid]\r\nDate: [startdate]\r\nTitle: [title]\r\nPriority: [priority]\r\nCategory: [category]\r\n\r\nUSER INFORMATION\r\n----------------\r\nUsername: [uid]\r\nEmail: [uemail]\r\nPhone: [phone]\r\nLocation: [location]\r\nDepartment: [department]\r\n\r\nDESCRIPTION\r\n-----------\r\n[description]'),
  146. (3, 'reppager', 'HELPDESK: Problem [problemid] Assigned/Updated', 'Title:[title]\r\nUser:[uid]\r\nPriority:[priority]'),
  147. (4, 'repupdate', 'HELPDESK: Problem [problemid] Updated', 'The following problem has been updated.  You can view the problem at [url]\r\n\r\nPROBLEM DETAILS\r\n---------------\r\nID: [problemid]\r\nUser: [uid]\r\nDate: [startdate]\r\nTitle: [title]\r\n\r\nDESCRIPTION\r\n-----------\r\n[description]\r\n\r\nNOTES\r\n-----------\r\n[notes]'),
  148. (5, 'userclose', 'HELPDESK: Problem [problemid] Closed', 'Your help desk problem has been closed.  You can view the solution below or at: [url]\r\n\r\nPROBLEM DETAILS\r\n---------------\r\nID: [problemid]\r\nUser: [uid]\r\nDate: [startdate]\r\nTitle: [title]\r\n\r\nSOLUTION\r\n--------\r\n[solution]'),
  149. (6, 'usernew', 'HELPDESK: Problem [problemid] Created', 'Thank you for submitting your problem to the help desk.  You can view or update the problem at: [url]\r\n\r\nPROBLEM DETAILS\r\n---------------\r\nID: [problemid]\r\nUser: [uid]\r\nDate: [startdate]\r\nTitle: [title]\r\n\r\nDESCRIPTION\r\n-----------\r\n[description]'),
  150. (7, 'userupdate', 'HELPDESK: Problem [problemid] Updated', 'Your help desk problem has been updated.  You can view the problem at: [url]\r\n\r\nPROBLEM DETAILS\r\n---------------\r\nID: [problemid]\r\nUser: [uid]\r\nDate: [startdate]\r\nTitle: [title]\r\n\r\nDESCRIPTION\r\n-----------\r\n[description]\r\n\r\nNOTES\r\n-----------\r\n[notes]');
  151.  
  152. --
  153. -- Dumping data for table `#__huruhelpdesk_langstrings`
  154. --
  155.  
  156. INSERT IGNORE INTO `#__huruhelpdesk_langstrings` (`id`, `lang_id`, `variable`, `langtext`) VALUES
  157. (54, 1, 'Classification', 'Classificação'),
  158. (59, 1, 'Close', 'Fechar'),
  159. (60, 1, 'CloseDate', 'Data de fechamento'),
  160. (72, 1, 'ContactInformation', 'Informações do Contato'),
  161. (79, 1, 'DateSubmitted', 'Incluído'),
  162. (91, 1, 'Department', 'Problema'),
  163. (95, 1, 'Description', 'Descrição'),
  164. (104, 1, 'EditInformation', 'Editar suas Informações'),
  165. (108, 1, 'EMail', 'E-Mail'),
  166. (109, 1, 'EmailAddress', 'Endereço de E-Mail'),
  167. (120, 1, 'EndDate', 'Data Final'),
  168. (121, 1, 'EnterAdditionalNotes', 'Adicionar Comentário'),
  169. (125, 1, 'EnteredBy', 'Adicionado por'),
  170. (126, 1, 'EnterinKnowledgeBase', 'Adicionar a Base de Conhecimento'),
  171. (135, 1, 'From', 'De'),
  172. (142, 1, 'HideFromEndUser', 'Ocultar nova nota do usuário final'),
  173. (144, 1, 'ID', 'Código'),
  174. (146, 1, 'In', 'Logon'),
  175. (148, 1, 'InOutBoard', 'Exibir Usuários Logados no sistema'),
  176. (174, 1, 'Location', 'Local (Filial)'),
  177. (191, 1, 'minutes', 'minutos'),
  178. (199, 1, 'NewProblem', 'Novo Chamado'),
  179. (207, 1, 'Noresultsfound', 'Nenhum chamado encontrado'),
  180. (210, 1, 'Notes', 'Notas'),
  181. (218, 1, 'OpenProblems', 'Abrir Chamados'),
  182. (219, 1, 'OpenProblemsfor', 'Chamado Aberto para'),
  183. (222, 1, 'Or', 'Ou'),
  184. (225, 1, 'Out', 'Logoff'),
  185. (237, 1, 'Phone', 'Telefone (direto)'),
  186. (248, 1, 'Priority', 'Problema'),
  187. (257, 1, 'ProblemID', 'Ver Chamado código'),
  188. (259, 1, 'ProblemInformation', 'Informações do Chamado'),
  189. (263, 1, 'Problems', 'Chamados'),
  190. (277, 1, 'ReopenProblem', 'Reabrir Problema'),
  191. (278, 1, 'Rep', 'Suporte'),
  192. (282, 1, 'Reports', 'Relatórios'),
  193. (286, 1, 'Required', 'Requerido'),
  194. (292, 1, 'Save', 'Enviar'),
  195. (294, 1, 'Search', 'Pesquisar'),
  196. (296, 1, 'SearchFields', 'Pesquisar por Campos'),
  197. (297, 1, 'SearchProblems', 'Pesquisar Chamados'),
  198. (298, 1, 'SearchResults', 'Perquisar por Resultados'),
  199. (299, 1, 'SearchtheKnowledgeBase', 'Pesquisar na Base de Conhecimento'),
  200. (302, 1, 'SelectCategory', 'Selecione sua Empresa'),
  201. (303, 1, 'SelectDepartment', 'Selecionar Problema'),
  202. (304, 1, 'SelectUser', 'Selecionar Usuário'),
  203. (31, 1, 'AssignedTo', 'Atribuído á'),
  204. (313, 1, 'Solution', 'Solução'),
  205. (317, 1, 'StartDate', 'Data de Início'),
  206. (319, 1, 'Status', 'Status'),
  207. (329, 1, 'Subject', 'Assunto'),
  208. (330, 1, 'Submit', 'Abrir'),
  209. (332, 1, 'SubmitNewProblem', 'Abrir Chamado'),
  210. (335, 1, 'SupportRep', 'Support Rep'),
  211. (352, 1, 'Time', 'Tempo'),
  212. (353, 1, 'TimeSpent', 'Tempo Gasto'),
  213. (354, 1, 'Title', 'Título'),
  214. (356, 1, 'Total', 'Total'),
  215. (373, 1, 'User', 'Usuário'),
  216. (376, 1, 'UserName', 'Login'),
  217. (385, 1, 'View', 'Ver'),
  218. (386, 1, 'ViewProblemList', 'Exibir Todos os Chamados Abertos'),
  219. (387, 1, 'Viewproblemsfor', 'Ver Chamado atribuídos para'),
  220. (394, 1, 'ViewAssignedProblems', 'Meus Chamados'),
  221. (395, 1, 'ViewSubmittedProblems', 'Meus Chamados'),
  222. (397, 1, 'ViewProblemsFromLast', 'Ver Chamados dos últimos'),
  223. (398, 1, 'days', 'dias'),
  224. (399, 1, 'Activity', 'Atividade'),
  225. (400, 1, 'Home', 'Página Inicial'),
  226. (401, 1, 'Refresh', 'Atualizar'),
  227. (402, 1, 'NoLimit', '(Sem Limite)'),
  228. (403, 1, 'Back', 'Voltar'),
  229. (404, 1, 'ProblemNumber', 'Chamado Nº #'),
  230. (405, 1, 'ProblemSaved', 'Chamado Salvo'),
  231. (406, 1, 'ErrorSavingProblem', 'Erro ao salvar registro: inválido ou faltando campos obrigatórios.'),
  232. (409, 1, 'DefaultRep', 'Resposta Padrão'),
  233. (410, 1, 'NotFound', 'Nenhum chamado encontrado'),
  234. (411, 1, 'EnterVerification', 'Verificação'),
  235. (412, 1, 'Name', 'Nome Completo'),
  236. (413, 1, 'Admin', 'Admin'),
  237. (414, 1, 'ShowReps', 'Exibir Técnicos'),
  238. (415, 1, 'ShowAll', 'Apresentar Tudo'),
  239. (416, 1, 'RepsAdmins', 'Somente Suporte e Administradores'),
  240. (417, 1, 'AllUsers', 'Todos os Usuários'),
  241. (418, 1, 'SearchCriteria', 'Pesquisar por Critério'),
  242. (419, 1, 'Reset', 'Reiniciar'),
  243. (421, 1, 'To', 'Para'),
  244. (422, 1, 'SearchText', 'Pesquisar por Texto'),
  245. (423, 1, 'Browse', 'Navegar'),
  246. (424, 1, 'Cancel', 'Cancelar'),
  247. (425, 1, 'NewSearch', 'Nova Pesquisa'),
  248. (426, 1, 'Results', 'Resultados'),
  249. (427, 1, 'ProblemsFound', 'Chamado(s) Encontrado'),
  250. (428, 1, 'EnterSearch', 'Digite seu critério de busca e clique no botão Procurar'),
  251. (429, 1, 'EnterReport', 'Digite o critério de relatório e clique no botão Exibir'),
  252. (430, 1, 'AvailableReports', 'Relatórios Disponíveis'),
  253. (431, 1, 'DateRange', 'Intervalo de Data'),
  254. (432, 1, 'AverageTime', 'Tempo médio'),
  255. (433, 1, 'PercentProblemTotal', '% de Problemas'),
  256. (434, 1, 'PercentTimeTotal', '% do tempo'),
  257. (435, 1, 'min', 'min'),
  258. (436, 1, 'Unknown', 'Desconhecido'),
  259. (437, 1, 'ActivitySummary', 'Resumo de Atividades'),
  260. (438, 1, 'Modified', 'Modificado'),
  261. (439, 1, 'through', 'Completo'),
  262. (440, 1, 'MailProblemID', 'ID do Chamado'),
  263. (441, 1, 'MailTitle', 'Título do Chamado/Assunto'),
  264. (442, 1, 'MailDescription', 'Descrição do Chamado'),
  265. (443, 1, 'MailUID', 'Usuário da pessoa que reportou este problema'),
  266. (444, 1, 'MailUEmail', 'Email da pessoa que reportou este problema'),
  267. (445, 1, 'MailPhone', 'Numero do telefone da usuário que abrir este chamado'),
  268. (446, 1, 'MailLocation', 'Localização da pessoa que abriu o chamado'),
  269. (447, 1, 'MailDepartment', 'Empresa da pessoa que abriu o Chamado'),
  270. (448, 1, 'MailPriority', 'Prioridades do Problema'),
  271. (449, 1, 'MailCategory', 'Empresa Cliente que abriu o Chamado'),
  272. (45, 1, 'Category', 'Empresa'),
  273. (450, 1, 'MailStartDate', 'Data quando o chamado foi aberto'),
  274. (451, 1, 'MailURL', 'URL para o problema'),
  275. (452, 1, 'MailSolution', 'Solução do Problema'),
  276. (453, 1, 'MailNotes', 'Comentários sobe o Chamado'),
  277. (454, 1, 'ProblemsSubmittedBy', 'Chamados Abertos por'),
  278. (456, 1, 'for', 'para'),
  279. (457, 1, 'ForPrevious', 'para o anterior'),
  280. (458, 1, 'All', 'Tudo'),
  281. (459, 1, 'OpenProblemsLC', 'Abrir Chamados'),
  282. (460, 1, 'Print', 'Imprimir'),
  283. (461, 1, 'UserProfile', 'Perfil do Usuário'),
  284. (462, 1, 'JoomlaUserInfo', 'Informações do Usuário no Joomla!'),
  285. (463, 1, 'HuruUserInfo', 'Perfil do Usuário'),
  286. (464, 1, 'HomePhone', 'Telefone Residencial'),
  287. (465, 1, 'MobilePhone', 'Telefone Celular'),
  288. (466, 1, 'PagerAddress', 'Endereço Ramal'),
  289. (467, 1, 'Location1', 'Local 1'),
  290. (468, 1, 'Location2', 'Local 2'),
  291. (469, 1, 'Language', 'Idioma'),
  292. (470, 1, 'ManageCategories', 'Administrar Empresas'),
  293. (471, 1, 'EditCategory', 'Editar Empresa'),
  294. (472, 1, 'CategoryName', 'Nome da Empresa Cliente'),
  295. (473, 1, 'Default', 'Padrão'),
  296. (474, 1, 'GeneralConfiguration', 'Configuração Geral'),
  297. (475, 1, 'ReplyAddress', 'Endereço de Resposta'),
  298. (476, 1, 'BaseURL', 'URL do Sistema de Chamados'),
  299. (477, 1, 'NotifyUserOnCaseUpdate', 'Notificar usuário em caso de atualização'),
  300. (478, 1, 'AllowAnonymousCases', 'Permitir Chamados Anônimos'),
  301. (479, 1, 'AllowUserSelectOnNewCases', 'Permitir que o usuário abra um novo chamado em outro nome'),
  302. (480, 1, 'KnowledgeBaseViewAuthority', 'Exibir autor da Base de Conhecimento'),
  303. (481, 1, 'Disable', 'Desativar'),
  304. (482, 1, 'RepsOnly', 'Somente Suporte'),
  305. (483, 1, 'UsersAndReps', 'Usuários e Suporte'),
  306. (484, 1, 'Anyone', 'Qualquer um'),
  307. (485, 1, 'DefaultPriority', 'Prioridade Padrão'),
  308. (486, 1, 'PagerPriority', 'Página de Prioridades'),
  309. (487, 1, 'DefaultStatus', 'Situação Padrão'),
  310. (488, 1, 'ClosedStatus', 'Chamados Fechados'),
  311. (489, 1, 'DefaultLanguage', 'Idioma Padrão'),
  312. (490, 1, 'EmailMessages', 'Mensagens de Email'),
  313. (491, 1, 'Users', 'Usuários'),
  314. (492, 1, 'Departments', 'Departamentos'),
  315. (493, 1, 'Categories', 'Empresas'),
  316. (494, 1, 'Priorities', 'Prioridades'),
  317. (495, 1, 'Statuses', 'Estatutos'),
  318. (496, 1, 'Languages', 'Idiomas'),
  319. (497, 1, 'About', 'Sobre'),
  320. (498, 1, 'Administration', 'Administração'),
  321. (499, 1, 'ManageDepartments', 'Administrar Empresas'),
  322. (500, 1, 'DepartmentName', 'Nome do Problema'),
  323. (501, 1, 'EditDepartment', 'Editar Departamento'),
  324. (502, 1, 'ManageEmailMessages', 'Administrar Mensagens de E-mail'),
  325. (503, 1, 'Type', 'Tipo'),
  326. (504, 1, 'Body', 'Corpo'),
  327. (505, 1, 'Edit...', 'Editar...'),
  328. (506, 1, 'EditEmailMessage', 'Editar Mensagem de Email'),
  329. (507, 1, 'AvailableSubstitutions', 'Substituições Disponíveis'),
  330. (508, 1, 'ManageLanguages', 'Administrar Idiomas'),
  331. (509, 1, 'LanguageName', 'Nome do Idioma'),
  332. (510, 1, 'Localized', 'Localizado'),
  333. (511, 1, 'EditLanguage', 'Editar Idioma'),
  334. (512, 1, 'LanguageStrings', 'Expressões do Idioma'),
  335. (513, 1, 'ManagePriorities', 'Administrar Prioridades'),
  336. (514, 1, 'PriorityName', 'Nome do Problema'),
  337. (515, 1, 'EditPriority', 'Editar Prioridade'),
  338. (516, 1, 'ManageStatuses', 'Administrar Estatutos'),
  339. (517, 1, 'Rank', 'Rank'),
  340. (518, 1, 'StatusName', 'Nome do Status'),
  341. (519, 1, 'EditStatus', 'Editar Status'),
  342. (520, 1, 'ManageLanguageStrings', 'Administrar Expressões do Idioma'),
  343. (521, 1, 'LanguageID', 'Código do Idioma'),
  344. (522, 1, 'Variable', 'Variável'),
  345. (523, 1, 'Text', 'Texto'),
  346. (524, 1, 'EditString', 'Editar Palavra'),
  347. (525, 1, 'ManageUsers', 'Administrar Usuários'),
  348. (526, 1, 'HuruID', 'Código do Sistema de Chamados'),
  349. (527, 1, 'JoomlaID', 'Código Joomla!'),
  350. (528, 1, 'SyncJoomlaUsers', 'Sincronizar Usuários do Joomla!'),
  351. (529, 1, 'SyncJoomlaUsersConfirm', 'Isto irá sincronizar o Huru com a tabela de usuários do Joomla! Tabela de usuários - importação de contas no Huru conforme necessário. No Joomla! contas de usuário serão alteradas.'),
  352. (530, 1, 'EditUser', 'Editar Usuário'),
  353. (531, 1, 'IsUser', 'Usuário Cliente'),
  354. (532, 1, 'IsRep', 'Técnico de Suporte'),
  355. (533, 1, 'IsAdmin', 'Administrador'),
  356. (534, 1, 'ViewReports', 'Ver Relatórios'),
  357. (535, 1, 'UserSuperAdminNote', '(Nota: Esta definição é ignorada para Joomla! Super Administradores que sempre estão Huru Helpdesk)'),
  358. (536, 1, 'DefaultAssignment', 'Empresa Padrão'),
  359. (537, 1, 'PageTitle', 'Sistema de Chamados'),
  360. (538, 1, 'SelectOverride', 'Substitui informação de contato acima'),
  361. (539, 1, 'CannotDeleteClosedStatus', 'Não é possível excluir status definido como Status Fechado na Configração Geral'),
  362. (540, 1, 'Go', 'Ir'),
  363. (541, 1, 'ProblemDeleted', 'Chamado Deletado'),
  364. (542, 1, 'ProblemNotDeleted', 'Erro ao Deletar Chamado'),
  365. (543, 1, 'DeleteProblem', 'Excluir Chamado #'),
  366. (544, 1, 'Delete', 'Excluir'),
  367. (545, 1, 'ProblemCreated', 'Chamado Criado'),
  368. (546, 1, 'AttachFileToNote',’Anexar arquivo à nota'),
  369. (547, 1, 'Attachment’,'Anexo'),
  370. (548, 1, 'AttachmentFileNoteFound','Arquivo anexado não encontrado'),
  371. (549, 1, 'DefaultFileAttachmentNote','Arquivo anexado'),
  372. (550, 1, 'ErrorSavingAttachment','Erro ao salvar anexo'),
  373. (551, 1, 'NotImplemented','Não implementado'),
  374. (552, 1, 'FileTypeNotAllowed', 'Tipo de arquivo não permitido'),
  375. (553, 1, 'FileTooLarge', 'Arquivo muito grande'),
  376. (554, 1, 'UnknownError', 'Erro desconhecido'),
  377. (555, 1, 'NotificationSenderName', 'Notificação de nome do remetente'),
  378. (556, 1, 'AllowFileAttachments', 'Permitir anexos de arquivos aos processos '),
  379. (557, 1, 'AllowedAttachmentExtensions', 'Extensões de anexo permitidas'),
  380. (558, 1, 'ExtensionExample', 'Lista (separada por vírgula) de extensões de arquivos permitidos (precedidos de pontos) [exemplo: .jpg,.png,.txt]'),
  381. (559, 1, 'MaximumAttachmentSize', 'Tamanho máximo de anexo'),
  382. (560, 1, 'Bytes', 'bytes'),
  383. (561, 1, 'AttachmentSizeWarning', 'Tamanho máximo é de 16MB. A versão do seu sistema PHP pode estar configureda para um valor inferior à 16MB. Verifique seu arquivo php.ini'),
  384. (562, 1, 'AttachmentDownloadPermissions', 'Permitir download de anexo?'),
  385. (563, 1, 'AttachmentDeleted', 'Anexo deletado'),
  386. (564, 1, 'AttachmentNotDeleted', 'Erro ao deletar anexo'),
  387. (565, 1, 'MaximumAttachmentAge', 'Remover automaticamente os anexos antigos depois'),
  388. (566, 1, 'SetToZero', 'Coloque 0 para desativar a remoção automática'),
  389. (567, 1, 'MailFullname', 'Nome complete do usuário que inciou o processo (conta de usuário do sistema Joomla)'),
  390. (568, 1, 'NotifyAdminOnNewCase','Endereço de Email para notificar administrador a cada processo criado'),
  391. (569, 1, 'LeaveBlank', 'Deixe em branco para desativar'),
  392. (570, 1, 'Notifications', 'Notifications'),
  393. (571, 1, 'Permissions', 'Permissões'),
  394. (572, 1, 'Defaults', 'Padrões'),
  395. (573, 1, 'FileAttachments', 'Anexos de arquivos'),
  396. (574, 1, 'DisplayedFields', 'Campos exibidos'),
  397. (575, 1, 'DefaultDepartment', 'Departamento padrão'),
  398. (576, 1, 'DefaultCategory', 'Categoria padrão'),
  399. (577, 1, 'Show', 'Mostrar'),
  400. (578, 1, 'Set', 'Definir'),
  401. (579, 1, 'IfNotSetable', 'Se não estiver visível/definido por todos, um padrão para este campo deverá ser definido acima'),
  402. (580, 1, 'Updated', 'Atualizado'); 
  403. --
  404. -- Dumping data for table `#__huruhelpdesk_language`
  405. --
  406.  
  407. INSERT INTO `jos_huruhelpdesk_language` (`id`, `langname`, `localized`) VALUES
  408. (1, 'Português Brasil', 'Português Brasil');
  409.  
  410. --
  411. -- Dumping data for table `#__huruhelpdesk_priority`
  412. --
  413.  
  414. INSERT IGNORE INTO `#__huruhelpdesk_priority` (`priority_id`, `pname`) VALUES
  415. (6, ' 6 – MUITO ALTA '),
  416. (5, ' 5 - ALTA '),
  417. (4, ' 4 - ELEVADA '),
  418. (3, ' 3 - NORMAL '),
  419. (2, ' 2 - BAIXA '),
  420. (1, '1 - MUITO BAIXA'),
  421. (10, ' 10 - EMERGENCIA - PÁGINA '),
  422. (9, ' 9 - EMERGENCIA – SEM PÁGINA ');
  423.  
  424. --
  425. -- Dumping data for table `#__huruhelpdesk_status`
  426. --
  427.  
  428. INSERT IGNORE INTO `#__huruhelpdesk_status` (`id`, `status_id`, `sname`) VALUES
  429. (22, 65, 'TESTANDO'),
  430. (21, 63, 'AGUARDANDO'),
  431. (20, 60, 'RETIDO'),
  432. (19, 55, 'ESCALADO'),
  433. (18, 50, 'EM PROGRESSO'),
  434. (17, 20, 'ABERTO'),
  435. (16, 10, 'RECEBIDO'),
  436. (15, 1, 'NOVO'),
  437. (24, 100, 'ENCERRADO');
  438.  
  439.  
Jul 6 '10 #1
3 1968
zorgi
431 Recognized Expert Contributor
line: 368.(546, 1, 'AttachFileToNote',’Anexar arquivo à nota')

’ and ' is not the same

Same problem on

line: 369. (547, 1, 'Attachment’,'Anexo')
Jul 6 '10 #2
matheussousuke
249 New Member
Thanks, you helped me a lot ^^
Jul 6 '10 #3
zorgi
431 Recognized Expert Contributor
You welcome

Glad to be of help :)
Jul 6 '10 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: affiori | last post by:
Can anybody shed some light on this error? When I try to create tables for the database for phpnuke using the supplied sql file when i get toe "nuke_contactbook" table, I get back this: =========...
0
by: Mike | last post by:
I thought I'd share this since it popped up today. gcc -DDEFAULT_CHARSET_HOME=\"/usr/local/mysql/\" -DDATADIR=\"/usr/local/mysql//var\" -DSHAREDIR=\"/usr/local/mysql//share/mysql\"...
0
by: Von Bailey | last post by:
I am new to MySQL and I have having a problem creating databases. First some preliminaries... Operating System - Windows XP Professional MySQL Version - 4.0.20a-debug Installed in "Services" to...
0
by: redfez | last post by:
I just installed mysql-max-4.0.20-sun-solaris2.8-sparc and ran the mysql_install_db script. I try to access a mysql db using a Lisp app that accesses the myodbc driver through our Lisp's odbc...
1
by: simon | last post by:
This works in VB: <td <%# myFunction(DataBinder.Eval(Container.DataItem,"column1"))%>> but in C# doesn't. What is the right sintax to include some text between the html tag in C#? I can't...
2
by: Fusion | last post by:
Okay, when ever (on Invision Power Board's PM option) we try to send a PM to any other member on the forum, we all get this message... mySQL query error: SELECT m.mgroup_others, m.id, m.name,...
1
by: Bilwin | last post by:
Hi friends, i am a newbie to mysql. i am using mysql 5.0 and db designer 4. I have created a schema in DB designer and i connected to mysql 5.0 server. When i tried to exceute the sql script in...
1
JohanK
by: JohanK | last post by:
Hi there, I really need some help setting up mySQL. I'm running redhat enteprise linux 3.1 and the following rpm's are installed, mysql-3.23.58-16.RHEL3.1 libdbi-dbd-mysql-0.6.5-5...
1
by: Steve Ametjan | last post by:
I've been trying to get MySQL-python to install on Leopard for the past couple of days, and I keep running into relatively the same error. I'm hoping that someone on this list will be able to...
1
by: nkosinathi | last post by:
Hi Guys im trying to write an import class where i can import information from .CSV file into my database. I am getting the following error Errors: You have an error in your SQL syntax. Check the...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.