Arredo Mobili Outlet: differenze tra le versioni
Da Webmobili Wiki.
| Riga 23: | Riga 23: | ||
* '''pass''': <code>Arredo!2</code> | * '''pass''': <code>Arredo!2</code> | ||
* ''Avanzate'' => | * ''Avanzate'' => | ||
=== Easy Store Web === | |||
<syntaxhighlight lang="php"> | |||
<?php | |||
return array( | |||
"environment" => "production", | |||
"sorgente-dati" => "esw", // valori esw o designbest o designbest-esw | |||
// Configurazione esw | |||
"esw_api-domain" => "https://easyapi6.eswportal.it", | |||
"esw_negoziocode" => "DT", | |||
"esw-codicemagazzino" => ["DTM"], | |||
"esw-codicevenditore" => "DTI012", | |||
"esw-incassi-codice_causale" => "05SLD", | |||
"esw-servizi-codice" => "COLS", | |||
"esw-mapping-pagamenti" => ["bacs" => "BON","wc_gateway_gestpay"=> "CC","satispay"=> "CC","wc-scalapay-payin3"=> "CC"], | |||
// Per gestire i clienti che hanno i campi cf, piva e sdi creati con altri plugin | |||
"esw-customer-ordermetadata" => [ | |||
"create" => false, // se true crea i campi customCheckoutFields e li mostra in backoffice | |||
"cf" => "_billing_dtime_private_fiscal_code", | |||
"piva" => "_billing_dtime_company_vat", | |||
"sdi" => "_billing_dtime_cod_destinatario" | |||
], | |||
//PROD | |||
"esw-x-apikey" => "nHJ78b/X3EmqIHgV849m9kJ4YWJHWlY4N1VTTWYwM2NRZUZOSmc=", | |||
"esw-dbconnection" => "218_MOROARREDAMENTI", | |||
); | |||
?> | |||
</syntaxhighlight> | |||
Versione delle 10:13, 2 ott 2024
Cliente che ha Woocommerce e vuole l'integrazione con EasyStore
Come siamo messi
Attendiamo upgrade, se possibile, dal cliente a PHP 8. E poi potrem fare delle prove.
Credenziali
Ci hanno fornito solamente le credenziali per il Test, una volta ok trasferiranno tutto in Prod
Wordpress
- Dominio:
- Dominio di Test:
https://arredly.it/arredomobilioutlet/ - Username:
a.ughetto@webmobili.it - Password:
f)vBNd!PN@CNSHRxQjPYlLj7
FTP
Configurare con i seguenti dati
- protocollo :
FTP - host produzione:
- host staging:
c126056.sgvps.net - port:
21 - user:
ughetto@arredly.it - pass:
Arredo!2 - Avanzate =>
Easy Store Web
<?php
return array(
"environment" => "production",
"sorgente-dati" => "esw", // valori esw o designbest o designbest-esw
// Configurazione esw
"esw_api-domain" => "https://easyapi6.eswportal.it",
"esw_negoziocode" => "DT",
"esw-codicemagazzino" => ["DTM"],
"esw-codicevenditore" => "DTI012",
"esw-incassi-codice_causale" => "05SLD",
"esw-servizi-codice" => "COLS",
"esw-mapping-pagamenti" => ["bacs" => "BON","wc_gateway_gestpay"=> "CC","satispay"=> "CC","wc-scalapay-payin3"=> "CC"],
// Per gestire i clienti che hanno i campi cf, piva e sdi creati con altri plugin
"esw-customer-ordermetadata" => [
"create" => false, // se true crea i campi customCheckoutFields e li mostra in backoffice
"cf" => "_billing_dtime_private_fiscal_code",
"piva" => "_billing_dtime_company_vat",
"sdi" => "_billing_dtime_cod_destinatario"
],
//PROD
"esw-x-apikey" => "nHJ78b/X3EmqIHgV849m9kJ4YWJHWlY4N1VTTWYwM2NRZUZOSmc=",
"esw-dbconnection" => "218_MOROARREDAMENTI",
);
?>