| Autore |
Messaggio |
ragio Nuovo entrato

Registrato: 11 Gen 2004
Messaggi: 9
Profilo
|
  Inviato:
11 Gen 2004 - 19:49 |
|
| Oggetto: Configurazione pagamenti e spese spedizione su stati diversi |
ciao,
ho installato il modulo per il pagamento con cc banca sella e mi da il seguente errore:
Warning: process_button(classes/GestPayCrypt.lib.php): failed to open stream: No such file or directory in /web/htdocs/www.mysite.com/home/modules/catalog/includes/modules/payme nt/bancasella.php on line 83
Fatal error: process_button(): Failed opening required 'classes/GestPayCrypt.lib.php' (include_path='.:/usr/local/lib/php') in /web/htdocs/www.mysite.com/home/modules/catalog/includes/modules/payme nt/bancasella.php on line 83
mi sapete indicare cos'è?
thx
fabrizio |
|
|
Rispondi citando |
 |
|
MAXdev Info MAXdev vi informa
|
Inviato:
11 Gen 2004 - 19:49 |
|
|
|
|
 |
capretta Moderatore


Registrato: 31 Dic 1969
Messaggi: 3635
Località: ValdOrcia
Profilo
|
  Inviato:
13 Gen 2004 - 01:13 |
|
| Oggetto: Re: Immagini prodotti diverse in OSCOMMERCE |
ciao,
ha copiato solo parte del modulo: ti manca il GestPayCript, la seconda parte del modulo che trovi tra i nostri download.
ciao |
|
|
Rispondi citando |
 |
ragio Nuovo entrato

Registrato: 11 Gen 2004
Messaggi: 9
Profilo
|
  Inviato:
13 Gen 2004 - 02:00 |
|
| Oggetto: Re: OT - Accidenti mi sono imbattuto in zen-cart !!! :) |
scusa ma io avevo già scaricato ed installato il file sellacrypt con dentro il gestpaycrypt.
...non ho capito cosa devo fare alla luce dell'errore che mi da.
thx
fabrizio |
|
|
Rispondi citando |
 |
v_stepro Nuovo entrato

Registrato: 07 Giu 2003
Messaggi: 13
Località: soverato (CZ)
Profilo
|
  Inviato:
14 Gen 2004 - 15:58 |
|
| Oggetto: Warning sulla cartella session.php |
Assicurati di aver pubblicato il file GestPayCrypt.lib.php nella cartella catalog/include/classes
Io invece ho un altro problema con banca sella , eseguo la transazione ma al termine della transazione mi ritorna sulla pagina login.php , sono cosi costretto a rifare il login e mi trovo il carrello ancora pieno.
Anche se la comunicazione server to server mediante la pagina s2s.php è avvenuta correttamente. |
|
|
Rispondi citando |
 |
ragio Nuovo entrato

Registrato: 11 Gen 2004
Messaggi: 9
Profilo
|
  Inviato:
