osCommerce France : Accueil Forum Portail osCommerce France Réponses aux questions Foire aux contributions

Bienvenue invité ( Connexion | Inscription )

 
Reply to this topicStart new topic
> [RESOLU] Probleme d'ajout dans le panier !
Pipo
posté 28 Apr 2004, 08:19
Message #1


Ceinture verte OSC
Icône de groupe

Groupe : Membres
Messages : 545
Inscrit : 22-February 04
Lieu : Var 83
Membre no 2021



Bonjour voila, j'ai installé un petit script en javasript pour obtenir une boite de selection de quantité dans product_info.php mais le pb c'est quand je clic sur acheter apres avoir choisi la quantité, le panier reste vide !
voici le code du product_info.php
CODE


<?php

/*

 $Id: product_info.php,v 1.97 2003/07/01 14:34:54 hpdl Exp $



 osCommerce, Open Source E-Commerce Solutions

 http://www.oscommerce.com



 Copyright (c) 2003 osCommerce



 Released under the GNU General Public License

*/



 require('includes/application_top.php');



 require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO);



 $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");

 $product_check = tep_db_fetch_array($product_check_query);

?>

<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">

<html <?php echo HTML_PARAMS; ?>>

<head>

<script language="JavaScript">

<!--

//PLF-http://www.jejavascript.net/

function noclic(clicno) {

var mess="Clic droit interdit !"; //changer le message

if (navigator.appName == 'Netscape' && clicno.which==3) {

alert(mess);

return false;}

else

if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {

alert(mess);

return false;

}

return true;

}

if (document.layers) {

document.captureEvents(Event.MOUSEDOWN);

}

document.onmousedown = noclic;

//-->

</script>



<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">

<title><?php echo TITLE; ?></title>

<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">

<link rel="stylesheet" type="text/css" href="stylesheet.css">

<script language="javascript"><!--

function popupWindow(url) {

 window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')

}

//--></script>

</head>

<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">

<!-- header //-->

<?php require(DIR_WS_INCLUDES . 'header.php'); ?>

<!-- header_eof //-->



<!-- body //-->

<table border="0" width="900" height="100%" cellspacing="1" cellpadding="1" align="center" bgcolor="#FFFFFF">

 <tr>

   <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2" background="images/menu_bg.gif">

<!-- left_navigation //-->

<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>

<!-- left_navigation_eof //-->

   </table></td>

<!-- body_text //-->

   <td width="100%" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0">



<?php

 if ($product_check['total'] < 1) {

?>

     <tr>

       <td><?php new infoBox(array(array('text' => TEXT_PRODUCT_NOT_FOUND))); ?></td>

     </tr>

     <tr>

       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

     </tr>

     <tr>

       <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">

         <tr class="infoBoxContents">

           <td><table border="0" width="100%" cellspacing="0" cellpadding="2">

             <tr>

               <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

               <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>

               <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

             </tr>

           </table></td>

         </tr>

       </table></td>

     </tr>

<?php

 } else {

   $product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");

   $product_info = tep_db_fetch_array($product_info_query);



   tep_db_query("update " . TABLE_PRODUCTS_DESCRIPTION . " set products_viewed = products_viewed+1 where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and language_id = '" . (int)$languages_id . "'");



   if ($new_price = tep_get_products_special_price($product_info['products_id'])) {

     $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>';

   } else {

     $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));

   }



   if (tep_not_null($product_info['products_model'])) {

     $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';

   } else {

     $products_name = $product_info['products_name'];

   }

?>

   

         <td><table border="0" width="100%" cellspacing="0" cellpadding="0">

             <tr>

               <td class="nomproduits" valign="top"><?php echo $products_name; ?></td>

               <td class="prix" align="right" valign="top"><?php echo $products_price; ?></td>

               <?php    if (PRODUCT_LIST_QUANTITY == 1){

      $prod_quantity = $product_info['products_quantity'];

       $minus = ($prod_quantity <= 0);

      $red = ($prod_quantity == NULL);

      $yellow = ($prod_quantity <= 10);

      $green =  ($prod_quantity > 10);?>

             <tr>

               <td class="main"><br>

                 <?php

      switch ($prod_quantity) {

      case $minus:

         $img = '<FONT COLOR=#ff0000><b>'. TEXT_NOT_AVAIBLE .'</b></FONT>';

         break;  

         case $red:

         $img = '<FONT COLOR=#ff0000><b>'. TEXT_NOT_AVAIBLE .'</b></FONT>';

         break;

         case $yellow :

         $img = '<FONT COLOR=#ff9900><b>'. TEXT_FEW_QTY .'</b></FONT>';

         break;

      case $green :

         $img = '<FONT COLOR=#009900><b>'. TEXT_BIG_QTY .'</b></FONT>';

         break;

       }

     echo TEXT_IN_STOCK ."&nbsp;" .$img;

     ?>

               </td>

   <td></td>

             </tr>

             <?php

   }

