Jump to content

howardliptzin

Members
  • Posts

    25
  • Joined

  • Last visited

Profile Information

  • Activity
    User/Merchant

howardliptzin's Achievements

Rookie

Rookie (2/14)

  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare
  • Week One Done Rare
  • One Month Later Rare

Recent Badges

1

Reputation

  1. thanks, I've already checked all the country settings in the entire localization section, and there are no relevant restrictions. I guess it's a prestashop problem. I've contacted a developer on Upwork to help. 😮 Thanks for your help, I appreciate it.
  2. Hey it worked!! THANKS FOR YOUR HELP. 😃 But now I notice a few more things wrong. (I don't know what happened to "break" the site...) (1) The "State" pull down has the same problem. (2) I do not see any Zip Code field. (3) Whenever I login as a customer on the front end, when I click on the add address link the page refreshes to an address form without full header or footer of the site. When i click to go back to the home I just see blank white page with just the logo. When I clear the browser's cache, the site is back again, but if I login again and try insert an address the same thing happens over and over again. It would be great if you or someone out there could help me again. -H
  3. Hello, thanks for the info, but I do not fully understand the instructions. You wrote: I do not understand what you mean by "try to print this". Print the code on paper? Why do I have to print and not just read the file on the screen? And then -- what do you mean if it contains ANYTHING? What do you mean by ANYTHING!? Please explain this again in other words or with more detail. THANKS!
  4. (1) In root/controllers/front/addresscontroller.php file I found the assignCountries section (pasted in below). (2) The file addresscontroller.php does NOT exist in the path root/override/controllers/front/addresscontroller.php Here is the code: protected function assignCountries() { $this->id_country = (int)Tools::getCountry($this->_address); // Generate countries list if (Configuration::get('PS_RESTRICT_DELIVERED_COUNTRIES')) { $countries = Carrier::getDeliveredCountries($this->context->language->id, true, true); } else { $countries = Country::getCountries($this->context->language->id, true); } // @todo use helper $list = ''; foreach ($countries as $country) { $selected = ((int)$country['id_country'] === $this->id_country) ? ' selected="selected"' : ''; $list .= '<option value="'.(int)$country['id_country'].'"'.$selected.'>'.htmlentities($country['name'], ENT_COMPAT, 'UTF-8').'</option>'; } // Assign vars $this->context->smarty->assign(array( 'countries_list' => $list, 'countries' => $countries, 'sl_country' => (int)$this->id_country, )); } /** * Assign template vars related to address format */ (2)
  5. I disabled modules, cleared the prestashop cache and the browser, logged out, logged back in and still the problem persists.
  6. Yes, exactly. I even turned off the address option in initial registration and the same thing happened on the address creation form later on.
  7. Hello, I am running PS 1.6.1.7 and recently discovered that when new customers register their addresses, the country pull down menu is blank. There's nothing to choose from. Something got corrupted or changed, because it used to work just fine. In the Localization tab in the back office, all countries are properly activated. When I go to the configuration page, the only notes I see are listed below. I have no idea if any of these are relevant. Can anyone help? Any suggestions? THANKS! Missing files (1) admin3348/filemanager/uploader/success.php Updated files (5) admin3348/ajax.php admin3348/autoupgrade/index.php admin3348/themes/default/template/controllers/products/helpers/form/form.tpl controllers/admin/AdminAccessController.php controllers/front/ContactController.php
  8. did you ever get it to work? I have the same problem!
  9. HELP same problem here! i saw some thread for similar problems with older versions involving .htaccess files. Any ideas? Please help...
  10. Hello I have the same problem upgrading from 1.6.0.9 to .14 I am not on shared hosting, i have a VPS and my php.ini file values are: max_execution_time = 300 ; Maximum execution time of each script, in seconds max_input_time = 300 ; Maximum amount of time each script may spend parsing request data max_input_vars = 6040 memory_limit = 512M ; Maximum amount of memory a script may consume (32MB) Any ideas? -H
  11. Hello, my issue is slightly different: I have an instance of 1.5 on a shared hosting service, and I want to upgrade the store to 1.6 on my new VPS, but my custom theme will not run on 1.6, so if I do the 1-click upgrade i will essentially take my store offline until I can get the new one up and running. This is not an option. I would like to somehow export and convert the 1.5 DB to 1.6 without actually upgrading the 1.5 store, then import the upgraded DB into my new instance. Ideas? Much appreciated, Howard
×
×
  • Create New...