Jump to content

Jakketto

Members
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Activity
    Agency

Jakketto's Achievements

Newbie

Newbie (1/14)

5

Reputation

1

Community Answers

  1. Ciao @Tanzo.it io ho un VPS centos in cui é installato Prestashop 1.7.5.1. Ho installato il vostro modulo, ma quando clicco su ordine con obbligo di pagamento, scegliendo postepay, mi ritorna http 500. In un post precedente dicevi di controllare i permessi, ma io ho file a 644 e directory a 755... Che tu sappia sono richiesti permessi diversi? abilitando il debug, l'errore é "can't load order status" come se lo stato "Ricarica tramite PostePay" non fosse riconosciuto. sapresti come aiutarmi? Mi confermi che non prendete più i dati dei clienti? grazie!
  2. Hi Fred, I followed your procedure: Backed up mySQL backed up prestashop files exported my sql from mysqladmin and reimported on the second DB changed the config/settins.inc.php as you suggested modified the customer shop_id from 2 to 1 (1 was regular client on the old website, and 2 was the reseller ID) Tested it! My stored clients username did maintained the password and all the informations. I had to play with price rules and customers group in mysqladmin, as they are referenced to shop_id 2 and need to be changed to ID1. Every new client which request for login (using a very great module) is automatically created in shop_id1 Thank you very much for your help. As a prestashop newbie, I really appreciate it! Cico.
  3. Thank you Fred! I'll test it tonight or tomorrow! I'll let you know! PS: I'm sorry for your laptop, I hope it's all ok between us regarding previous conversations. ;-)
  4. Hi Fred! I'll never leaving your module! IT IS GREAT! I'll use it on my wholesale shop! ;-) My domain will remain the same, eg: www.mysite.com with 2 separate prestashop installations: store in a root subfolder(www.mysite.com/store), and resellers on another root subfolder (www.mysite.com/resellers). I'll use two separate mysql db instances. My question is to know if it's possible to accomplish this, and if exist a way to export the resellers customers from my mysql backup and import them on the new installation
  5. Hi Guys, I'm having some trouble with my multistore ecommerce site, regarding some paypal redirection and other stuffs that let my website not fits my company needs, so I decided to split my wholesalers and general customers prestashop multistore installation on two different prestashop installation (different folders) on the same public domain www.mystore.com, as to have: www.mystore.com/store and www.mystore.com/resellers Each of them is a separate mysql DB instance and they will have two separate BOs. (it will be complex to administer, but it's OK for us) Is this possible? Is there any way to extract customer's profiles (username, password, company info etc etc) that has been registered so far in the existing multistore site, and import them on the splitted dedicated prestashop installation? (store or resellers) Thanks to all who will help me with this information! Cico.
  6. Ciao ragazzi, sto testando questo modulo col sistema di test GestPay dal mio sito di ecommerce online. Ho inserito gli IP sul back di GestPay e sui test ricevo: Encoding Error: 1109 Parametro mancante Di che si tratta? Grazie!
  7. Grazie! Ho modificato i campi da SIRET a P. IVA, ma se inserisco un valore errato, il messaggio di errore del form mi dice: campo SIRET non valido. Come si fa a modificare quell'output in modo che dica: "Campo P. IVA non valido"? Grazie a tutti!
  8. Ciao, io ho risolto (almeno nella validazione della p.i. modificando questo file: classes/Validate.php /** * Validate SIRET Code * @static * @param $siret SIRET Code * @return boolean Return true if is valid */ public static function isSiret($siret) { return (bool)preg_match('/^[0-9]{11}$/s', $siret); /* if (Tools::strlen($siret) != 14) return false; $sum = 0; for ($i = 0; $i != 14; $i++) { $tmp = ((($i + 1) % 2) + 1) * intval($siret[$i]); if ($tmp >= 10) $tmp -= 9; $sum += $tmp; } return ($sum % 10 === 0); */ } Inserisci il codice in rosso e anche i commenti ( /* e */) che trovi in rosso. Non sono però riuscito a rinamonare la dicitura SIRET in P.IVA. In questo modo, per il campo SIRET accetterà una stringa numerica di 11 cifre Ciao!
×
×
  • Create New...