?>

           </table></td>

     </tr>

     <tr>

       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

     </tr>

     <tr>

       <td class="main">

<?php

   if (tep_not_null($product_info['products_image'])) {

?>

         <table border="0" cellspacing="0" cellpadding="2" align="right">

           <tr>

 

             <td align="center" class="main">

<br><br>

<script language="javascript"><!--

document.write('<?php echo '<a href="javascript:popupWindow(\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>');

//--></script>

<noscript>

<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>

</noscript>

<SCRIPT language=JavaScript1.1>

<!--

function update_qnt(arg) {

var oldvalue = eval(document.cart_quantity.product_quantity.value);

var next = 0;



if(oldvalue == 1 && arg == -1) {

 document.cart_quantity.product_quantity.value = 1;

 next = 1;

}

if(oldvalue == 99 && arg == 1) {

 document.cart_quantity.product_quantity.value = 99;

 next = 1;

}



if(next == 0)

 document.cart_quantity.product_quantity.value = oldvalue + arg;

}

//-->

</SCRIPT>

<br><br>

<table class="qty" border="0" bordercolor="#CCCCCC" width="17%" height="45" cellpadding="5" cellspacing="0">

                   <tr>

                     <TD width="65%" align="right" class="main"> <b>Quantité

                       :</B></TD>

                     <TD width="18%"><INPUT class=input maxLength=3 size=2 value=1 name=product_quantity>

                     </TD>

                     <TD width="17%"><A href="javascript:update_qnt(1);"><IMG height=10 alt="+" src="images/image_plus.gif" width=14 border=0></A><BR>

                       <A href="javascript:update_qnt(-1);"><IMG height=10 alt="-" src="images/image_moins.gif" width=14 border=0></A></TD>

                   </tr>

                   <tr>

                     <TD colspan="3" align="center" class="main"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_buy_now_small.gif', IMAGE_BUTTON_IN_CART); ?></TD>

                   </tr>

                   <tr>

                     <TD colspan="3" align="center" class="main"><hr noshade color="#0000FF"><?php include (DIR_WS_INCLUDES . 'products_next_previous.php'); ?>

</TD>

                   </tr>

                 </table>



 

             </td>

           </tr>

         </table>

   <?php

   }



?>

           <table width="73%" height="52" border="0" cellpadding="0" cellspacing="0">

             <tr>

               <td width="2%">&nbsp;</td>

               <td width="98%" class="productsDescription"><?php echo stripslashes($product_info['products_description']); ?></td>

             </tr>

           </table>

<?php

   $products_attributes_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "'");

   $products_attributes = tep_db_fetch_array($products_attributes_query);

   if ($products_attributes['total'] > 0) {

?>

         <table border="0" cellspacing="0" cellpadding="2">

           <tr>

             <td class="main" colspan="2"><?php echo TEXT_PRODUCT_OPTIONS; ?></td>

           </tr>

<?php

     $products_options_name_query = tep_db_query("select distinct popt.products_options_id, popt.products_options_name from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "' order by popt.products_options_name");

     while ($products_options_name = tep_db_fetch_array($products_options_name_query)) {

       $products_options_array = array();

       $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "'");

       while ($products_options = tep_db_fetch_array($products_options_query)) {

         $products_options_array[] = array('id' => $products_options['products_options_values_id'], 'text' => $products_options['products_options_values_name']);

         if ($products_options['options_values_price'] != '0') {

           $products_options_array[sizeof($products_options_array)-1]['text'] .= ' (' . $products_options['price_prefix'] . $currencies->display_price($products_options['options_values_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) .') ';

         }

       }



       if (isset($cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']])) {

         $selected_attribute = $cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']];

       } else {

         $selected_attribute = false;

       }

?>

           <tr>

             <td class="main"><?php echo $products_options_name['products_options_name'] . ':'; ?></td>

             <td class="main"><?php echo tep_draw_pull_down_menu('id[' . $products_options_name['products_options_id'] . ']', $products_options_array, $selected_attribute); ?></td>

           </tr>

<?php

     }

?>

         </table>

<?php

   }

?>

       </td>

     </tr>

     <tr>

       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

 

     </tr>

<?php

   $reviews_query = tep_db_query("select count(*) as count from " . TABLE_REVIEWS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'");

   $reviews = tep_db_fetch_array($reviews_query);

   if ($reviews['count'] > 0) {

?>

     <tr>

       <td class="main"><?php echo TEXT_CURRENT_REVIEWS . ' ' . $reviews['count']; ?></td>

     </tr>

     <tr>

       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

     </tr>

<?php

   }



   if (tep_not_null($product_info['products_url'])) {

?>

     <tr>

       <td class="main"><?php echo sprintf(TEXT_MORE_INFORMATION, tep_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($product_info['products_url']), 'NONSSL', true, false)); ?></td>

     </tr>

     <tr>

       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

     </tr>

<?php

   }



   if ($product_info['products_date_available'] > date('Y-m-d H:i:s')) {

?>

     <tr>

       <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_AVAILABLE, tep_date_long($product_info['products_date_available'])); ?></td>

     </tr>

<?php

   } else {

?>

<?php

   }

?>

     <tr>

       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

     </tr>

     <tr>

       <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">

         <tr class="infoBoxContents">

           <td><table border="0" width="100%" cellspacing="0" cellpadding="2">

             <tr>

               <td width="17"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

               <td width="330" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td>

   <td class="main"><?php echo tep_image_submit('button_tell_a_friend.gif') . tep_draw_hidden_field('products_id', $HTTP_GET_VARS['products_id']) . tep_hide_session_id() . '&nbsp;' . BOX_TELL_A_FRIEND_TEXT; ?></td>



       <?php

   $back = sizeof($navigation->path)-2;

   if (isset($navigation->path[$back])) {

?>

                     <td width="330" align="right" class="main"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_back.gif', IMAGE_BUTTON_BACK) . '</a>'; ?></td>



<?php

   }

?>





               <td width="17"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

             </tr>

           </table></td>

         </tr>

       </table></td>

     </tr>

     <tr>

       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

     </tr>

     <tr>

       <td>

<?php

   if ((USE_CACHE == 'true') && empty($SID)) {

     echo tep_cache_also_purchased(3600);

   } else {

     include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);

   }

 }

