Sign in to follow this  
Followers 0

module paypal

10 posts in this topic

Posted · Report post

re bjr

est ce que le module paypal est déja opérationnel sur la version PEEL SHOPPING 2.9.3

si non,que faut il faire

merci

Share this post


: post
Share on other sites

Posted · Report post

oui, le module paypal est opérationnel, il te suffit de rentrer ton email paypal dans le backoffice

Share this post


: post
Share on other sites

Posted · Report post

oui, le module paypal est opérationnel, il te suffit de rentrer ton email paypal dans le backoffice

ok merci

Share this post


: post
Share on other sites

Posted · Report post

et si ya pas la possibilité de mettre son email paypal; on fait comment ?

voila tout ce que j'ai comme variables:

Serveur hôte (mysql) :

Identifiant (mysql) :

Mot de passe (mysql) :

Nom de la base mysql :

URL de la boutique sans barre oblique à la fin :

Nom du site web :

Tarif normal (€ TTC) :

Tarif express (€ TTC) :

Email administrateur :

Ben voilà, je continue de hercher qd même !

Merci à ceelui qui pourra m'aider !

Share this post


: post
Share on other sites

Posted · Report post

dans le back office => variables du site ?

il faut ausi créer un cpt chez paypal

Share this post


: post
Share on other sites

Posted · Report post

oui, je n'ai que ca dans le back office. Je dois peut etre modifier un fichier ? mais la je vois pas lequel...

Share this post


: post
Share on other sites

Posted · Report post

merci pour la rép rapide au fait !

Share this post


: post
Share on other sites

Posted · Report post

j'ai ceci moi dans le back-office:

Serveur hôte (mysql) :

Identifiant (mysql) :

Mot de passe (mysql) :

Nom de la base mysql :

URL de la boutique sans barre oblique à la fin :

Nom du site web :

Tarif Belgique (€ TTC) :

Tarif Europe (€ TTC) :

Email administrateur :

Email paypal :

puis le bouton enregistrer les modification

voici le code de la page /administrer/variable.php

<?php 

include("../configuration.inc.php");

necessite_identification();

necessite_priv("admin");


$DOC_TITLE = "Variables du site";



include("modeles/haut.php");


switch (vb($_REQUEST['mode'])) {


	case "ajout" :

		ecrire($HTTP_POST_VARS);

		echo "<div class=\"normal\">Vos modifications ont été prise en compte.</div>";

		$tab_var = lire();

		affiche_variables($tab_var);

	break;


	default :

	$tab_var = lire();

	affiche_variables($tab_var);

break;

}



include("modeles/bas.php");


// LISTE DES FONCTIONS


function lire() {

	$file = fopen("../lib/setup/info.inc.php", "r");

	$count = 0;

	$tab_var = array();

	while (true) {

		if (feof($file)) break;

		$car = fgetc($file);

		while(($car != "\"") && (true)) {

			if (feof($file)) break;

			$car = fgetc($file);

		}

		//ici on est au debut de la variable

		$car = fgetc($file);

		$var="";

		while (($car != "\"") && (true)) {

			if (feof($file)) break;

			$var = $var.$car;

			$car = fgetc($file);

		}

		$tab_var[$count] = $var;

		$count++;

	}

	fclose($file);

	return $tab_var;

}


function ecrire(&$frm) {

	$file = fopen("../lib/setup/info.inc.php", "w");

	$string = "<?php 

	\n\$serveur_mysql = \"". $frm['serveur_mysql']."\";

	\n\$utilisateur_mysql = \"". $frm['utilisateur_mysql']."\";

	\n\$mot_de_passe_mysql = \"". $frm['mot_de_passe_mysql']."\";

	\n\$nom_de_la_base = \"". $frm['nom_de_la_base']."\";

	\n\$wwwroot = \"". $frm['wwwwroot']."\";

	\n\$site = \"". $frm['site']."\";

	\n\$normal = \"".$frm['normal']."\";

	\n\$express = \"".$frm['express']."\";

	\n\$support = \"".$frm['support']."\";

	\n\$paypal = \"".$frm['paypal']."\";

	\n?>";

	fwrite($file, $string);

	fclose($file);

}


function affiche_variables(&$tab_var) {

?>

<table border="0" cellpadding="0" cellspacing="1" width="760">

<tr>

	<td class="entete" colspan="2">Variables du site</th>

</tr>

<form action="<?php echo $_SERVER['PHP_SELF']?>" method="post">

	<tr><td class="normal">Serveur hôte (mysql) : </td><td><input type="text" name="serveur_mysql" value="<?php echo ($tab_var[0]); ?>" size="" /></td></tr>

	<tr><td class="normal">Identifiant (mysql) : </td><td><input type="text" name="utilisateur_mysql" value="<?php echo ($tab_var[1]); ?>" size="" /></td></tr>

	<tr><td class="normal">Mot de passe (mysql) : </td><td><input type="text" name="mot_de_passe_mysql" value="<?php echo ($tab_var[2]); ?>" size="" /></td></tr>

	<tr><td class="normal">Nom de la base mysql : </td><td><input type="text" name="nom_de_la_base" value="<?php echo ($tab_var[3]); ?>" size="" /></td></tr>

	<tr><td class="normal">URL de la boutique sans barre oblique à la fin : </td><td><input type="text" name="wwwwroot" value="<?php echo ($tab_var[4]); ?>" size="" /></td></tr>

	<tr><td class="normal">Nom du site web : </td><td><input type="text" name="site" value="<?php echo ($tab_var[5]); ?>" size="" /></td></tr>

	<tr><td class="normal">Tarif Noramal (&euro; TTC) : </td><td><input type="text" name="normal" value="<?php echo ($tab_var[6]); ?>" size="" /></td></tr>

	<tr><td class="normal">Tarif Express (&euro; TTC) : </td><td><input type="text" name="express" value="<?php echo ($tab_var[7]); ?>" size="" /></td></tr>	

	<tr><td class="normal">Email administrateur : </td><td><input type="text" name="support" value="<?php echo ($tab_var[8]); ?>" size="" /></td></tr>	

	<tr><td class="normal">Email paypal : </td><td><input type="text" name="paypal" value="<?php echo ($tab_var[9]); ?>" size="" /></td></tr>	


	<tr>

	<td align="center" colspan="2">

	<input type="submit" name="action" class="bouton" value="Enregistrer les modifications">

	<input type="hidden" name="mode" value="ajout">

</form>

	</td></tr>

</table>


<?php 

}

?>

Share this post


: post
Share on other sites

Posted · Report post

bonjour, :)

dans variables du site renseigne la ligne Email paypal

Share this post


: post
Share on other sites

Posted · Report post

merci a tous, je l'ai reinstallé completement.... maintenant j'ai la deemande pour l'email paypal...

Share this post


: post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0

Twitter Advisto ecommerce

Facebook PEEL Shopping