Ultima versione di test prima del rilascio. Molto stabile. la trovate in Download/Beta
'notte ...
| Mittente | Testo dei messaggi |
|---|---|
Post fatti : 2688 Profilo |
Scritto il : 13/11/2007 00:45 ( più di un mese ) Oggetto : Docebo 3.5 Rc1 rilasciata Ultima versione di test prima del rilascio. Molto stabile. la trovate in Download/Beta 'notte ... Messaggio modificato da : claudio.erba il : 27/10/2008 10:52 Docebo CEO and Founder www.docebo.com |
![]() Post fatti : 2482 Profilo |
Scritto il : 13/11/2007 08:52 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Beh che dire GRAZIE!!! Mi raccomando ragazzi Installate - provate - stressate ^_^ Io comincio subito! Forum Moderator docere-movere-delectare. |
Post fatti : 615 Profilo |
Scritto il : 13/11/2007 09:36 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Alè, grandi! |
![]() Post fatti : 13 Profilo |
Scritto il : 14/11/2007 01:05 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Fatal error: Call to a member function on a non-object in /membri/istruzione/docebo35/doceboCore/lib/lib.utils.php on line 933 L'errore si presenta quando voglio modificare una pagina del wiki. Sbaglio qualcosa o è un Bug
|
Post fatti : 2688 Profilo |
Scritto il : 14/11/2007 09:52 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Ciao, riesci a descrivere meglio il problema perché non riusciamo a replicarlo. Modificare la pagina dove? Lms, Cms? Grazie Cla Docebo CEO and Founder www.docebo.com |
![]() Post fatti : 7 Profilo |
Scritto il : 14/11/2007 10:44 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Writted by: karmine c.pizza@protom.com Beh che dire GRAZIE!!! ... quoto appieno .... Riporto un messaggio di errore che vien fuori quando provo ad aggiungere un'area di linguaggio ( nel mio caso italiano ) dal menù Pagine del Pannello di Amministrazione Error on _addFolder: INSERT into cms_area( idArea, idParent, path, lev, title, alias, template, mr_title, browser_title, keyword, sitedesc, link, publish, langdef, show_in_menu, show_in_macromenu ) VALUES ('','0','/root/00000001','1', 'italian' , '' , 'standard' , '' , '' , '' , '' , '' , '0' , '1' , '0' , '0' ) Incorrect integer value: '' for column 'idArea' at row 1 Ho pensato ad un errore di script sql. Il campo 'cms_area.idArea' è di tipo integer autoincrement, quindi o gli passiamo un integer - forzando la logica dell'autoincrement - o potremmo evitare che lo script passi al campo il valore vuoto. Ho testato lo script modificato su Server MySQL locale e funge,ma non so se comporta altri problemi. Posto qui la modifica ... INSERT into cms_area( idParent, path, lev, title, alias, template, mr_title, browser_title, keyword, sitedesc, link, publish, langdef, show_in_menu, show_in_macromenu ) VALUES ('0','/root/00000001','1', 'italian' , '' , 'standard' , '' , '' , '' , '' , '' , '0' , '1' , '0' , '0' ) Messaggio modificato da : tatolino il : 14/11/2007 10:45 |
![]() Post fatti : 538 Profilo |
Scritto il : 14/11/2007 15:50 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Writted by: di Iusto Stefano
Se mi ricordo bene lo STRICT di mysql per le colonne auto_increment preferisce NULL, ho modificato la lib.treedb in maniera che metta NULL per il primo auto_increment (riga 416 circa), altrimenti temo che ogni volta che si tenta di aggiungere un elemento a un albero di docebo si ha lo stesso errore. Ciao Fabio Messaggio modificato da : fabio.pirovano il : 14/11/2007 15:50 Docebo Staff - Docebo 4 released! - |
![]() Post fatti : 538 Profilo |
Scritto il : 14/11/2007 15:52 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Writted by: il tuo cognome il tuo nome
Ripropongo la domanda di claudio, lms o cms ? in ogni caso dando un occhiata al codice ho eliminato l'unico caso in cui poteva crearsi un errore di quel tipo rendendolo + error-prone Ciao Fabio Docebo Staff - Docebo 4 released! - |
![]() Post fatti : 13 Profilo |
Scritto il : 15/11/2007 00:45 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Writted by: Fabio Pirovano Writted by: il tuo cognome il tuo nome L'errore si presenta in cms e si verifica quando si clicca su modifica, mappa, cronologia versioni |
![]() Post fatti : 15 Profilo |
Scritto il : 16/11/2007 11:56 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Ciao a tutti, sto provando ad installare questa versione ma quando inizia a creare il db mi da questo errore: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ENGINE=InnoDB' at line 5 [ CREATE TABLE `cms_area_block_simpleprj` ( `block_id` int(11) NOT NULL default '0', `project_id` int(11) NOT NULL default '0', PRIMARY KEY (`block_id`,`project_id`) ) ENGINE=InnoDB ] You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ENGINE=InnoDB' at line 6 [ CREATE TABLE `cms_calendar` ( `calendar_id` int(11) NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `description` text NOT NULL, PRIMARY KEY (`calendar_id`) ) ENGINE=InnoDB ] You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ENGINE=InnoDB' at line 5 [ CREATE TABLE `cms_calendar_item` ( `calendar_id` int(11) NOT NULL default '0', `event_id` int(11) NOT NULL default '0', PRIMARY KEY (`calendar_id`,`event_id`) ) ENGINE=InnoDB ] You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ENGINE=InnoDB' at line 12 [ CREATE TABLE `cms_comment_ajax` ( `id_comment` int(11) NOT NULL auto_increment, `resource_type` varchar(50) NOT NULL default '', `external_key` varchar(200) NOT NULL default '', `id_author` int(11) NOT NULL default '0', `posted_on` datetime NOT NULL default '0000-00-00 00:00:00', `textof` text NOT NULL, `history_tree` varchar(255) NOT NULL default '', `id_parent` int(11) NOT NULL default '0', `moderated` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id_comment`) ) ENGINE=InnoDB ] You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ENGINE=InnoDB' at line 7 [ CREATE TABLE `cms_simpleprj` ( `project_id` int(11) NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `description` text NOT NULL, `ord` int(11) NOT NULL default '0', PRIMARY KEY (`project_id`) ) ENGINE=InnoDB ] You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ENGINE=InnoDB' at line 9 [ CREATE TABLE `cms_simpleprj_file` ( `file_id` int(11) NOT NULL auto_increment, `project_id` int(11) NOT NULL default '0', `fname` varchar(255) NOT NULL default '', `title` varchar(255) NOT NULL default '', `description` text NOT NULL, `author` int(11) NOT NULL default '0', PRIMARY KEY (`file_id`) ) ENGINE=InnoDB ] You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ENGINE=InnoDB' at line 7 [ CREATE TABLE `cms_simpleprj_task` ( `task_id` int(11) NOT NULL auto_increment, `project_id` int(11) NOT NULL default '0', `description` text NOT NULL, `complete` tinyint(1) NOT NULL default '0', PRIMARY KEY (`task_id`) ) ENGINE=InnoDB ] Il database è mysql 4.x.x, web server IIS, S.O. Win 2k server potete aiutarmi? grazie |
![]() Post fatti : 2482 Profilo |
Scritto il : 16/11/2007 14:34 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Hai abilitato le estensioni per le tabelle innodb? Guarda nel my.iniForum Moderator docere-movere-delectare. |
![]() Post fatti : 15 Profilo |
Scritto il : 16/11/2007 17:57 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Ora ho risolto, ma non era quello (grazie lo stesso). Credo che ci sia un problema nello script SQL: install\data\sql\cms.sql il comando engine=innodb usato per la creazione di alcune tabelle, non è corretto. Ci vuole type=innodb e tutto funziona. Forse è un incompatibilità dovuta a mysql 4.0.x.????? |
Post fatti : 2688 Profilo |
Scritto il : 16/11/2007 19:21 ( più di un mese ) Oggetto : Re: Docebo 3.5 Rc1 rilasciata Chiudo il thread che rischi a di diventare un duplicato di segnalazione BUG Cla Docebo CEO and Founder www.docebo.com |