?>

       </td>

     </tr>

   </table></form></td>

<!-- body_text_eof //-->

   <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2" background="images/menu_bg.gif">

<!-- right_navigation //-->

<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>

<!-- right_navigation_eof //-->

   </table></td>

 </tr>

</table>

<!-- body_eof //-->



<!-- footer //-->

<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>

<!-- footer_eof //-->

<br>

</body>

</html>

<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>


et la ligne modifiée dans application top:
CODE


     // customer adds a product from the products page

     case 'add_product' :    if (isset($HTTP_POST_VARS['products_id']) && is_numeric($HTTP_POST_VARS['products_id'])) {

                               //#################  Ajout d'une quantité déterminée à partir de product info #################

                               $cart->add_cart($HTTP_POST_VARS['products_id'], $cart->get_quantity(tep_get_uprid($HTTP_POST_VARS['products_id'],$HTTP_POST_VARS['id']))+$quantity, $HTTP_POST_VARS['id']);

// ################# End Added ###################


merci pour votre aide !


--------------------
MS2FR

user posted image
Go to the top of the page
 
Loup solitaire
posté 28 Apr 2004, 08:26
Message #2


Ceinture verte OSC
Icône de groupe

Groupe : Membres
Messages : 735
Inscrit : 2-April 04
Lieu : France
Membre no 2225



Moi j'ai utilisé la méthode de Afid, elle fonctionne très bien... et l'ai même intégrée à la CR6 vf, si vous voulez je peux vous fournir le zip pour l'installation.

Bon aller j'ai retrouvé mon fichier install.htm

QUOTE
Editer votre fichier catalog/includes/application_top.php

rechercher

CODE  

// customer adds a product from the products page
    case 'add_product' :    if (isset($HTTP_POST_VARS['products_id']) && is_numeric($HTTP_POST_VARS['products_id'])) {
                             $cart->add_cart($HTTP_POST_VARS['products_id'], $cart->get_quantity(tep_get_uprid($HTTP_POST_VARS['products_id'], $HTTP_POST_VARS['id']))+1, $HTTP_POST_VARS['id']);
                            }
 


Remplacer le par

CODE  

// customer adds a product from the products page
    case 'add_product' :    if (isset($HTTP_POST_VARS['products_id']) && is_numeric($HTTP_POST_VARS['products_id'])) {
                              //$cart->add_cart($HTTP_POST_VARS['products_id'], $cart->get_quantity(tep_get_uprid($HTTP_POST_VARS['products_id'], $HTTP_POST_VARS['id']))+1, $HTTP_POST_VARS['id']);
                              $cart->add_cart($HTTP_POST_VARS['products_id'], $cart->get_quantity(tep_get_uprid($HTTP_POST_VARS['products_id'], $HTTP_POST_VARS['id']))+$product_quantity, $HTTP_POST_VARS['id']);
                            }
 



2 editer le fichier catalog/product_info.php

rechercher

CODE  

          <td><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\">
            <tr>
              <td width=\"10\"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
              <td class=\"main\"><?php echo '<a href=\"' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '\">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td>
              <td class=\"main\" align=\"right\"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td>
              <td width=\"10\"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
            </tr>
          </table></td>
 


Remplacer le par

CODE  

<td><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\">
            <tr>
              <td width=\"10\"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
              <td class=\"main\"><?php echo '<a href=\"' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '\">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td>
<script language=JavaScript1.1>
<!--
function update_qnt(arg) {
var oldvalue = eval(document.cart_quantity.product_quantity.value);
var next = 0;

if(oldvalue == 1 && arg == -1) {
document.cart_quantity.product_quantity.value = 1;
next = 1;
}
if(oldvalue == 99 && arg == 1) {
document.cart_quantity.product_quantity.value = 99;
next = 1;
}

if(next == 0)
document.cart_quantity.product_quantity.value = oldvalue + arg;
}
//-->
</SCRIPT>
               
              <TD align=\"right\" width=\"10\"><INPUT class=input maxLength=3 size=2 value=1 name=product_quantity></TD>
              <TD align=\"left\" width=\"10\"><A href=\"javascript:update_qnt(1);\"><IMG height=10 alt=+ src=\"images/qnt1.gif\" width=14 border=0></A><BR><A href=\"javascript:update_qnt(-1);\"><IMG height=10 alt=- src=\"images/qnt2.gif\" width=14 border=0></A></TD>
              <td class=\"main\" align=\"right\"  width=\"10\"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td>
              <td width=\"10\"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
            </tr>
          </table></td>
 



enregistrer les 2 images suivantes dans votre repertoire catalog/images/

sous le nom:qnt1.gif
sous le nom:qnt2.gif


--------------------
Sur Creload6 VF ! + modifications
Go to the top of the page
 
Pipo
posté 28 Apr 2004, 09:36
Message #3


Ceinture verte OSC
Icône de groupe

Groupe : Membres
Messages : 545
Inscrit : 22-February 04
Lieu : Var 83
Membre no 2021



bah si je me trompe pas c'est les memes !
confused.gif
Le pb c'est qu'au lieu de rajouter l'article dans le panier, il y a simplement un rechargement de la page mais pas d'ajout !


--------------------
MS2FR

user posted image
Go to the top of the page
 
Pipo
posté 29 Apr 2004, 09:55
Message #4


Ceinture verte OSC
Icône de groupe

Groupe : Membres
Messages : 545
Inscrit : 22-February 04
Lieu : Var 83
Membre no 2021



J'ai besoin d'aide svp !!!
cry.gif


--------------------
MS2FR

user posted image
Go to the top of the page
 
Loup solitaire
posté 29 Apr 2004, 10:10
Message #5


Ceinture verte OSC
Icône de groupe

Groupe : Membres
Messages : 735
Inscrit : 2-April 04
Lieu : France
Membre no 2225



pipo a dit
QUOTE
bah si je me trompe pas c'est les memes !

Tu en ais vraiment sûr question.gif question.gif ils sont différents désolé... avec un logiciel de comparaison tes doutes se seraient estompés arrow.gif
Donc réinstall arrow.gif car elle marche cette modif arrow.gif même sur une cr6 dont l'installation est + difficile

Le code du fichier applicatio_top.php est différent


--------------------
Sur Creload6 VF ! + modifications
Go to the top of the page
 
Pipo
posté 29 Apr 2004, 15:48
Message #6


Ceinture verte OSC
Icône de groupe

Groupe : Membres
Messages : 545
Inscrit : 22-February 04
Lieu : Var 83
Membre no 2021



Tu avais raison, c'est effectivment pas le meme code et l'avantage du tiens, c'est qu'il marche !
merci a toi wink.gif


--------------------
MS2FR

user posted image
Go to the top of the page
 

Reply to this topicStart new topic
1 utilisateur(s) sur ce sujet (1 invité(s) et 0 utilisateur(s) anonyme(s))
0 membre(s) :

 



RSS Version bas débit Nous sommes le : 26th May 2013 - 00:26
Ce site est déclaré auprès de la commision Nationale
de l'Informatique et des Libertés (déclaration n°: 1043896)