tczaude Posted September 15, 2012 Share Posted September 15, 2012 Hi When i make 1click update Proces is stop on database update and in apache error_log i have [sat Sep 15 12:51:12 2012] [error] [client 109.243.32.55] PHP Fatal error: Call to undefined function get_tab_id() in __/demo/admin12345/autoupgrade/latest/prestashop/install/upgrade/php/clean_tabs_15.php on line 264, referer: __/admin12345/index.php?controller=adminselfupgrade&conf=6&token=9366919f52d382c9b8a989036448d167 i check this on 2 sites erors still this same Link to comment Share on other sites More sharing options...
microsoul Posted September 15, 2012 Share Posted September 15, 2012 (edited) I see that many have the same problem. http://www.prestashop.com/forums/topic/187829-1-clic-upgrade-from-15015-to-15017-fail/ Edited September 15, 2012 by microsoul (see edit history) Link to comment Share on other sites More sharing options...
tczaude Posted September 15, 2012 Author Share Posted September 15, 2012 Yes i saw and add this post ass link to above topic Link to comment Share on other sites More sharing options...
greasyj Posted September 15, 2012 Share Posted September 15, 2012 I just added this 'missing' function to the clean_tabs_15.php file and re-ran the upgrade from local directory with success: function get_tab_id($class_name) { static $cache = array(); if (!isset($cache[$class_name])) $cache[$class_name] = Db::getInstance()->getValue('SELECT id_tab FROM '._DB_PREFIX_.'tab WHERE class_name = \''.pSQL($class_name).'\''); return $cache[$class_name]; } 2 Link to comment Share on other sites More sharing options...
tczaude Posted September 15, 2012 Author Share Posted September 15, 2012 This is it thanks Link to comment Share on other sites More sharing options...
microsoul Posted September 16, 2012 Share Posted September 16, 2012 It's work for me. Tanmk's Link to comment Share on other sites More sharing options...
psppth Posted September 17, 2012 Share Posted September 17, 2012 Cela a marché aussi pour moi. Beau travail. Merci. Link to comment Share on other sites More sharing options...
Recommended Posts