11 Feb 2004 - 03:31 |
|
| Oggetto: chmod |
Nessuno mi sa dire perchè mi da questo errore?
Il gestpaycript.lib.php l'ho inserito in catalog/include/classes ed è il seguente:
<?php
/*
* GestPayCrypt e GestPayCryptHS 0.9.1
* Copyright (C) 2001 Alessandro Astarita
*
* Modifiche:
* 22/06/2003 Aggiornamento alla versione 2.0
* effettuato da Stefano Vita Finzi <stefano.vita@pronesis.it>
*
* Implementazione in PHP della classe GestPayCrypt e GestPayCryptHS
* (connessione HTTPS) di Bancasella
*
* Per utilizzare la classe GestPayCryptHS e' necessario installare
* curl (http://curl.haxx.se), disponibile sia per piattaforme unix
* che windows.
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details at
* http://www.gnu.org/copyleft/lgpl.html
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
// Path curl
define("CURL_BIN", "/usr/bin/curl");
class GestPayCrypt
{
// Public
var $ShopLogin; // Shop Login che identifica l'esercente
var $Currency; // Codice che identifica la divisa in cui e' denominato l'importo
var $Amount; // Importo della transazione
var $ShopTransactionID; // Identificativo attribuito alla transazione dall'esercente
var $CardNumber; // Numero carta di credito
var $ExpMonth; // Mese di scadenza carta di credito
var $ExpYear; // Anno di scadenza carta di credito
var $BuyerName; // Nome e cognome dell'acquirente
var $BuyerEmail; // Indirizzo email dell'acquirente
var $Language; // Lingua selezionata
var $CustomInfo; // Info aggiuntive
var $AuthorizationCode; // Codice di autorizzazione della transazione;
var $ErrorCode; // Codice di errore
var $ErrorDescription; // Descrizione errore
var $BankTransactionID; // Identificativo attribuito alla transazione da GestPay
var $AlertCode; // Codice alert
var $AlertDescription; // Descrizione alert
var $EncryptedString; // Stringa cifrata
var $ToBeEncript; // Stringa da cifrare
var $Decrypted;
var $TransactionResult; // Esito transazione
var $ProtocolAuthServer = '';
var $DomainName = '';
var $separator;
var $errDescription;
var $errNumber;
var $Version='2.0';
var $Min='';
var $CVV='';
var $country='';
var $vbvrisp='';
var $vbv='';
function GestPayCrypt()
{/*init value*/
$this->ShopLogin = "";
$this->Currency = "";
$this->Amount = "";
$this->ShopTransactionID = "";
$this->CardNumber = "";
$this->ExpMonth = "";
$this->ExpYear = "";
$this->BuyerName = "";
$this->BuyerEmail = "";
$this->Language = "";
$this->CustomInfo = "";
$this->AuthorizationCode = "";
$this->ErrorCode = "0";
$this->ErrorDescription = "";
$this->BankTransactionID = "";
$this->AlertCode = "";
$this->AlertDescription = "";
$this->EncryptedString = "";
$this->ToBeEncrypt = "";
$this->Decrypted = "";
$this->ProtocolAuthServer = "http";
$this->DomainName = "ecomm.sella.it";
$this->ScriptEnCrypt = "/CryptHTTP/Encrypt.asp";
$this->ScriptDecrypt = "/CryptHTTP/Decrypt.asp";
$this->separator = "*P1*";
$this->errDescription = "";
$this->errNumber = "0";
$this->Min = "";
$this->CVV = "";
$this->country = "";
$this->vbvrisp = "";
$this->vbv = "";
$this->debug = FALSE;
}
// Public
// Metodi di valorizzazione attributi
function SetShopLogin($val)
{
$this->ShopLogin = $val;
}
function SetCurrency($val)
{
$this->Currency = $val;
}
function SetAmount($val)
{
$this->Amount = $val;
}
function SetShopTransactionID($val)
{
$this->ShopTransactionID = urlencode(trim($val));
}
function SetCardNumber($val)
{
$this->CardNumber = $val;
}
function SetExpMonth($val)
{
$this->ExpMonth = $val;
}
function SetExpYear($val)
{
$this->ExpYear = $val;
}
function SetMIN($val)
{
$this->Min = $val;
}
function SetCVV($val)
{
$this->CVV = $val;
}
function SetBuyerName($val)
{
$this->BuyerName = urlencode(trim($val));
}
function SetBuyerEmail($val)
{
$this->BuyerEmail = trim($val);
}
function SetLanguage($val)
{
$this->Language = trim($val);
}
function SetCustomInfo($val)
{
$this->CustomInfo = urlencode(trim($val));
}
function SetEncryptedString($val)
{
$this->EncryptedString = $val;
}
// Metodi di lettura attributi
function GetShopLogin()
{
return $this->ShopLogin;
}
function GetCurrency()
{
return $this->Currency;
}
function GetAmount()
{
return $this->Amount;
}
function GetCountry()
{
return $this->country;
}
function GetVBV()
{
return $this->vbv;
}
function GetVBVrisp()
{
return $this->vbvrisp;
}
function GetShopTransactionID()
{
return urldecode($this->ShopTransactionID);
}
function GetBuyerName()
{
return urldecode($this->BuyerName);
}
function GetBuyerEmail()
{
return $this->BuyerEmail;
}
function GetCustomInfo()
{
return urldecode($this->CustomInfo);
}
function GetAuthorizationCode()
{
return $this->AuthorizationCode;
}
function GetErrorCode()
{
return $this->ErrorCode;
}
function GetErrorDescription()
{
return $this->ErrorDescription;
}
function GetBankTransactionID()
{
return $this->BankTransactionID;
}
function GetTransactionResult()
{
return $this->TransactionResult;
}
function GetAlertCode()
{
return $this->AlertCode;
}
function GetAlertDescription()
{
return $this->AlertDescription;
}
function GetEncryptedString()
{
return $this->EncryptedString;
}
function Encrypt()
{
$err = "";
$this->ErrorCode = "0";
$this->ErrorDescription = "";
$this->ToBeEncrypt = "";
if (empty($this->ShopLogin)) {
$this->ErrorCode = "546";
$this->ErrorDescription = "IDshop not valid";
return false;
}
if (empty($this->Currency)) {
$this->ErrorCode = "552";
$this->ErrorDescription = "Currency not valid";
return false;
}
if (empty($this->Amount)) {
$this->ErrorCode = "553";
$this->ErrorDescription = "Amount not valid";
return false;
}
if (empty($this->ShopTransactionID)) {
$this->ErrorCode = "551";
$this->ErrorDescription = "Shop Transaction ID not valid";
return false;
}
$this->ToEncrypt($this->CVV, "PAY1_CVV");
$this->ToEncrypt($this->Min, "PAY1_MIN");
$this->ToEncrypt($this->Currency, "PAY1_UICCODE");
$this->ToEncrypt($this->Amount, "PAY1_AMOUNT");
$this->ToEncrypt($this->ShopTransactionID, "PAY1_SHOPTRANSACTIONID");
$this->ToEncrypt($this->CardNumber, "PAY1_CARDNUMBER");
$this->ToEncrypt($this->ExpMonth, "PAY1_EXPMONTH");
$this->ToEncrypt($this->ExpYear, "PAY1_EXPYEAR");
$this->ToEncrypt($this->BuyerName, "PAY1_CHNAME");
$this->ToEncrypt($this->BuyerEmail, "PAY1_CHEMAIL");
$this->ToEncrypt($this->Language, "PAY1_IDLANGUAGE");
$this->ToEncrypt($this->CustomInfo, "");
$this->ToBeEncrypt = str_replace(" ", "§", $this->ToBeEncrypt);
$uri = $this->ScriptEnCrypt."?a=".$this->ShopLogin.
"&b=".substr($this->ToBeEncrypt, strlen($this->separator));
if ($this->debug) {
//$this->HostName = "localhost";
//$uri = "/~asterix/GestPayCrypt/Encrypt.asp.txt";
echo "URL richiesta: ".$this->ProtocolAuthServer."://".$this->DomainName.$uri."n";
}
$this->EncryptedString = $this->HttpGetResponse($this->DomainName, $uri, true);
if ($this->EncryptedString == -1) {
return false;
}
if ($this->debug) {
echo "Stringa criptata: ".$this->EncryptedString."n";
}
return true;
}
function Decrypt()
{
$err = "";
$this->ErrorCode = "0";
$this->ErrorDescription = "";
if (empty($this->ShopLogin)) {
$this->ErrorCode = "546";
$this->ErrorDescription = "IDshop not valid";
return false;
}
if (empty($this->EncryptedString)) {
$this->ErrorCode = "1009";
$this->ErrorDescription = "String to Decrypt not valid";
return false;
}
$uri = $this->ScriptDecrypt."?a=".$this->ShopLogin.
"&b=".$this->EncryptedString;
if ($this->debug) {
//$this->HostName = "localhost";
//$uri = "/~asterix/GestPayCrypt/Decrypt.asp.txt";
echo "URL richiesta: ".$this->ProtocolAuthServer."://".$this->DomainName.$uri."n";
}
$this->Decrypted = $this->HttpGetResponse($this->DomainName, $uri, false);
if ($this->Decrypted == -1) {
return false;
}
elseif (empty($this->Decrypted)) {
$this->ErrorCode = "9999";
$this->ErrorDescription = "Empty decrypted string";
return false;
}
$this->Decrypted = str_replace("§", " ", $this->Decrypted);
if ($this->debug) {
echo "Stringa decriptata: ".$this->Decrypted."n";
}
$this->Parsing();
return true;
}
// Private
function ToEncrypt($value, $tagvalue)
{
$equal = $tagvalue ? "=" : "";
if (!empty($value)) {
$this->ToBeEncrypt .= $this->separator.$tagvalue.$equal.$value;
}
}
function HttpGetResponse($host, $uri, $crypt)
{
$response = "";
$req = $crypt ? "crypt" : "decrypt";
$line = $this->HttpGetLine($host, $uri);
if ($line == -1)
return -1;
if ($this->debug) {
//echo $line;
}
if (preg_match("/#".$req."string#([wW]*)#/".$req."string#/", $line, $reg)) {
$response = trim($reg[1]);
}
elseif (preg_match("/#error#([wW]*)#/error#/", $line, $reg)) {
$err = explode("-", $reg[1]);
if (empty($err[0]) && empty($err[1])) {
$this->ErrorCode = "9999";
$this->ErrorDescription = "Unknown error";
}
else {
$this->ErrorCode = trim($err[0]);
$this->ErrorDescription = trim($err[1]);
}
return -1;
}
else {
$this->ErrorCode = "9999";
$this->ErrorDescription = "Response from server not valid";
return -1;
}
return $response;
}
function HttpGetLine($host, $uri)
{
$in = fsockopen($host, 80, $errno, $errstr, 60);
if (!$in) {
$this->ErrorCode = "9999";
$this->ErrorDescription = "Impossible to connect to host: ".$host;
return -1;
}
else {
fputs($in, "GET ".$uri." HTTP/1.0rnrn");
}
$line = "";
// Salta gli header
while (fgets($in, 4096) != "rn")
;
// Legge solo la prima riga
$line = fgets($in, 4096);
fclose($in);
return $line;
}
function Parsing()
{
$keyval = explode($this->separator, $this->Decrypted);
foreach ($keyval as $tagPAY1) {
$tagPAY1val = explode("=", $tagPAY1);
if (ereg("^PAY1_UICCODE", $tagPAY1)) {
$this->Currency = $tagPAY1val[1];
}
elseif (ereg("^PAY1_AMOUNT", $tagPAY1)) {
$this->Amount = $tagPAY1val[1];
}
elseif (ereg("^PAY1_SHOPTRANSACTIONID", $tagPAY1)) {
$this->ShopTransactionID = $tagPAY1val[1];
}
elseif (ereg("^PAY1_CHNAME", $tagPAY1)) {
$this->BuyerName = $tagPAY1val[1];
}
elseif (ereg("^PAY1_CHEMAIL", $tagPAY1)) {
$this->BuyerEmail = $tagPAY1val[1];
}
elseif (ereg("^PAY1_AUTHORIZATIONCODE", $tagPAY1)) {
$this->AuthorizationCode = $tagPAY1val[1];
}
elseif (ereg("^PAY1_ERRORCODE", $tagPAY1)) {
$this->ErrorCode = $tagPAY1val[1];
}
elseif (ereg("^PAY1_ERRORDESCRIPTION", $tagPAY1)) {
$this->ErrorDescription = $tagPAY1val[1];
}
elseif (ereg("^PAY1_BANKTRANSACTIONID", $tagPAY1)) {
$this->BankTransactionID = $tagPAY1val[1];
}
elseif (ereg("^PAY1_ALERTCODE", $tagPAY1)) {
$this->AlertCode = $tagPAY1val[1];
}
elseif (ereg("^PAY1_ALERTDESCRIPTION", $tagPAY1)) {
$this->AlertDescription = $tagPAY1val[1];
}
elseif (ereg("^PAY1_CARDNUMBER", $tagPAY1)) {
$this->CardNumber = $tagPAY1val[1];
}
elseif (ereg("^PAY1_EXPMONTH", $tagPAY1)) {
$this->ExpMonth = $tagPAY1val[1];
}
elseif (ereg("^PAY1_EXPYEAR", $tagPAY1)) {
$this->ExpYear = $tagPAY1val[1];
}
elseif (ereg("^PAY1_COUNTRY", $tagPAY1)) {
$this->ExpYear = $tagPAY1val[1];
}
elseif (ereg("^PAY1_VBVRISP", $tagPAY1)) {
$this->ExpYear = $tagPAY1val[1];
}
elseif (ereg("^PAY1_VBV", $tagPAY1)) {
$this->ExpYear = $tagPAY1val[1];
}
elseif (ereg("^PAY1_IDLANGUAGE", $tagPAY1)) {
$this->Language = $tagPAY1val[1];
}
elseif (ereg("^PAY1_TRANSACTIONRESULT", $tagPAY1)) {
$this->TransactionResult = $tagPAY1val[1];
}
else {
$this->CustomInfo .= $tagPAY1.$this->separator;
}
}
$this->CustomInfo = substr($this->CustomInfo, 0, - strlen($this->separator));
}
}
class GestPayCryptHS extends GestPayCrypt
{
// Costruttore
function GestPayCryptHS()
{
$this->ShopLogin = "";
$this->Currency = "";
$this->Amount = "";
$this->ShopTransactionID = "";
$this->CardNumber = "";
$this->ExpMonth = "";
$this->ExpYear = "";
$this->BuyerName = "";
$this->BuyerEmail = "";
$this->Language = "";
$this->CustomInfo = "";
$this->AuthorizationCode = "";
$this->ErrorCode = "0";
$this->ErrorDescription = "";
$this->BankTransactionID = "";
$this->AlertCode = "";
$this->AlertDescription = "";
$this->EncryptedString = "";
$this->ToBeEncrypt = "";
$this->Decrypted = "";
$this->ProtocolAuthServer = "https";
$this->DomainName = "ecomm.sella.it";
$this->ScriptEnCrypt = "/CryptHTTPS/Encrypt.asp";
$this->ScriptDecrypt = "/CryptHTTPS/Decrypt.asp";
$this->separator = "*P1*";
$this->errNumber="0";
$this->Min="";
$this->CVV="";
$this->country="";
$this->vbvrisp="";
$this->vbv="";
$this->debug = TRUE;
}
function HttpGetLine($host, $uri)
{
$exec_str = CURL_BIN." -m 120 ".
""".$this->ProtocolAuthServer."://".$this->HostName.$uri."" -L";
exec($exec_str, $ret_arr, $ret_num);
if ($ret_num != 0) {
$this->ErrorCode = "9999";
$this->ErrorDescription = "Error while executing: ".$exec_str;
return -1;
}
if (!is_array($ret_arr)) {
$this->ErrorCode = "9999";
$this->ErrorDescription = "Error while executing: ".$exec_str." - ".
"$ret_arr is not an array";
return -1;
}
return $ret_arr[0];
}
}
?> |
|
|
Rispondi citando |
 |
v_stepro Nuovo entrato

Registrato: 07 Giu 2003
Messaggi: 13
Località: soverato (CZ)
Profilo
|
  Inviato:
11 Feb 2004 - 11:21 |
|
| Oggetto: Re: Simbolo euro |
Il tuo problema , non è dovuto al file GestPayCrypt.lib.php ma al puntamento su una cartella sbagliata. infatti il file viene cercato in classes/GestPayCrypt.lib.php mentre il percorso corretto è includes/classes/GestPayCrypt.lib.php
prova a controllare se in configure.php hai questa linea define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
e se nel file bancasella.php hai (rigo 83) require_once(DIR_WS_CLASSES . 'GestPayCrypt.lib.php');.
Saluti
Stefano |
|
|
Rispondi citando |
 |
ragio Nuovo entrato

Registrato: 11 Gen 2004
Messaggi: 9
Profilo
|
  Inviato:
11 Feb 2004 - 16:12 |
|
| Oggetto: Re: Problema con i moduli spedizioni e pagamento |
Ciao ,
in configure.php ho questa linea:
define('DIR_WS_CLASSES', . 'classes/');
nel file bancasella.php ho (rigo 83) :
require_once(DIR_WS_CLASSES . 'GestPayCrypt.lib.php');.
se modifico come nel tuo post mi da poi il seguente errore forse devo modificare qualcosa d'altro?
Warning: main(includes/classes/shopping_cart.php): failed to open stream: No such file or directory in /usr/www/mysite.com/web/modules/catalog/includes/application_top.php on line 132
Fatal error: main(): Failed opening required 'includes/classes/shopping_cart.php' (include_path='.:/usr/local/lib/php') in /usr/www/mysite.com/web/modules/catalog/includes/application_top.php on line 132 |
|
|
Rispondi citando |
 |
v_stepro Nuovo entrato

Registrato: 07 Giu 2003
Messaggi: 13
Località: soverato (CZ)
Profilo
|
  Inviato:
11 Feb 2004 - 19:23 |
|
| Oggetto: Re: problema con moduli pagamenti |
Secondo me hai qualcosa che non va nel file configure.php
prova a postarlo così vediamo. |
|
|
Rispondi citando |
 |
ragio Nuovo entrato

Registrato: 11 Gen 2004
Messaggi: 9
Profilo
|
  Inviato:
11 Feb 2004 - 21:33 |
|
| Oggetto: Re: problema con moduli pagamenti |
ok eccolo:
<?php
/*
osc4nukeMS use osCommerce engine under the GNU General Public License
Copyright (c) 2003 osCommerce http://www.oscommerce.com
Copyright (c) 2003 osc4nukeMS http://www.phpnukeservices.com
Released under the GNU General Public License
*/
define('HTTP_SERVER', 'http://www.mysite.com/');
define('HTTPS_SERVER', '');
define('ENABLE_SSL',false);
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '');
define('HTTPS_COOKIE_PATH', '');
define('DIR_WS_HTTP_CATALOG', 'modules.php?name=catalog');
define('DIR_WS_HTTPS_CATALOG', '');
define('DIR_WS_IMAGES', 'modules/catalog/images/');
define('DIR_AWS_IMAGES', 'modules/catalog/admin/images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', 'functions/');
define('DIR_WS_CLASSES', 'classes/');
define('DIR_WS_MODULES', 'modules/');
define('DIR_WS_LANGUAGES', 'languages/');
define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']));
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . '/modules/catalog/download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
define('DIR_FS_CATALOG_LANGUAGES','modules/catalog/includes/languages /');
define('DB_SERVER', $dbhost);
define('DB_SERVER_USERNAME', $dbuname);
define('DB_SERVER_PASSWORD', $dbpass);
define('DB_DATABASE', $dbname);
define('USE_PCONNECT', 'false');
define('STORE_SESSIONS', '');
?> |
|
|
Rispondi citando |
 |
v_stepro Nuovo entrato

Registrato: 07 Giu 2003
Messaggi: 13
Località: soverato (CZ)
Profilo
|
  Inviato:
11 Feb 2004 - 23:07 |
|
| Oggetto: Re: problema con modulo banca sella |
Ma che versione di Oscommerce hai installato? :roll: :?: |
|
|
Rispondi citando |
 |
v_stepro Nuovo entrato

Registrato: 07 Giu 2003
Messaggi: 13
Località: soverato (CZ)
Profilo
|
  Inviato:
11 Feb 2004 - 23:16 |
|
| Oggetto: Re: attivar-disattivare categorie con oscommerce 2.2 milesto |
sembrerebbe una versione per NUKE , ( che non conosco)
prova a sostituire in bancasella.php alla linea 83 e 198 da require_once(DIR_WS_CLASSES . 'GestPayCrypt.lib.php'); a
require_once('includes/classes/GestPayCrypt.lib.php');
eeeee speriamo bene :lol: :lol: |
|
|
Rispondi citando |
 |
ragio Nuovo entrato

Registrato: 11 Gen 2004
Messaggi: 9
Profilo
|
  Inviato:
12 Feb 2004 - 03:22 |
|
| Oggetto: Re: Altro problemino...con le registrazioni |
utilizzo una di quelle presenti su phpnukeservices....ma la sostanza non cambia sono sempre delle osc
ho provato le modifiche...mi da sempre...:
Warning: process_button(/classes/GestPayCrypt.lib.php): failed to open stream: No such file or directory in /usr/www/mysite.com/web/modules/catalog/includes/modules/payment/banca sella.php on line 83
Fatal error: process_button(): Failed opening required '/classes/GestPayCrypt.lib.php' (include_path='.:/usr/local/lib/php') in /usr/www/mysite.com/web/modules/catalog/includes/modules/payment/banca sella.php on line 83 |
|
|
Rispondi citando |
 |
ragio Nuovo entrato

Registrato: 11 Gen 2004
Messaggi: 9
Profilo
|
  Inviato:
12 Feb 2004 - 21:35 |
|
| Oggetto: Re: Subito dopo la login |
|
Rispondi citando |
 |
lauraperinelli Nuovo entrato

Registrato: 09 Mar 2004
Messaggi: 1
Località: roma
Profilo
|
  Inviato:
09 Mar 2004 - 00:24 |
|
| Oggetto: Re: Attributi prodotto |
chiedo aiuto con banca sella versione basic...
o è meglio che la cambio?
i file che mensionate sono x advanced e professional, ma x il basic che usa le OTP e non la criptazione che si fa?
ho scritto anche a stefano vita....
ma anche lui col basic...non sa che dirmi
almeno capissi se la cosa è inrisolvibile....
passo subito all'advanced..che dite?
grazie 1000
laura
:D |
|
|
Rispondi citando |
 |
madone83 Nuovo entrato

Registrato: 30 Mar 2009
Messaggi: 1
Profilo
|
  Inviato:
20 Set 2009 - 09:36 |
|
| Oggetto: Re: Warning sulla cartella session.php |
| v_stepro ha scritto: |
Assicurati di aver pubblicato il file GestPayCrypt.lib.php nella cartella catalog/include/classes
Io invece ho un altro problema con banca sella , eseguo la transazione ma al termine della transazione mi ritorna sulla pagina login.php , sono cosi costretto a rifare il login e mi trovo il carrello ancora pieno.
Anche se la comunicazione server to server mediante la pagina s2s.php è avvenuta correttamente. |
Ciao Stepro,
io ho problemi a far funzionare la comunicazione s2s tra il mio server e quelo di bancasella. Potresti aiutarmi a risolverlo? Puoi postarmi il codice del tuo file s2s e le impostazioni che usi?
Grazie |
|
|
Rispondi citando |
 |
Vai a pagina 1, 2 Successivo
|