Jump to content

SOLVED Error when creating account


Recommended Posts

Hello.
After the upgrade for prestashop 1.1, everytime someone tries to create an account in my shop, at the end after completing all the details and when the customer clicks the register button the person gets a bunch of gibberish.

Here is a little example:
* @author PrestaShop * @copyright PrestaShop * @license http://www.opensource.org/licenses/osl-3.0.php Open-source licence 3.0 * @version 1.1 * */ class Address extends ObjectModel { /** @var integer Customer id which address belongs */ public $id_customer = NULL; /** @var integer Manufacturer id which address belongs */ public $id_manufacturer = NULL; /** @var integer Supplier id which address belongs */ public $id_supplier = NULL; /** @var integer Country id */ public $id_country; /** @var integer Country id */ public $id_state; /** @var string Country name */ public $country; /** @var string Alias (eg. Home, Work...) */ public $alias; /** @var string Company (optional) */ public $company; /** @var string Lastname */ public $lastname; /** @var string Firstname */ public $firstname; /** @var string Address first line */ public $address1; /** @var string Address second line (optional) */ public $address2; /** @var string Postal code */ public $postcode; /** @var string City */ public $city; /** @var string Any other useful information */ public $other; /** @var string Phone number */ public $phone; /** @var string Mobile phone number */ public $phone_mobile; /** @var string Object creation date */ public $date_add; /** @var string Object last ....

Please help me solving this issue.
Thanks.

Link to comment
Share on other sites

×
×
  • Create New...