Jump to content

ZikmaSolutions

Members
  • Posts

    302
  • Joined

  • Last visited

5 Followers

Profile Information

  • Location
    Serbia
  • Interests
    Prestashop Developers
  • Activity
    Developer

Recent Profile Visitors

2,184,517 profile views

ZikmaSolutions's Achievements

  1. I know that topic is old like many others but I had findout how to avoid this error. Error is about unzip downloaded new version. You just need to extract that new .zip file from /admin*****/autoupgrade/download to /admin******/autoupgrade/latest . 1-Click Upgrade module will avoid download and uzip function and will start with overwriting new files.
  2. I know that topic is old like many others but I had findout how to avoid this error. Error is about unzip downloaded new version. You just need to extract that new .zip file from /admin*****/autoupgrade/download to /admin******/autoupgrade/latest . 1-Click Upgrade module will avoid download and uzip function and will start with overwriting new files.
  3. Hahah, i have worked on website panontherm.co.rs few months ago prestashop websites in serbia developed by me: www.rasvetakandela.com www.amour.rs
  4. My solution is here: https://www.prestashop.com/forums/topic/909645-prestashop-16-bo-module_listxml-file-errors-solution-for-fixing/?do=findComment&comment=2983123
  5. Maybe I have found a solution. Need to change something to this file: /public_html/classes/controller/AdminController.php at line 2159 and change libxml_use_internal_errors(true) to (false) . Errors are not displayed now. libxml_use_internal_errors(false); $country_module_list = file_get_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_DEFAULT_COUNTRY_MODULES_LIST); $must_have_module_list = file_get_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_MUST_HAVE_MODULES_LIST); $all_module_list = array(); if (!empty($country_module_list) && $country_module_list_xml = @simplexml_load_string($country_module_list)) { $country_module_list_array = array(); if (is_object($country_module_list_xml->module)) { foreach ($country_module_list_xml->module as $k => $m) { $all_module_list[] = (string)$m->name; } } } else { foreach (libxml_get_errors() as $error) { $this->errors[] = Tools::displayError(sprintf('Error found : %1$s in country_module_list.xml file.', $error->message)); } }
  6. Today, like most of you , we got new bag, new problem, new issue with Presta Shop. Today problem is: 4 errors Error found : CData section not finished Use this native module to connect with your custom in country_module_list.xml file. Error found : Premature end of data in tag additional_description line 1 in country_module_list.xml file. Error found : Premature end of data in tag module line 1 in country_module_list.xml file. Error found : Premature end of data in tag modules line 1 in country_module_list.xml file. Version is latest 1.6.1.21 , related 3. October 2018. Fresh install. No modules, no customizing, no products.
  7. Same problem here on all clients websites. Anyone have solution for fixing this?
  8. Hi there, If you want to do the work of building out separate entity profiles and link value for multiple subdomains, go right ahead. Google really doesn’t care whether they rank subdomains or subfolders. But if you’re maxed out on time fully optimizing one domain, let alone multiple domains, then subfolders are probably a better option for you. WordPress + Prestashop will work well, but don't go with shared host.
  9. Guys, I have problem with blank pages with adding products. Site is 1.6.1.20 but I want to update to 1.21 . What you think about that?
  10. Thanks man. deleting blockreassurence, contactform, all ps_xx modules fixed problem.
  11. Hi there, I don't know if you still are here on prestashop forum but have informations how to fix this annoying prestashop bug. Just go there -> YOUR-WEBSITE/adminfolder/themes/default/template/controllers/products/ There you will find .tpl files for each tab from product page (Informations, Price, Shipping, Feature, Images etc) Open first informations.tpl file , search and delete this: disabled="disabled" and then next of that find <i class="process-icon-loading"> and change "loading" to "save". That code need to looks like <i class="process-icon-save"> You have to do that twice at each file you edit. 1. for Save and stay button and 2. for Save button. Repeat that in each file for each tab. You can thanks me later
  12. Hi there, I don't know if you still are here on prestashop forum but have informations how to fix this annoying prestashop bug. Just go there -> YOUR-WEBSITE/adminfolder/themes/default/template/controllers/products/ There you will find .tpl files for each tab from product page (Informations, Price, Shipping, Feature, Images etc) Open first informations.tpl file , search and delete this: disabled="disabled" and then next of that find <i class="process-icon-loading"> and change "loading" to "save". That code need to looks like <i class="process-icon-save"> You have to do that twice at each file you edit. 1. for Save and stay button and 2. for Save button. Repeat that in each file for each tab. You can thanks me later
  13. Hi there, I don't know if you still are here on prestashop forum but have informations how to fix this annoying prestashop bug. Just go there -> YOUR-WEBSITE/adminfolder/themes/default/template/controllers/products/ There you will find .tpl files for each tab from product page (Informations, Price, Shipping, Feature, Images etc) Open first informations.tpl file , search and delete this: disabled="disabled" and then next of that find <i class="process-icon-loading"> and change "loading" to "save". That code need to looks like <i class="process-icon-save"> You have to do that twice at each file you edit. 1. for Save and stay button and 2. for Save button. Repeat that in each file for each tab. You can thanks me later
  14. Hi there, I don't know if you still are here on prestashop forum but have informations how to fix this annoying prestashop bug. Just go there -> YOUR-WEBSITE/adminfolder/themes/default/template/controllers/products/ There you will find .tpl files for each tab from product page (Informations, Price, Shipping, Feature, Images etc) Open first informations.tpl file , search and delete this: disabled="disabled" and then next of that find <i class="process-icon-loading"> and change "loading" to "save". That code need to looks like <i class="process-icon-save"> You have to do that twice at each file you edit. 1. for Save and stay button and 2. for Save button. Repeat that in each file for each tab. You can thanks me later
×
×
  • Create New...