tdr170 Posted March 26, 2013 Share Posted March 26, 2013 (edited) Now I can't install 1.5.4.0 (3) get this error message Cannot install language "English (English)" 25% Create settings.inc file Create database tables Create default shop and languages Cannot install language "English (English)" An error occured during installation... You can use the links on the left column to go back to the previous steps, or restart the installation process by clicking here. Edited March 26, 2013 by tdr170 (see edit history) Link to comment Share on other sites More sharing options...
benjamin utterback Posted March 26, 2013 Author Share Posted March 26, 2013 Now I can't install 1.5.4.0 (3) get this error message Cannot install language "English (English)" 25% Create settings.inc file Create database tables Create default shop and languages Cannot install language "English (English)" An error occured during installation... You can use the links on the left column to go back to the previous steps, or restart the installation process by clicking here. Is that the version that you downloaded? or the version that I sent you? Link to comment Share on other sites More sharing options...
tdr170 Posted March 26, 2013 Share Posted March 26, 2013 The version you sent me, I received today. Thanks. Link to comment Share on other sites More sharing options...
benjamin utterback Posted March 26, 2013 Author Share Posted March 26, 2013 Hello, try it with the version you download here, http://www.prestashop.com/en/download Link to comment Share on other sites More sharing options...
tdr170 Posted March 26, 2013 Share Posted March 26, 2013 No problem, this will take some time as it takes some time to upload everything. Link to comment Share on other sites More sharing options...
microsoul Posted March 26, 2013 Share Posted March 26, 2013 I have update from 1.5.3.1 to 1.5.4 and have this error: [ERROR] SQL 1.5.4.0 1091 in ALTER TABLE `ps_stock_available` DROP INDEX `product_sqlstock`: Can't DROP 'product_sqlstock'; check that column/key exists The TAG link don't display a list of article. Link to comment Share on other sites More sharing options...
Gregory Roussac Posted March 26, 2013 Share Posted March 26, 2013 (edited) Hi Microsoul, Sorry for this. This error should not prevent you from upgrading as so far. The faulty line is in /install/upgrade/sql/1.5.4.0.sql ALTER TABLE `PREFIX_stock_available` DROP INDEX `product_sqlstock`; Remove this line in this file if you want to get rid of it, but again this is just a warning, it should not impact your upgrade. But the tag link issue is another real issue that we will fix asap. (fix here https://github.com/PrestaShop/PrestaShop/commit/92ad9120746c07b7734e8f5059b6565780c0a324) Best regards Edited March 27, 2013 by Gregory Roussac (see edit history) Link to comment Share on other sites More sharing options...
fmoreira86 Posted March 27, 2013 Share Posted March 27, 2013 Just want to let you know that I tried to update my 1.5.3.1 to 1.5.4 and the first thing that I saw was lots of translations lost: Modules, backoffice, frontoffice... lots of things that lost the translations. Reverted back to 1.5.3.1 Link to comment Share on other sites More sharing options...
infoseek Posted March 27, 2013 Share Posted March 27, 2013 Hello, try it with the version you download here, http://www.prestashop.com/en/download Link to comment Share on other sites More sharing options...
tdr170 Posted March 27, 2013 Share Posted March 27, 2013 Hello, try it with the version you download here, http://www.prestashop.com/en/download Hello, try it with the version you download here, http://www.prestashop.com/en/download Benjamin: The install went fine with the downloaded version, however there is an issue with Live edit. With Friendly URL's enabled I get a 404 page not found if I turn it off Live Edit functions properly. Friendly URL's work fine in the rest of the FO. Link to comment Share on other sites More sharing options...
Rhapsody Posted March 27, 2013 Share Posted March 27, 2013 (edited) 1.5.4.0 breaks overrides? (Fixed) EDIT - found the problem! Need to uncheck the CCC options, in addition to force compile on the templates. I only forced compile and turned of cache, but that wasn't enough. I created a test shop in another directory and MySql database to try the upgrade from 1.5.3.1 to 1.5.4.0. On two different servers, the overrides I have working on 1.5.3.1 do not work. It looks like the overrides are not being processed. As an example I have an override to accommodate added fields in the ps_customer table. This is in prestashop/override/classes/Customer.php which works fine in 1.5.3.1, but has no effect in 1.5.4.0 My custom theme based on the default template has empty fields where in 1.5.3.1 the data is displayed. <?php /******* * Rhapsody created from 1.5.3.1 of customer.php * Adds custom fields definitions * spouse, yachtclub, boat, model, sailnum, phrfspin, phrfnonspin ****** */ class Customer extends CustomerCore { /** @var string spouse - add for spouse name */ public $spouse; /** @var string yachtclub - add for YC name*/ public $yachtclub; /** @var string boat - add for boat name*/ public $boat; /** @var string model - add for boat model*/ public $model; /** @var string sailnum - add for sail number*/ public $sailnum; /** @var integer phrfspin - add for PHRF spinnaker*/ public $phrfspin; /** @var integer phrfnonspin - add for PHRF non-spinnaker*/ public $phrfnonspin; public static $definition = array( 'table' => 'customer', 'primary' => 'id_customer', 'fields' => array( 'secure_key' => array('type' => self::TYPE_STRING, 'validate' => 'isMd5', 'copy_post' => false), 'lastname' => array('type' => self::TYPE_STRING, 'validate' => 'isName', 'required' => true, 'size' => 32), 'firstname' => array('type' => self::TYPE_STRING, 'validate' => 'isName', 'required' => true, 'size' => 32), 'email' => array('type' => self::TYPE_STRING, 'validate' => 'isEmail', 'required' => true, 'size' => 128), 'passwd' => array('type' => self::TYPE_STRING, 'validate' => 'isPasswd', 'required' => true, 'size' => 32), 'last_passwd_gen' => array('type' => self::TYPE_STRING, 'copy_post' => false), 'id_gender' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId'), 'birthday' => array('type' => self::TYPE_DATE, 'validate' => 'isBirthDate'), 'newsletter' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), 'newsletter_date_add' => array('type' => self::TYPE_DATE,'copy_post' => false), 'ip_registration_newsletter' => array('type' => self::TYPE_STRING, 'copy_post' => false), 'optin' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), 'website' => array('type' => self::TYPE_STRING, 'validate' => 'isUrl'), 'company' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName'), 'siret' => array('type' => self::TYPE_STRING, 'validate' => 'isSiret'), 'ape' => array('type' => self::TYPE_STRING, 'validate' => 'isApe'), 'outstanding_allow_amount' => array('type' => self::TYPE_FLOAT, 'validate' => 'isFloat', 'copy_post' => false), 'show_public_prices' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'copy_post' => false), 'id_risk' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'copy_post' => false), 'max_payment_days' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'copy_post' => false), 'active' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'copy_post' => false), 'deleted' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'copy_post' => false), 'note' => array('type' => self::TYPE_HTML, 'validate' => 'isCleanHtml', 'size' => 65000, 'copy_post' => false), 'is_guest' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'copy_post' => false), 'id_shop' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'copy_post' => false), 'id_shop_group' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'copy_post' => false), 'id_default_group' => array('type' => self::TYPE_INT, 'copy_post' => false), 'date_add' => array('type' => self::TYPE_DATE, 'validate' => 'isDate', 'copy_post' => false), 'date_upd' => array('type' => self::TYPE_DATE, 'validate' => 'isDate', 'copy_post' => false), 'spouse' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName'), 'yachtclub' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName'), 'boat' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName'), 'model' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName'), 'sailnum' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName'), 'phrfspin' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId'), 'phrfnonspin' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId'), ), ); } Edited March 27, 2013 by Rhapsody (see edit history) Link to comment Share on other sites More sharing options...
Rolige Posted March 27, 2013 Share Posted March 27, 2013 Hi prestashop team, the themes of 1.5.3.1, still work with this new version 1.5.4 ? Regards. Link to comment Share on other sites More sharing options...
Bocko Posted March 27, 2013 Share Posted March 27, 2013 This new release might mess things up a little, with my scheduled opening of a new webshop. Remains to see if the developer of the theme (which was supposed to be released last night) makes the new version of his theme based on this current version. I am like 90% done with it by now, and it would be a sad thing to see some "issues" ruin everything. Would it be possible to get a list of all updated files, and perhaps some "version specific" suggestions how to perform the update - to avoid any problems? Would be sad to let all work with it go down the drain, and equally sad to introduce a webshop outdated already when it's launched. Any new version with bug fixes etc. planned for the next few days? Would be very glad if I could finish this webshop thing during Easter. Link to comment Share on other sites More sharing options...
dwilden Posted March 27, 2013 Share Posted March 27, 2013 Same error when updating: [ERROR] SQL 1.5.4.0 1091 in ALTER TABLE `ps_stock_available` DROP INDEX `product_sqlstock`: Can't DROP 'product_sqlstock'; check that column/key exists I use spanish language And too many translations lost. Link to comment Share on other sites More sharing options...
mark-b Posted March 27, 2013 Share Posted March 27, 2013 Hi, I upgraded from 1.5.3.1 to 1.5.4 I get on the front: HTTP-fout 500 (Internal Server Error): Please advice Link to comment Share on other sites More sharing options...
Gregory Roussac Posted March 27, 2013 Share Posted March 27, 2013 Hi This sql error should not prevent you from upgrading. Translations are not related to this error. Please try to go in Back office : Localization > Translations > Update a language Best regards Link to comment Share on other sites More sharing options...
mark-b Posted March 27, 2013 Share Posted March 27, 2013 Hi, When I put error on in defines.inc.php I see in the front of my shop: Fatal error: Cannot redeclare class PageCore in xxxx.com//classes/Page.php on line 128 Link to comment Share on other sites More sharing options...
BuB Posted March 27, 2013 Share Posted March 27, 2013 I've updated to 1.5.4. Everything went well. But my SEO URL rewriting isn't working, because I've played with it when using 1.5.3.1. What are the default URL rewrite settings in the backoffice? Link to comment Share on other sites More sharing options...
Pete78 Posted March 27, 2013 Share Posted March 27, 2013 Updated via 1-click upgrade from a 1.5.3.1 shop to 1.5.4. everything went smooth as far as i can see Link to comment Share on other sites More sharing options...
slima Posted March 27, 2013 Share Posted March 27, 2013 search by tags stop working after update from 1.5.3.1 ;( 1 Link to comment Share on other sites More sharing options...
dwilden Posted March 27, 2013 Share Posted March 27, 2013 (edited) Prestashop Cleaner give a error when try "Check & Fix" [PrestaShop] Fatal error in module DbPDO: Call to a member function rowCount() on a non-object Reported: http://forge.prestashop.com/browse/PSCFV-8490 Edited March 27, 2013 by dwilden (see edit history) Link to comment Share on other sites More sharing options...
Pete78 Posted March 27, 2013 Share Posted March 27, 2013 search by tags stop working after update from 1.5.3.1 ;( I can confirm this. Clicking on a tag brings an empty product which is not clickable 1 Link to comment Share on other sites More sharing options...
dwilden Posted March 27, 2013 Share Posted March 27, 2013 (edited) Ok, I have update with 1-Click my Prestashop 1.5.3 to Prestashop 1.5.4 Spanish Language. Some translations are missging and I try to import Spanish Language going to Localization > Translations > Update a language But I give this error: [PrestaShopException] Property Tab->name is empty at line 874 in file classes/ObjectModel.php 868. 869. $message = $this->validateField($field, $value, $id_lang); 870. if ($message !== true) 871. { 872. if ($die) 873. throw new PrestaShopException($message); 874. return $error_return ? $message : false; 875. } 876. } 877. } 878. ObjectModelCore->validateFieldsLang - [line 306 - classes/ObjectModel.php] - [0 Argument] ObjectModelCore->getFieldsLang - [line 637 - classes/ObjectModel.php] - [0 Argument] ObjectModelCore->update - [line 478 - classes/Tab.php] - [1 Arguments] TabCore->update - [line 599 - controllers/admin/AdminTranslationsController.php] - [0 Argument] AdminTranslationsControllerCore::addNewTabs - [line 812 - classes/Language.php] - [2 Arguments] LanguageCore::downloadAndInstallLanguagePack - [line 298 - classes/LocalizationPack.php] - [2 Arguments] LocalizationPackCore->_installLanguages - [line 74 - classes/LocalizationPack.php] - [1 Arguments] LocalizationPackCore->loadLocalisationPack - [line 168 - controllers/admin/AdminLocalizationController.php] - [2 Arguments] AdminLocalizationControllerCore->postProcess - [line 158 - classes/controller/Controller.php] - [0 Argument] ControllerCore->run - [line 349 - classes/Dispatcher.php] - [0 Argument] DispatcherCore->dispatch - [line 50 - admin-dev/index.php] - [0 Argument] Reported on : http://forge.prestashop.com/browse/PSCFV-8489 Edited March 27, 2013 by dwilden (see edit history) Link to comment Share on other sites More sharing options...
jos0405 Posted March 27, 2013 Share Posted March 27, 2013 Hi, module translations disapperared for me after upgrading from 1.5.2.->1.5.4. Is there a quick fix for this? Thx, Jozsef Link to comment Share on other sites More sharing options...
fosg2000 Posted March 27, 2013 Share Posted March 27, 2013 just one error when do one click upgrade from 1.5.3.1 [ERROR] SQL 1.5.4.0 1091 in ALTER TABLE `ps_stock_available` DROP INDEX `product_sqlstock`: Can't DROP 'product_sqlstock'; check that column/key exists Warning detected during upgrade. just check on forge theres a fix but i dont know how to do it : http://forge.prestashop.com/browse/PSCFV-8167?focusedCommentId=70823#comment-70823. https://github.com/PrestaShop/PrestaShop/commit/fec2866be6d83b14854ed06ea6fcf61bac491494#L1L19 Link to comment Share on other sites More sharing options...
racemaniac Posted March 27, 2013 Share Posted March 27, 2013 Did a auto-upgrade from installatron. Installatron displays 1.5.4.0 installed, but PS itself says still version 1.5.3.1 Restoring backup, check this forum and wait for correct upgrade Link to comment Share on other sites More sharing options...
Gregory Roussac Posted March 27, 2013 Share Posted March 27, 2013 (edited) just one error when do one click upgrade from 1.5.3.1 [ERROR] SQL 1.5.4.0 1091 in ALTER TABLE `ps_stock_available` DROP INDEX `product_sqlstock`: Can't DROP 'product_sqlstock'; check that column/key exists Hi, This is not a blocking error, your upgrade should overcome this issue (http://www.prestashop.com/forums/index.php?/topic/230149-updated-154-final-available-updated/page__view__findpost__p__1158775). The autoupgrade module has been updated (v 1.0.13) and it should update your languages automatically after upgrading to 1.5.4.0 (http://addons.presta...utoupgrade.html) Best regards Edited March 27, 2013 by Gregory Roussac (see edit history) Link to comment Share on other sites More sharing options...
tjin Posted March 27, 2013 Share Posted March 27, 2013 Hi, Did an auto-upgrade through installatron as well. It gave me the following error: Technical error: Error: FileSystem::mv() - All the product images and the toplogo are now gone in the FO and BO. I am restoring back to 1.5.3 at the moment, see if it restores the images as well. Anyone else has this problem? or a way to fix it? thanks in advance Link to comment Share on other sites More sharing options...
fosg2000 Posted March 27, 2013 Share Posted March 27, 2013 Hi, This is not a blocking error, your upgrade should overcome this issue (http://www.prestasho...ost__p__1158775). The autoupgrade module has been updated (v 1.0.13) and it should update your languages automatically after upgrading to 1.5.4.0 (http://addons.presta...utoupgrade.html) Best regards how may i fix this ? Link to comment Share on other sites More sharing options...
fosg2000 Posted March 27, 2013 Share Posted March 27, 2013 ALTER TABLE `PREFIX_stock_available` DROP INDEX `product_sqlstock`; how fix this Link to comment Share on other sites More sharing options...
Gregory Roussac Posted March 27, 2013 Share Posted March 27, 2013 (edited) Please consult the prvious page of this post http://www.prestasho...ost__p__1158775 Again this sql error is not a fatal issue, just a warning. Just remove the line if you want this warning to disappear. Regards Edited March 27, 2013 by Gregory Roussac (see edit history) Link to comment Share on other sites More sharing options...
Gregory Roussac Posted March 27, 2013 Share Posted March 27, 2013 Hi again, the block tag issue has been fixed in development version. https://github.com/PrestaShop/PrestaShop/commit/92ad9120746c07b7734e8f5059b6565780c0a324 Regards 1 Link to comment Share on other sites More sharing options...
nandotx Posted March 27, 2013 Share Posted March 27, 2013 In this version can not install without sample content? How do I delete the all sample content? Link to comment Share on other sites More sharing options...
Gregory Roussac Posted March 27, 2013 Share Posted March 27, 2013 Hi, There is a brand new beta module called pscleaner that should do the job. Regards Link to comment Share on other sites More sharing options...
nandotx Posted March 27, 2013 Share Posted March 27, 2013 Why is this version no longer has a choice whether we want to install sample content or not? Link to comment Share on other sites More sharing options...
the.rampage.rado Posted March 27, 2013 Share Posted March 27, 2013 And what the **** is this Merchandise module? What are those points and junk stuff?!?!?!? I don't want to to have access to my shop. Link to comment Share on other sites More sharing options...
Ulisses Ramos Posted March 27, 2013 Share Posted March 27, 2013 (edited) Errors while upgrading 1.5.2.0 to 1.5.4.0 [ERROR] SQL 1.5.3.0 1265 in ALTER TABLE `ps_cart` CHANGE `delivery_option` `delivery_option` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL: Data truncated for column 'delivery_option' at row 1 [ERROR] SQL 1.5.3.1 1265 in ALTER TABLE `ps_cart` CHANGE `delivery_option` `delivery_option` TEXT NOT NULL: Data truncated for column 'delivery_option' at row 1 Warning detected during upgrade. Reported Here: http://forge.prestas...owse/PSCFV-8488 Edited March 27, 2013 by Ulisses Ramos (see edit history) Link to comment Share on other sites More sharing options...
web4people Posted March 27, 2013 Share Posted March 27, 2013 Tried the autoupgrade from 1.5.3.1 to 1.5.4 /after upgrading the 1-click module) but I got a error... It was like the new version was too old for the upgrade... =_= I just restored my backup. And I'll wait for a fix or I'll try a manual update. Link to comment Share on other sites More sharing options...
tdr170 Posted March 27, 2013 Share Posted March 27, 2013 Why is this version no longer has a choice whether we want to install sample content or not? Look to your modules section there is a new module called PS Cleaner this will remove all the Demo products, Orders, customers and more. My best guess is that with this module PS feels that option is obsolete. Link to comment Share on other sites More sharing options...
Rolige Posted March 27, 2013 Share Posted March 27, 2013 (edited) Hi again prestashop team, the themes of 1.5.3.1, still work with this new version 1.5.4 ? I hope you can reply. Edited March 27, 2013 by sQs (see edit history) Link to comment Share on other sites More sharing options...
BuB Posted March 27, 2013 Share Posted March 27, 2013 What are the default friendly URL settings in the backoffice? Changed them in 1.5.3.1 using version 0.23 of this http://www.prestashop.com/forums/topic/204935-override-friendly-urls-without-id-number-for-v15/. It's not working correctly in 1.5.4. Want to use the default settings but have now idea where to find them. Link to comment Share on other sites More sharing options...
hasebear Posted March 27, 2013 Share Posted March 27, 2013 Hello, I tried upgrade from 1.5.3 to 1.5.4, but I got totally blank page. tried these way - module>1click upgrade>configure, advanced parameters> 1click upgrade, both of them ware same results.. Link to comment Share on other sites More sharing options...
fmoreira86 Posted March 27, 2013 Share Posted March 27, 2013 (edited) Tried again with 1 Click Upgrade version 1.0.13 All the modules and some back office translations are lost. Edited March 27, 2013 by fmoreira86 (see edit history) Link to comment Share on other sites More sharing options...
fmoreira86 Posted March 27, 2013 Share Posted March 27, 2013 Hi, This is not a blocking error, your upgrade should overcome this issue (http://www.prestasho...ost__p__1158775). The autoupgrade module has been updated (v 1.0.13) and it should update your languages automatically after upgrading to 1.5.4.0 (http://addons.presta...utoupgrade.html) Best regards Nop. It still loses all the module translations. Plus some elements of back office are not translated too. Link to comment Share on other sites More sharing options...
BuB Posted March 27, 2013 Share Posted March 27, 2013 I get this error message in my Friendly URL. Were can I find the default settings? Update went well, but my friendly URL settings where kept from 1.5.31. Link to comment Share on other sites More sharing options...
Gregory Roussac Posted March 27, 2013 Share Posted March 27, 2013 Nop. It still loses all the module translations. Plus some elements of back office are not translated too. Please go in back office Localization > Translations and try to update your languages. Best regards Link to comment Share on other sites More sharing options...
tdr170 Posted March 27, 2013 Share Posted March 27, 2013 Merchant Expertise (gamification) is displaying insecure content and shows this error in Google chrome's console. The page at https://team-shepherdusa.com/shop4/administrator/index.php?controller=AdminProducts&addproduct&token=77067cdb4fdddcbe9258d96afbf45693 displayed insecure content from http://gamification.prestashop.com/api/getBadgeImg/45/1.png. jquery-1.7.2.min.js:4 The page at https://team-shepherdusa.com/shop4/administrator/index.php?controller=AdminProducts&addproduct&token=77067cdb4fdddcbe9258d96afbf45693 displayed insecure content from http://gamification.prestashop.com/api/getBadgeImg/46/0.png. Link to comment Share on other sites More sharing options...
jaro61 Posted March 27, 2013 Share Posted March 27, 2013 Please go in back office Localization > Translations and try to update your languages. Best regards I do not want you to dubious translation but I maintain that the translation that was there before the upgrade .... Your update destroy several months work ... Link to comment Share on other sites More sharing options...
the.rampage.rado Posted March 27, 2013 Share Posted March 27, 2013 Don't you have backup? 1.5.3.1 translations are not compatible with 1.5.4, so either do manual string-by-string update or update from the server and then manually edit it!!! Link to comment Share on other sites More sharing options...
Krystian Podemski Posted March 27, 2013 Share Posted March 27, 2013 1.5.3.1 translations are not compatible with 1.5.4 I hope that was a joke? If there is such a small disaster if custom store translations will not work... People. Keep doing backups yourself, not only by autoupgrade module. Link to comment Share on other sites More sharing options...
jaro61 Posted March 27, 2013 Share Posted March 27, 2013 Of course I have a backup, but it's nothing to me. Again, I have to do what has been done ... Link to comment Share on other sites More sharing options...
the.rampage.rado Posted March 27, 2013 Share Posted March 27, 2013 The majority of the strings are OK but as we saw in this topic (and it's confirmed by one of the developers) many lines are lost due to English errors. If you try to import 1.5.3.1 translation in 1.5.4 shop it will give you error so you have to either manually update or relay on Prestashop's 1.5.4 translations from their server then edit them as you want... 1 Link to comment Share on other sites More sharing options...
jaro61 Posted March 27, 2013 Share Posted March 27, 2013 I hope that was a joke? If there is such a small disaster if custom store translations will not work... People. Keep doing backups yourself, not only by autoupgrade module. I have my own backup, import language but nothing changes ... It is to defeat Link to comment Share on other sites More sharing options...
fmoreira86 Posted March 27, 2013 Share Posted March 27, 2013 Please go in back office Localization > Translations and try to update your languages. Best regards I prefer to keep the old version. I have lots of working ours in my translations Link to comment Share on other sites More sharing options...
edsteffe Posted March 27, 2013 Share Posted March 27, 2013 (edited) Hi! Did a "1-Click Upgrade" today from 1.5.3.1 to 1.5.4.0 Everything works fine except: 1. Translations missing 2. Modules are missing in Translations for Modules. 110 Modules but approx. 30 is in "Translation for Modules". How to have them back? Regards Stefan Edited March 30, 2013 by edsteffe (see edit history) Link to comment Share on other sites More sharing options...
perusi Posted March 27, 2013 Share Posted March 27, 2013 what's the best way to upgrade from 1.5.3.1 to 1.5.4? The website is 99% ready but on PS 1.5.3.1... so... what's the best way to upgrade to PS 1.5.4 but without getting to trash the work i`ve done so far ? thanks Link to comment Share on other sites More sharing options...
Diego Galma Posted March 27, 2013 Share Posted March 27, 2013 I make this UPDATE... and I lost all thumbnais pictures http://prntscr.com/y4ij3 the site is https://www.vinotecalavia.com ... I try to rollback nad that action distroy my web... I return the web to 1.5.3 from FTP data base backup, but my images still mising... How can I fix? Link to comment Share on other sites More sharing options...
a_smith Posted March 27, 2013 Share Posted March 27, 2013 An update from 1531 to 154 via 1 click module went smooth end quickly with no errors.... but now I have lost products thumbnails and whats worst when I go to the main page (start page) instead of the site content I see indexes (file list on the server). If I refresh yhe page the prestashop main page gets loaded.If I browse and comeback to the main page, presta show files index on the server again.... I have checked this on 3 diferent machines. Browser chache/history/cookies and presta cache had been cleared off. It didnt help. I have checked the files. All files has been uploaded. Index.php files are in place.... I had to disable the shop now to stop people seeing my files on the server. Oh gosh.... story named Prestashop continue..... again Any idea dear prestashop team???? Link to comment Share on other sites More sharing options...
Gregory Roussac Posted March 27, 2013 Share Posted March 27, 2013 (edited) Any idea dear prestashop team???? Hi, I would check DirectoryIndex directive in Apache tio see if it points to index.php, or try to regenerate htaccess in SEO part in back office. How can I fix? Maybe you can try to regenerate your images in back office if products images are still available in back office. The module should have back up images too in /admin/autoupgrade/backup/ . Please always manually back up everything before touching to your site. The warning in the module is there to remind you that this is required. Please guys back up before upgrading. Sorry people we can not deturn/divert the post subject and give support to everyone on this post. I hope you understand. Best regards Edited March 27, 2013 by Gregory Roussac (see edit history) Link to comment Share on other sites More sharing options...
RickieSee Posted March 28, 2013 Share Posted March 28, 2013 (edited) Doesn't work. Checkout stage is performing poorly Run through the checkout logged in, and not logged in. Go through all variations. Needs a fix. Clean version of prestashop (1.5.3 > 1.5.4) with no real alterations. Out of the box theme. Edited March 29, 2013 by Benjamin Utterback (see edit history) Link to comment Share on other sites More sharing options...
a_smith Posted March 28, 2013 Share Posted March 28, 2013 Hi, I would check DirectoryIndex directive in Apache tio see if it points to index.php, or try to regenerate htaccess in SEO part in back I did both. DirectoryIndex is off and it does points to index.php. index.php does exist on the server I deleted and regeneretad htaccess file manually deleted the files from smarty cache folders and img/tmp folder I regenerated all images refreshed browser cache now dont see the files index but I permanently lost products thumbnails on the product list/grid. Even if I regenerate them and and force compile is on, all I see is default photos (question mark). Link to comment Share on other sites More sharing options...
RickieSee Posted March 28, 2013 Share Posted March 28, 2013 Doesn't work.. Run through the checkout logged in, and not logged in. Go through all variations (5 step cart & so on). Needs a fix. My test site: Clean version of prestashop (1.5.3 > 1.5.4) with no real alterations. Out of the box theme. Link to comment Share on other sites More sharing options...
RickieSee Posted March 28, 2013 Share Posted March 28, 2013 Errors are: when a customer is fully logged in. Works fine through Guest Checkout (which doesn't actually log the user in after account creation) Link to comment Share on other sites More sharing options...
Dmit Posted March 28, 2013 Share Posted March 28, 2013 After upgrading to 1.5.4 is no longer open the Modules tab - opens a blank white page = ( Link to comment Share on other sites More sharing options...
prestanesia Posted March 28, 2013 Share Posted March 28, 2013 After upgrading to 1.5.4 is no longer open the Modules tab - opens a blank white page = ( set the _PS_MODE_DEV_ to true in config/defines.inc.php and open the tab module again to see the error message in detail. Link to comment Share on other sites More sharing options...
prestanesia Posted March 28, 2013 Share Posted March 28, 2013 In this version can not install without sample content? How do I delete the all sample content? install the pscleaner module thats included in 1.5.4. Link to comment Share on other sites More sharing options...
Dmit Posted March 28, 2013 Share Posted March 28, 2013 set the _PS_MODE_DEV_ to true in config/defines.inc.php and open the tab module again to see the error message in detail. set define ('_PS_MODE_DEV_', true); and still at the opening of white page = ( Link to comment Share on other sites More sharing options...
prestanesia Posted March 28, 2013 Share Posted March 28, 2013 set define ('_PS_MODE_DEV_', true); and still at the opening of white page = ( thats weird. if youre using cpanel is there any information on error log ? you can check the error_log file on root or admin folder. Link to comment Share on other sites More sharing options...
Dmit Posted March 28, 2013 Share Posted March 28, 2013 thats weird. if youre using cpanel is there any information on error log ? you can check the error_log file on root or admin folder. IP - - [28/Mar/2013:09:06:38 +0700] "GET /admindb/index.php?controller=AdminModules&token=0a6b4e1bf235557a99d8e66e17ba1e4c HTTP/1.0" 500 23 "http://lcmarket.ru/admindb/index.php?controller=AdminInformation&token=ced73925e5ef7db48161391ca7986a91" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22" IP - - [28/Mar/2013:09:06:40 +0700] "GET /favicon.ico HTTP/1.0" 404 175 "-" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22" 5.255.210.93 - - [28/Mar/2013:09:06:43 +0700] "GET / HTTP/1.0" 200 175 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mon3)" Link to comment Share on other sites More sharing options...
prestanesia Posted March 28, 2013 Share Posted March 28, 2013 @dmit that seems to be visitor log, are you sure its error log ? if its is there any suspicious warning other than visitor log ? Link to comment Share on other sites More sharing options...
Dmit Posted March 28, 2013 Share Posted March 28, 2013 via ssh if you go see where the log file? Link to comment Share on other sites More sharing options...
Dmit Posted March 28, 2013 Share Posted March 28, 2013 Plz, tell me how to go to the tab modules Link to comment Share on other sites More sharing options...
Gregory Roussac Posted March 28, 2013 Share Posted March 28, 2013 DirectoryIndex is off off ? Link to comment Share on other sites More sharing options...
a_smith Posted March 28, 2013 Share Posted March 28, 2013 (edited) off ? I meant that the server is set up not to show the files and folders list via browser if there is no index file. Now I am getting message REQUESTED CONTENT CANNOT BE LOADED PLEASE TRY AGAIN LATER..... some products images gone, site logo gone too. I reuploaded all images again, recreated them - no change. layout gets messed up, images with the question marks beeing show instead of the products images.... this software is a pure nightmare. 15 years in the ecommerce, I have used almost all possible shopping carts out there. No other gave me so many troubles like prestashop. Edited March 28, 2013 by a_smith (see edit history) 1 Link to comment Share on other sites More sharing options...
jos0405 Posted March 28, 2013 Share Posted March 28, 2013 I would be happy to retranslate all the modules again, if it would be possible somehow. When I open a module and go to the translation by clicking on the flag, I get no strings. (0 strings to be translated) Plz help me how could I do the translations again. Thx, Joey Link to comment Share on other sites More sharing options...
the.rampage.rado Posted March 28, 2013 Share Posted March 28, 2013 Some translation fields are simply missing. I have the same issue. Hope they can find a fix soon. Link to comment Share on other sites More sharing options...
jos0405 Posted March 28, 2013 Share Posted March 28, 2013 I don't mind retranslating those modules, that are missing. My problem is, that main modules, like blockcart, blockuserinfo cannot be translated, therefore LOGIN and CART is now in english. Joey Link to comment Share on other sites More sharing options...
Bocko Posted March 28, 2013 Share Posted March 28, 2013 I like Prestashop, as it's a free and pretty active alternative. What I don't like however, is that you'll be 100% certain it will mess things up in EVERY update. Guess I'll change to something else more stable when I can afford it. I would like to keep using it, but I don't have time and nerves to keep using something that NEVER works "out of the box". Now to my input here: It feels like all these new releases are pretty "premature", like they haven't been tested at all in different environments and with no other themes than the standard one. I mean, despite being free - quite some people are more or less dependent on this thing working, and many people are having quite a lot of problems each time a new update comes along. I tried to find a "changelog", stating exactly what files have been changed. And I asked for it too, but as far as I can see - I've had no replies whatsoever. Knowing this, it would be a whole lot easier to just try it and "rollback". I wouldn't even think of trying it through the backend, like on every other system I have ever used. 1 Link to comment Share on other sites More sharing options...
the.rampage.rado Posted March 28, 2013 Share Posted March 28, 2013 I don't mind retranslating those modules, that are missing. My problem is, that main modules, like blockcart, blockuserinfo cannot be translated, therefore LOGIN and CART is now in english. Joey Exactly the same stuff here. I have ticket for this in the forge will see what's going on. Link to comment Share on other sites More sharing options...
a_smith Posted March 28, 2013 Share Posted March 28, 2013 (edited) On some pages/links/thumbnails/banners, if I cklick them, instead of the requested page I am getting grey question mark on the middle of the screen..... If I refresh the screen or do F5 I the content being loaded properly. Strange is that if I click on to the original link again I am getting grey question mark but sometimes the content gets loaded up properly stright away. I reuploaded images,cleaned cache, regenerated images, regenerated .htaccess.. etc another problem is that product list and grid thumbnails doesnt show up. I have all grey question marks instead. Images on product page are ok. Regenerate images doesnt help. Images are on the server. any ideas? Edited March 28, 2013 by a_smith (see edit history) Link to comment Share on other sites More sharing options...
Krystian Podemski Posted March 28, 2013 Share Posted March 28, 2013 In my opinion this version should be second Release Candidate version. Hurry only encourages evil. Link to comment Share on other sites More sharing options...
dwilden Posted March 28, 2013 Share Posted March 28, 2013 (edited) Who make the spanish translation?? Too many incorrect expressions !!! Edited March 28, 2013 by dwilden (see edit history) 1 Link to comment Share on other sites More sharing options...
RickieSee Posted March 28, 2013 Share Posted March 28, 2013 Shopping cart does not work when a user is logged in. You're all losing money folks! Link to comment Share on other sites More sharing options...
acutbal Posted March 28, 2013 Share Posted March 28, 2013 Shopping cart does not work when a user is logged in. You're all losing money folks! Hi, I have the same problem, after updating my cart is missing!! I use Instant Checkout for my customers. regards Link to comment Share on other sites More sharing options...
a_smith Posted March 28, 2013 Share Posted March 28, 2013 HOW CAN I FIX THE THUBNAIL IMAGESSSSS????? please same problem HERE ! Link to comment Share on other sites More sharing options...
Diego Galma Posted March 28, 2013 Share Posted March 28, 2013 How can I fix the thumbnail imagessss????? please http://vinotecalavia.com/8-espumantes http://www.movilesargentina.com/7-movistar-prepago Link to comment Share on other sites More sharing options...
CUBE-IN Posted March 28, 2013 Share Posted March 28, 2013 (edited) HOW CAN I FIX THE THUBNAIL IMAGESSSSS????? please http://vinotecalavia.com/8-espumantes http://www.movilesar...ovistar-prepago try to delete smarty template cache... or set force compile smarty at backoffice... Edited March 28, 2013 by CUBE-IN (see edit history) Link to comment Share on other sites More sharing options...
Federico1973 Posted March 28, 2013 Share Posted March 28, 2013 I try and first time all ok, some php error on 1.5.3.1 now are resolved. But all my order are free shipping, and on checkout at step ship is empty page, don't see carrier and button go on. Link to comment Share on other sites More sharing options...
yaniv14 Posted March 28, 2013 Share Posted March 28, 2013 Diego Galma, Try to disable Friendly URL in back office SEO & URLs Link to comment Share on other sites More sharing options...
tdr170 Posted March 28, 2013 Share Posted March 28, 2013 Shopping cart does not work when a user is logged in. You're all losing money folks! Was this an upgrade or a fresh install, I just checked on a fresh install and have no issues with cart whether logged in or not. Can you elaborate a little more so we can try to reproduce your error. 1 Link to comment Share on other sites More sharing options...
acutbal Posted March 28, 2013 Share Posted March 28, 2013 (edited) Was this an upgrade or a fresh install, I just checked on a fresh install and have no issues with cart whether logged in or not. Can you elaborate a little more so we can try to reproduce your error. Hi!! Of course!! In my case I've upgraded from v. 1.5.3.1 fresh install to v.1.5.4 via one click update, I have installed a theme from Prestadesigner with very little changes, and I've activated the guest instant checkout. I've restarted and configured again the module blockcart, installed one from previous version, and checked its positions in the hooks, but still missing. Thanks in advance!! Edited March 28, 2013 by acutbal (see edit history) Link to comment Share on other sites More sharing options...
Dmit Posted March 28, 2013 Share Posted March 28, 2013 all files has been upgraded. Now upgrading database. this can take a while ... [OK] SQL 1.5.4.0 SET NAMES 'utf8' [OK] PHP 1.5.4.0 : /* PHP:update_customer_default_group(); */ [OK] SQL 1.5.4.0 UPDATE `ps_meta` SET `page` = 'supplier' WHERE `page` = 'supply' [OK] SQL 1.5.4.0 ALTER TABLE `ps_image_type` CHANGE `name` `name` VARCHAR( 64 ) NOT NULL [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_customer` ADD `id_lang` INT UNSIGNED NULL AFTER `id_default_group`: Duplicate column name 'id_lang' [OK] SQL 1.5.4.0 UPDATE `ps_customer` SET id_lang = (SELECT `value` FROM `ps_configuration` WHERE name = 'PS_LANG_DEFAULT' LIMIT 1) [OK] SQL 1.5.4.0 UPDATE `ps_customer` c, `ps_orders` o SET c.id_lang = o.id_lang WHERE c.id_customer = o.id_customer [OK] SQL 1.5.4.0 UPDATE `ps_quick_access` SET `link` = 'index.php?controller=AdminCartRules&addcart_rule' WHERE `link` = 'index.php?tab=AdminDiscounts&adddiscount' [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_order_cart_rule` ADD `free_shipping` tinyint(1) NOT NULL DEFAULT 0 AFTER `value_tax_excl`: Duplicate column name 'free_shipping' [OK] SQL 1.5.4.0 UPDATE `ps_order_cart_rule` ocr, `ps_cart_rule` cr SET ocr.free_shipping = 1 WHERE ocr.id_cart_rule = cr.id_cart_rule AND cr.free_shipping = 1 [OK] SQL 1.5.4.0 UPDATE `ps_orders` o, `ps_order_cart_rule` ocr SET o.`total_discounts` = o.total_discounts + o.`total_shipping_tax_incl`, o.`total_discounts_tax_incl` = o.`total_discounts_tax_incl` + o.`total_shipping_tax_incl`, o.`total_discounts_tax_excl` = o.`total_discounts_tax_excl` + o.`total_shipping_tax_excl` WHERE o.id_order = ocr.id_order AND ocr.free_shipping = 1 [ERROR] SQL 1.5.4.0 1050 in CREATE TABLE `ps_tab_module_preference` ( `id_tab_module_preference` int(11) NOT NULL auto_increment, `id_employee` int(11) NOT NULL, `id_tab` int(11) NOT NULL, `module` varchar(255) NOT NULL, PRIMARY KEY (`id_tab_module_preference`), UNIQUE KEY `employee_module` (`id_employee`, `id_tab`, `module`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8: Table 'ps_tab_module_preference' already exists [OK] PHP 1.5.4.0 : /* PHP:add_new_tab(AdminMarketing, es:Marketing|it:Marketing|en:Marketing|de:Marketing|fr:Marketing, 1); */ [OK] SQL 1.5.4.0 ALTER TABLE `ps_stock_available` DROP INDEX `product_sqlstock` [OK] SQL 1.5.4.0 ALTER TABLE `ps_stock_available` ADD UNIQUE `product_sqlstock` (`id_product`, `id_product_attribute`, `id_shop`, `id_shop_group`) [OK] SQL 1.5.4.0 UPDATE ps_configuration SET `value` = '8388608' WHERE `name` = 'PS_PRODUCT_PICTURE_MAX_SIZE' AND `value` <= '524288' [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_guest` ADD `mobile_theme` tinyint(1) NOT NULL DEFAULT 0: Duplicate column name 'mobile_theme' [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_orders` ADD `mobile_theme` tinyint(1) NOT NULL DEFAULT 0 AFTER `gift_message`: Duplicate column name 'mobile_theme' [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_cart` ADD `mobile_theme` tinyint(1) NOT NULL DEFAULT 0 AFTER `gift_message`: Duplicate column name 'mobile_theme' [OK] SQL 1.5.4.0 ALTER TABLE `ps_address` CHANGE `phone` `phone` varchar(32) default NULL [OK] SQL 1.5.4.0 ALTER TABLE `ps_address` CHANGE `phone_mobile` `phone_mobile` varchar(32) default NULL [OK] PHP 1.5.4.0 : /* PHP:update_genders_images(); */ [OK] SQL 1.5.4.0 UPDATE `ps_customer` SET `id_gender` = 1 WHERE `email` LIKE '[email protected]' AND `id_customer` = 1 AND `id_gender` = 4 [OK] SQL 1.5.4.0 UPDATE `ps_cart_rule_carrier` crc INNER JOIN `ps_carrier` c ON crc.`id_carrier` = c.`id_carrier` SET crc.`id_carrier` = c.`id_reference` [OK] SQL 1.5.4.0 UPDATE `ps_order_payment` SET `order_reference` = LPAD(order_reference, 9 , '0') [OK] PHP 1.5.4.0 : /* PHP:p1540_add_missing_columns(); */ Update Db Ok files setting update [sKIP] directory "/tools/smarty/cache/" doesn't exist and cannot be emptied. [sKIP] directory "/tools/smarty/compile/" doesn't exist and cannot be emptied. [sKIP] directory "/tools/smarty_v2/cache/" doesn't exist and cannot be emptied. [sKIP] directory "/tools/smarty_v2/compile/" doesn't exist and cannot be emptied. does not appear in the admin tab of the module - opens a blank white page and no debugger shows no errors Link to comment Share on other sites More sharing options...
tdr170 Posted March 28, 2013 Share Posted March 28, 2013 HOW CAN I FIX THE THUBNAIL IMAGESSSSS????? please http://vinotecalavia.com/8-espumantes http://www.movilesar...ovistar-prepago Have you tried regenerating images under perferences, images, I looked at the site and the links to the image source seem to be incorrect. Try switching to the standard theme and see if the issue still persist. 1 Link to comment Share on other sites More sharing options...
tdr170 Posted March 28, 2013 Share Posted March 28, 2013 For those of you with the Free Shipping issue there is a fix and I am not sure why this was not fixed before 1.5.4 was released. in ..modules/blockcart/ edit the ajax-cart.js file and replace lines 598-601 with the code below. Be sure and empty you ..cache/smarty/cache and compile folders to be sure this takes effect. (do not remove any index.php) if (parseFloat(jsonData.shippingCostFloat) == 0 && parseInt(jsonData.nbTotalProducts) >= 0) $('.ajax_cart_shipping_cost').text(jsonData.shippingCost); else $('.ajax_cart_shipping_cost').text(jsonData.shippingCost); Link to comment Share on other sites More sharing options...
tdr170 Posted March 28, 2013 Share Posted March 28, 2013 Hi!! Of course!! In my case I've upgraded from v. 1.5.3.1 fresh install to v.1.5.4 via one click update, I have installed a theme from Prestadesigner with very little changes, and I've activated the guest instant checkout. I've restarted and configured again the module blockcart, installed one from previous version, and checked its positions in the hooks, but still missing. Thanks in advance!! Are you speaking of the Cart in the column or in the header. If you want a cart say in the right column go to modules position and choose Transplant a module then in the drop down choose module select Cart block then in Hook Into choose displayrightcolumn (Right Column blocks) Link to comment Share on other sites More sharing options...
acutbal Posted March 28, 2013 Share Posted March 28, 2013 Are you speaking of the Cart in the column or in the header. If you want a cart say in the right column go to modules position and choose Transplant a module then in the drop down choose module select Cart block then in Hook Into choose displayrightcolumn (Right Column blocks) Hi, I have hooked the module blockcart in displayHeader and in displayRightColumn. Thanks!! Link to comment Share on other sites More sharing options...
tdr170 Posted March 28, 2013 Share Posted March 28, 2013 Hi, I have hooked the module blockcart in displayHeader and in displayRightColumn. Thanks!! Sorry bit you mean you have no cart at all nothing in the header or in the columns. Edit ..config/defines.inc.php and turn error reporting on define ('_PS_MODE_DEV_', true); also can you give a link to the site. Link to comment Share on other sites More sharing options...
Dmit Posted March 28, 2013 Share Posted March 28, 2013 all files has been upgraded. Now upgrading database. this can take a while ... [OK] SQL 1.5.4.0 SET NAMES 'utf8' [OK] PHP 1.5.4.0 : /* PHP:update_customer_default_group(); */ [OK] SQL 1.5.4.0 UPDATE `ps_meta` SET `page` = 'supplier' WHERE `page` = 'supply' [OK] SQL 1.5.4.0 ALTER TABLE `ps_image_type` CHANGE `name` `name` VARCHAR( 64 ) NOT NULL [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_customer` ADD `id_lang` INT UNSIGNED NULL AFTER `id_default_group`: Duplicate column name 'id_lang' [OK] SQL 1.5.4.0 UPDATE `ps_customer` SET id_lang = (SELECT `value` FROM `ps_configuration` WHERE name = 'PS_LANG_DEFAULT' LIMIT 1) [OK] SQL 1.5.4.0 UPDATE `ps_customer` c, `ps_orders` o SET c.id_lang = o.id_lang WHERE c.id_customer = o.id_customer [OK] SQL 1.5.4.0 UPDATE `ps_quick_access` SET `link` = 'index.php?controller=AdminCartRules&addcart_rule' WHERE `link` = 'index.php?tab=AdminDiscounts&adddiscount' [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_order_cart_rule` ADD `free_shipping` tinyint(1) NOT NULL DEFAULT 0 AFTER `value_tax_excl`: Duplicate column name 'free_shipping' [OK] SQL 1.5.4.0 UPDATE `ps_order_cart_rule` ocr, `ps_cart_rule` cr SET ocr.free_shipping = 1 WHERE ocr.id_cart_rule = cr.id_cart_rule AND cr.free_shipping = 1 [OK] SQL 1.5.4.0 UPDATE `ps_orders` o, `ps_order_cart_rule` ocr SET o.`total_discounts` = o.total_discounts + o.`total_shipping_tax_incl`, o.`total_discounts_tax_incl` = o.`total_discounts_tax_incl` + o.`total_shipping_tax_incl`, o.`total_discounts_tax_excl` = o.`total_discounts_tax_excl` + o.`total_shipping_tax_excl` WHERE o.id_order = ocr.id_order AND ocr.free_shipping = 1 [ERROR] SQL 1.5.4.0 1050 in CREATE TABLE `ps_tab_module_preference` ( `id_tab_module_preference` int(11) NOT NULL auto_increment, `id_employee` int(11) NOT NULL, `id_tab` int(11) NOT NULL, `module` varchar(255) NOT NULL, PRIMARY KEY (`id_tab_module_preference`), UNIQUE KEY `employee_module` (`id_employee`, `id_tab`, `module`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8: Table 'ps_tab_module_preference' already exists [OK] PHP 1.5.4.0 : /* PHP:add_new_tab(AdminMarketing, es:Marketing|it:Marketing|en:Marketing|de:Marketing|fr:Marketing, 1); */ [OK] SQL 1.5.4.0 ALTER TABLE `ps_stock_available` DROP INDEX `product_sqlstock` [OK] SQL 1.5.4.0 ALTER TABLE `ps_stock_available` ADD UNIQUE `product_sqlstock` (`id_product`, `id_product_attribute`, `id_shop`, `id_shop_group`) [OK] SQL 1.5.4.0 UPDATE ps_configuration SET `value` = '8388608' WHERE `name` = 'PS_PRODUCT_PICTURE_MAX_SIZE' AND `value` <= '524288' [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_guest` ADD `mobile_theme` tinyint(1) NOT NULL DEFAULT 0: Duplicate column name 'mobile_theme' [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_orders` ADD `mobile_theme` tinyint(1) NOT NULL DEFAULT 0 AFTER `gift_message`: Duplicate column name 'mobile_theme' [ERROR] SQL 1.5.4.0 1060 in ALTER TABLE `ps_cart` ADD `mobile_theme` tinyint(1) NOT NULL DEFAULT 0 AFTER `gift_message`: Duplicate column name 'mobile_theme' [OK] SQL 1.5.4.0 ALTER TABLE `ps_address` CHANGE `phone` `phone` varchar(32) default NULL [OK] SQL 1.5.4.0 ALTER TABLE `ps_address` CHANGE `phone_mobile` `phone_mobile` varchar(32) default NULL [OK] PHP 1.5.4.0 : /* PHP:update_genders_images(); */ [OK] SQL 1.5.4.0 UPDATE `ps_customer` SET `id_gender` = 1 WHERE `email` LIKE '[email protected]' AND `id_customer` = 1 AND `id_gender` = 4 [OK] SQL 1.5.4.0 UPDATE `ps_cart_rule_carrier` crc INNER JOIN `ps_carrier` c ON crc.`id_carrier` = c.`id_carrier` SET crc.`id_carrier` = c.`id_reference` [OK] SQL 1.5.4.0 UPDATE `ps_order_payment` SET `order_reference` = LPAD(order_reference, 9 , '0') [OK] PHP 1.5.4.0 : /* PHP:p1540_add_missing_columns(); */ Update Db Ok files setting update [sKIP] directory "/tools/smarty/cache/" doesn't exist and cannot be emptied. [sKIP] directory "/tools/smarty/compile/" doesn't exist and cannot be emptied. [sKIP] directory "/tools/smarty_v2/cache/" doesn't exist and cannot be emptied. [sKIP] directory "/tools/smarty_v2/compile/" doesn't exist and cannot be emptied. does not appear in the admin tab of the module - opens a blank white page and no debugger shows no errors found the cause of the problem. Because of the module pm_advancedsearch4 Link to comment Share on other sites More sharing options...
acutbal Posted March 28, 2013 Share Posted March 28, 2013 Sorry bit you mean you have no cart at all nothing in the header or in the columns. Edit ..config/defines.inc.php and turn error reporting on define ('_PS_MODE_DEV_', true); also can you give a link to the site. Hi, I've edited ..config/defines.inc.php and changed value from false to true http://ubuntuone.com/1Jid8dnU1KyD6xRKYS6jSu And appeared this in the header: http://ubuntuone.com/4ewi7vutMUiWuJgK7hesk1 I can't give you my url because is under construction and is in maintenance mode. If you need something more please let me know. 1.000.000 thanks!!!! Link to comment Share on other sites More sharing options...
closeupman Posted March 28, 2013 Share Posted March 28, 2013 when try to run liveedit get: Page not available We're sorry, but the Web address you entered is no longer available To find a product, please type its name in the field below Also, if try to do guest checkout, guest must SAVE their info before seeing payment choices Link to comment Share on other sites More sharing options...
Recommended Posts