Jump to content

SoloWay

Members
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Location
    Kyiv
  • Activity
    Other

SoloWay's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi. Try this: http://www.prestashop.com/forums/topic/242658-solved-install-modules-error-on-initial-install/ or this: https://github.com/PrestaShop/PrestaShop/commit/00addeef5766979b62ef9ab5cd6104a111ef64e7
  2. Works fine for me. Default back and front are ok. Test other solution... Replace this: $class = get_class($object); $fields = $class::$definition['fields']; With this: $class_vars = get_class_vars(get_class($object)); $fields = $class_vars['fields']; Works fine for me too. P.S. My PHP Version: 5.2.6-1+lenny13
  3. Changing $fields = $class::$definition['fields']; to $fields = $class->$definition['fields']; in /classes/controller/AdminController.php on line 3101 fixes the problem with installation. Dear developers, is this correct solution?
  4. Some investigation results... FireBug: URL Status GET index.php?configureShop=true&_=1403169508793 500 Internal Server Error And from error log: [19-Jun-2014 12:18:41] PHP Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /var/www/domain.com/classes/controller/AdminController.php on line 3101 Hope this helps. Thank You.
×
×
  • Create New...