Jump to content

Atomico

Members
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • First Name
    Cri
  • Last Name
    Espo

Atomico's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

1

Reputation

  1. Try to paste your psblog.php on pastebin and give me the link.
  2. Hello, i have a module that give me error when i set php 7.1+ while work when i set php 7.0. I have Prestashop 1.7.6.8 Someone know if this is fixable? i'd like use a supported php version, 7.0 is too old. Thanks
  3. Ho risolto, a riga 204 di psblog.php modifica tutti i $this->l con $this->trans, ce ne sono 4 o 5 da editare a distanza di poche righe. Ora funziona
  4. Found solution. row 204 of psblog.php edit all $this->l with $this->trans, there are about 4-5 of them.
  5. Hi, you can set the main product price at 0€..and set the absolute price in combinations.
  6. Hi i have the same problem, but i have no cronjob e no query in requestSQL.. any other idea?
  7. sliders everywhere is a good module but only for slider.. it doesn't create gallery
  8. Ecco alcune modifiche che ho fatto: 1) Bug con mysql 5.7 che non permette di avere una chiave primaria settata a null File: homesliderpro.php Linea: 296 Trovare: $res &= (bool)Db::getInstance()->execute(' CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'sesliders_slideconf` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_shop` int(10) unsigned NOT NULL, `id_hook` varchar(255) NULL, `conf` text NULL, PRIMARY KEY (`id`, `id_hook`) ) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=UTF8; '); Sostituire con: $res &= (bool)Db::getInstance()->execute(' CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'sesliders_slideconf` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_shop` int(10) unsigned NOT NULL, `id_hook` varchar(255) NULL, `conf` text NULL, PRIMARY KEY (`id`) ) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=UTF8; '); Linea 1163 Trovare: if(!$this->tableExists(_DB_PREFIX_.'sesliders_slideconf')) { $res2 = (bool)Db::getInstance()->execute(' CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'sesliders_slideconf` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_shop` int(10) unsigned NOT NULL, `id_hook` varchar(255) NULL, `conf` text NULL, PRIMARY KEY (`id`, `id_hook`) ) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=UTF8; '); Sostituire con: if(!$this->tableExists(_DB_PREFIX_.'sesliders_slideconf')) { $res2 = (bool)Db::getInstance()->execute(' CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'sesliders_slideconf` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_shop` int(10) unsigned NOT NULL, `id_hook` varchar(255) NULL, `conf` text NULL, PRIMARY KEY (`id`) ) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=UTF8; ');
  9. Ciao misthero, volevo solo avvisarti che ho trovato un paio di bugs che ho fixato per me.. posso condividerteli in qualche modo?
  10. ciao, avevo già visto.. 0 errori js, e la chiamata in ajax apparentemente va con successo.. i dati passati sono corretti e come risposta ho 200 con risposta "Configuration updated" Per questo è molto strano, ma non capisco perchè.
  11. Ciao e complimenti per aver offerto alla community questo super modulo in modalità gratuita. Ho un problema.. non riesco in nessun modo a salvare le impostazioni di uno slider. lo creo, aggiungo le immagini ma quando devo configurare la parte dei controlli, animazioni, ecc mi dice configuration updated ma in realtà non è vero.. appena aggiorno la pagina mi ritrovo i settaggi di default. Uso prestashop 1.6.1.10. Grazie
×
×
  • Create New...