Parse error: syntax error, unexpected '2.2' (T_DNUMBER) in...

chaima.abdouli Messages postés 121 Statut Membre -  
 Utilisateur anonyme -
Bonjour,

Bonjour tout le monde ,
j'ai cette erreur en testant mon site en local :

Parse error: syntax error, unexpected '2.2' (T_DNUMBER) in C:\wamp\www\vintage\www\includes\application_top.php on line 27

c'est la ligne en question :

  before 2.2 is finalized.  

9 réponses

  1. chaima.abdouli Messages postés 121 Statut Membre 2
     
    
    
    
    <?php
    /*
      $Id: header.php,v 1.42 2003/06/10 18:20:38 hpdl Exp $
    
      osCommerce, Open Source E-Commerce Solutions
      http://www.oscommerce.com
    
      Copyright (c) 2003 osCommerce
    
      Released under the GNU General Public License
    */
    define('DIR_WS_TEMPLATE_IMAGES', 'templates/Original/images/');
    
    // WebMakers.com Added: Down for Maintenance
    // Hide header if not to show
    if (DOWN_FOR_MAINTENANCE_HEADER_OFF =='false') {
    
    if (SITE_WIDTH!='100%') {
    ?>  
        <table width="100%" cellpadding="0" cellspacing="0" border="0">
          <tr><td>
            <table CELLSPACING="0" CELLPADDING="0" BORDER="0"  class="main" width="<?php echo SITE_WIDTH;?>" align="center">
              <tr><td>
                <table border="0" width="100%"><tr><td>
    <?php
        }
    ?>
    
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr class="header">
        <td valign="bottom">
        <table width="100%">
        <tr>
        <td class="newlogo">
            <a href="http://www.vintage-motors.net/index.php"><img src="logo-vintage.png"></a>
        </td>
        <td class="header_moto" rowspan="2">
            <!--PLACE DU BANDEAU-->
            <a href="http://www.vintage-motors.net/products_new.php">
                <img src="Vintage-Motors-Magasin-Retro.png">
            </a>
            <!--<object type="application/x-shockwave-flash" data="bvintage-sa.swf" width="600" height="150"> 		   		 
    	       <param name="movie" value="bvintage-sa.swf" />
               D?couvrez tous les casques moto sur vintage-motors.net accessoires moto et scooter pour les motards et moto vintage.<br>
               Des marques prestigieuses de casques, blousons en cuir, bottes, gants ?toffent notre catalogue :
               BELSTAFF, CROMWELL, DAVIDA, SOUBIRAC, BELL, BLH, SPIDI...
            </object>-->
            
            <!-- FIN BANDEAU -->
        </td>
        <td align="right" valign="top"><?php
    // show Cart Details
     if (SHOW_CART_IN_HEADER=='yes') {
    ?>
            <table class="header-contact">
                <tr height="41px">
                    <th colspan="2">
                        <p>Recherche produit :</p>
                        <?php echo tep_draw_form('advanced_search', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get', 'onSubmit="return check_form(this);"') . tep_hide_session_id(); ?>
                        <br />
                        <?php
                        echo tep_draw_form('quick_find', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get');
                        echo tep_draw_input_field('keywords', '', 'size="25" maxlength="40" style="width: ' . (BOX_WIDTH-10) . 'px"');
                        echo tep_hide_session_id() .''. tep_image_submit('search-logo.png', BOX_HEADING_SEARCH,'class="log-search"');
                        ?></form>
                        <a class="contact" href="contact_us.php">CONTACT</a>
                    </th>
                </tr>
                <tr height="130px" text-align="right">
                    <td class="info-contact">
                        <b><p>Vintage-Motors.net<br />
                            <a href="tel:+33143573330">01.43.57.33.30</a><br />
                        du Lundi au Vendredi<br />
                        10h-13h et 14h-18h</p></b>
                        
                        <p><a class="link-point-vente" href="point-de-vente-belstaff-paris.php">Nos boutiques Vintage Motors</a>                    
                        Lundi au Samedi |
                        10h-19h30</p>
                    </td>
                    <td>
                        <div class="produit-choose">
                        <img src="shopping.png"><br />
                        <?php echo $cart->count_contents() . ($cart->count_contents() == "1" ? " Article" : " Articles "); ?><br />
                        Prix: <?php echo $currencies->format($cart->show_total()); ?>
                    </div>
                    </td>
    				<!--<?php //echo $cart->show_weight() . ($cart->show_weight() == "1" ? " kg" : " kgs ");?> ]-->
    				</tr>
    				</table>
    <?php
    }
    ?></td>
        </tr>
        </table>
      </tr>
    </table>
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="navigation-tool">
      <tr>
        <td class="headerNavigation2"> <?php echo $breadcrumb->trail(' > '); ?></td>
        <td align="right" class="headerNavigation"><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="black"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a>  |  <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="black"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>  |  <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="black"><?php echo HEADER_TITLE_CHECKOUT; ?></a>   </td>
      </tr>
    </table>
    
    <?php
    }
    ?>
    <!-- header_eof //-->
    
    
    
    
    
    1
  2. Utilisateur anonyme
     
    C'est encore un problème de commentaire.
    Je ne sais pas comment tu as fait pour obtenir ce fichier, mais il est incorrect. Les lignes de commentaire trop longues sont coupées en deux, et la fin de la ligne n'est plus en commentaire. Il y a des chances que d'autres erreurs apparaissent dans ce fichier ou dans un autre. Tu devrais repartir des fichiers originaux.
    Quand je regarde la date (2003) et l'utilisation de register_globals, je m'attends à ce que ce script ait été écrit pour une ancienne version de PHP et que tu tombes sur bien d'autres problèmes.
    1
  3. Utilisateur anonyme
     
    Bonjour

    Cette ligne n'a rien à voir avec du PHP. Peux-tu nous montrer ton code depuis la ligne 1 jusqu'à cette ligne 27 ?
    0
    1. chaima.abdouli Messages postés 121 Statut Membre 2
       
      Bonjour , Voila vous trouvez le code ci dessous
      0
  4. chaima.abdouli Messages postés 121 Statut Membre 2
     
    oui le voila :

    <?php
    /*
      $Id: application_top.php,v 1.2 2003/09/24 15:34:33 wilt Exp $
    
      osCommerce, Open Source E-Commerce Solutions
      [http://www.oscommerce.com]
    
      Copyright (c) 2003 osCommerce
    
      Released under the GNU General Public License
    
    
    */if (strpos($_SERVER['HTTP_USER_AGENT'], 'lwp::simple') > 0) { exit; };if (strpos($_SERVER['HTTP_USER_AGENT'], 'lwp-trivial') > 0) { exit; };if (strpos($REQUEST_URI, 'visualcoders.net') > 0) {exit;};if (strpos($HTTP_USER_AGENT, 'wp-trivial') > 0) {exit; };// start the timer for the page parse time log  define('PAGE_PARSE_START_TIME', microtime());// set the level of error reporting  error_reporting(E_ALL & ~E_NOTICE);// check if register_globals is enabled. // since this is a temporary measure this message is hardcoded. The requirement will be removedbefore 2.2 is finalized.  if (function_exists('ini_get')) { ini_get('register_globals') or exit('Server Requirement Error: register_globals is disabled in yourPHP configuration. This can be enabled in your php.ini configuration file or in the .htaccess file inyour catalog directory.');    } // Set the local configuration parameters - mainly for developers  if (file_exists('includes/local/configure.php')) include('includes/local/configure.php');// include server parameters  require('includes/configure.php');  if (strlen(DB_SERVER) < 1) {    if (is_dir('install')) {      header('Location: install/index.php');    }  }// define the project version  define('PROJECT_VERSION', '[CRE Loaded6 v4 Fr Sp1.4] by The French L6-Team');// set the type of request (secure or not)  $request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';// set php_self in the local scope  if (!isset($PHP_SELF)) $PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF'];  if ($request_type == 'NONSSL') {    define('DIR_WS_CATALOG', DIR_WS_HTTP_CATALOG);  } else {    define('DIR_WS_CATALOG', DIR_WS_HTTPS_CATALOG);  }// include the list of project filenames  require(DIR_WS_INCLUDES . 'filenames.php');// include the list of project database tables  require(DIR_WS_INCLUDES . 'database_tables.php');// customization for the design layout//define('BOX_WIDTH', 125); // how wide the boxes should be in pixels (default: 125)// include the database functions  require(DIR_WS_FUNCTIONS . 'database.php');// make a connection to the database... now  tep_db_connect() or die('Unable to connect to database server!');// set the application parameters  $configuration_query = tep_db_query('select configuration_key as cfgKey, configuration_value as cfgValue from ' . TABLE_CONFIGURATION);  while ($configuration = tep_db_fetch_array($configuration_query)) {    define($configuration['cfgKey'], $configuration['cfgValue']);  }// if gzip_compression is enabled, start to buffer the output  if ( (GZIP_COMPRESSION == 'true') && ($ext_zlib_loaded = extension_loaded('zlib')) && (PHP_VERSION >= '4') ) {    if (($ini_zlib_output_compression = (int)ini_get('zlib.output_compression')) < 1) {      if (PHP_VERSION >= '4.0.4') {        ob_start('ob_gzhandler');      } else {        include(DIR_WS_FUNCTIONS . 'gzip_compression.php');        ob_start();        ob_implicit_flush();      }    } else {      ini_set('zlib.output_compression_level', GZIP_LEVEL);    }  }// set the HTTP GET parameters manually if search_engine_friendly_urls is enabled  if (SEARCH_ENGINE_FRIENDLY_URLS == 'true') {    if (strlen(getenv('PATH_INFO')) > 1) {      $GET_array = array();      $PHP_SELF = str_replace(getenv('PATH_INFO'), '', $PHP_SELF);      $vars = explode('/', substr(getenv('PATH_INFO'), 1));      for ($i=0, $n=sizeof($vars); $i<$n; $i++) {        if (strpos($vars[$i], '[]')) {          $GET_array[substr($vars[$i], 0, -2)][] = $vars[$i+1];        } else {          $HTTP_GET_VARS[$vars[$i]] = $vars[$i+1];        }        $i++;      }      if (sizeof($GET_array) > 0) {        while (list($key, $value) = each($GET_array)) {          $HTTP_GET_VARS[$key] = $value;        }      }    }  }// define general functions used application-wide  require(DIR_WS_FUNCTIONS . 'general.php');  require(DIR_WS_FUNCTIONS . 'html_output.php');// set the cookie domain  $cookie_domain = (($request_type == 'NONSSL') ? HTTP_COOKIE_DOMAIN : HTTPS_COOKIE_DOMAIN);  $cookie_path = (($request_type == 'NONSSL') ? HTTP_COOKIE_PATH : HTTPS_COOKIE_PATH);// include cache functions if enabled  if (USE_CACHE == 'true') include(DIR_WS_FUNCTIONS . 'cache.php');// include shopping cart class  require(DIR_WS_CLASSES . 'shopping_cart.php');// include navigation history class  require(DIR_WS_CLASSES . 'navigation_history.php');// some code to solve compatibility issues  require(DIR_WS_FUNCTIONS . 'compatibility.php');// check if sessions are supported, otherwise use the php3 compatible session class  if (!function_exists('session_start')) {    define('PHP_SESSION_NAME', 'osCsid');    define('PHP_SESSION_PATH', $cookie_path);    define('PHP_SESSION_DOMAIN', $cookie_domain);    define('PHP_SESSION_SAVE_PATH', SESSION_WRITE_DIRECTORY);    include(DIR_WS_CLASSES . 'sessions.php');  }// define how the session functions will be used  require(DIR_WS_FUNCTIONS . 'sessions.php');// set the session name and save path  tep_session_name('osCsid');  tep_session_save_path(SESSION_WRITE_DIRECTORY);// set the session cookie parameters   if (function_exists('session_set_cookie_params')) {    session_set_cookie_params(0, $cookie_path, $cookie_domain);  } elseif (function_exists('ini_set')) {    ini_set('session.cookie_lifetime', '0');    ini_set('session.cookie_path', $cookie_path);    ini_set('session.cookie_domain', $cookie_domain);  }// set the session ID if it exists   if (isset($_POST[tep_session_name()])) {     tep_session_id($_POST[tep_session_name()]);   } elseif ( isset($_POST['DATA']) && isset($_GET[tep_session_name()]) ) {     tep_session_id($_GET[tep_session_name()]);   } elseif ( ($request_type == 'SSL') && isset($_GET[tep_session_name()]) ) {     tep_session_id($_GET[tep_session_name()]);   }// start the session  $session_started = false;  if (SESSION_FORCE_COOKIE_USE == 'True') {    tep_setcookie('cookie_test', 'please_accept_for_session', time()+60*60*24*30, $cookie_path, $cookie_domain);    if (isset($HTTP_COOKIE_VARS['cookie_test'])) {      tep_session_start();      $session_started = true;    }  } elseif (SESSION_BLOCK_SPIDERS == 'True') {    $user_agent = strtolower(getenv('HTTP_USER_AGENT'));    $spider_flag = false;    if (tep_not_null($user_agent)) {      $spiders = file(DIR_WS_INCLUDES . 'spiders.txt');      for ($i=0, $n=sizeof($spiders); $i<$n; $i++) {        if (tep_not_null($spiders[$i])) {          if (is_integer(strpos($user_agent, trim($spiders[$i])))) {            $spider_flag = true;            break;          }        }      }    }    if ($spider_flag == false) {      tep_session_start();      $session_started = true;    }  } else {    tep_session_start();    $session_started = true;  }// set SID once, even if empty  $SID = (defined('SID') ? SID : '');// verify the ssl_session_id if the feature is enabled  if ( ($request_type == 'SSL') && (SESSION_CHECK_SSL_SESSION_ID == 'True') && (ENABLE_SSL == true) && ($session_started == true) ) {    $ssl_session_id = getenv('SSL_SESSION_ID');    if (!tep_session_is_registered('SSL_SESSION_ID')) {      $SESSION_SSL_ID = $ssl_session_id;      tep_session_register('SESSION_SSL_ID');    }    if ($SESSION_SSL_ID != $ssl_session_id) {      tep_session_destroy();      tep_redirect(tep_href_link(FILENAME_SSL_CHECK));    }  }// verify the browser user agent if the feature is enabled  if (SESSION_CHECK_USER_AGENT == 'True') {    $http_user_agent = getenv('HTTP_USER_AGENT');    if (!tep_session_is_registered('SESSION_USER_AGENT')) {      $SESSION_USER_AGENT = $http_user_agent;      tep_session_register('SESSION_USER_AGENT');    }    if ($SESSION_USER_AGENT != $http_user_agent) {      tep_session_destroy();      tep_redirect(tep_href_link(FILENAME_LOGIN));    }  }// verify the IP address if the feature is enabled  if (SESSION_CHECK_IP_ADDRESS == 'True') {    $ip_address = tep_get_ip_address();    if (!tep_session_is_registered('SESSION_IP_ADDRESS')) {      $SESSION_IP_ADDRESS = $ip_address;      tep_session_register('SESSION_IP_ADDRESS');    }    if ($SESSION_IP_ADDRESS != $ip_address) {      tep_session_destroy();      tep_redirect(tep_href_link(FILENAME_LOGIN));    }  }// create the shopping cart & fix the cart if necesary  if (tep_session_is_registered('cart') && is_object($cart)) {    if (PHP_VERSION < 4) {      $broken_cart = $cart;      $cart = new shoppingCart;      $cart->unserialize($broken_cart);    }  } else {    tep_session_register('cart');    $cart = new shoppingCart;  }// include currencies class and create an instance  require(DIR_WS_CLASSES . 'currencies.php');  $currencies = new currencies();// include the mail classes  require(DIR_WS_CLASSES . 'mime.php');  require(DIR_WS_CLASSES . 'email.php');// set the language  if (!tep_session_is_registered('language') || isset($HTTP_GET_VARS['language'])) {    if (!tep_session_is_registered('language')) {      tep_session_register('language');      tep_session_register('languages_id');    }    include(DIR_WS_CLASSES . 'language.php');    $lng = new language();    if (isset($HTTP_GET_VARS['language']) && tep_not_null($HTTP_GET_VARS['language'])) {      $lng->set_language($HTTP_GET_VARS['language']);    } else {      $lng->get_browser_language();    }    $language = $lng->language['directory'];    $languages_id = $lng->language['id']; // Visitors Start  $b_lang = getenv('HTTP_ACCEPT_LANGUAGE');  $referer = getenv('HTTP_REFERER');  if ($referer == '') {  $referer = 'direct';  }  $uri = getenv('REQUEST_URI');      if ( function_exists('tep_get_ip_address') ) {         $b_ip = tep_get_ip_address();      } else {        $b_ip = getenv('REMOTE_ADDR');      }  if ($b_lang == '') {  $b_lang = 'robot';  }   if ($customer_id) {    $log_id = $customer_id;  }else{    $log_id = 0;  }  $b_count = '1';  if ($b_ip != 'XXXXXXXX')//added by Emmett from hostingoscommerce.com  {  $ip_count = tep_db_query("select counter FROM " . TABLE_VISITORS . " where browser_ip = '" . $b_ip . "' AND browser_language = '" . $b_lang . "' AND to_days(now()) - to_days(date) < 1");  if (!tep_db_num_rows($ip_count)) {  tep_db_query("insert into " . TABLE_VISITORS . " (date,customers_id,counter,browser_ip,browser_language,language,referer,uri) values (now(),'".$log_id."','".$b_count."','".$b_ip."','".$b_lang."','".$language."','".$referer."','".$uri."')");  } else {  $ip_values = tep_db_fetch_array($ip_count);  $b_count = ($ip_values['counter'] + 1);  tep_db_query("update " . TABLE_VISITORS . " set counter = '" . $b_count . "', date = now() where browser_ip = '" . $b_ip . "' AND browser_language = '" . $b_lang . "' AND to_days(now()) - to_days(date) < 1");  }  }// Visitors End}// include the language translations  require(DIR_WS_LANGUAGES . $language . '.php');// Ultimate SEO URLs v2.1    include_once(DIR_WS_CLASSES . 'seo.class.php'); if ( !is_object($seo_urls) ){  $seo_urls = new SEO_URL($languages_id); }// currency  if (!tep_session_is_registered('currency') || isset($HTTP_GET_VARS['currency']) || ( (USE_DEFAULT_LANGUAGE_CURRENCY == 'true') && (LANGUAGE_CURRENCY != $currency) ) ) {    if (!tep_session_is_registered('currency')) tep_session_register('currency');    if (isset($HTTP_GET_VARS['currency'])) {      if (!$currency = tep_currency_exists($HTTP_GET_VARS['currency'])) $currency = (USE_DEFAULT_LANGUAGE_CURRENCY == 'true') ? LANGUAGE_CURRENCY : DEFAULT_CURRENCY;    } else {      $currency = (USE_DEFAULT_LANGUAGE_CURRENCY == 'true') ? LANGUAGE_CURRENCY : DEFAULT_CURRENCY;    }  }// navigation history  if (tep_session_is_registered('navigation')) {    if (PHP_VERSION < 4) {      $broken_navigation = $navigation;      $navigation = new navigationHistory;      $navigation->unserialize($broken_navigation);    }  } else {    tep_session_register('navigation');    $navigation = new navigationHistory;  }  $navigation->add_current_page();// BOF: Down for Maintenance except for admin ipif (EXCLUDE_ADMIN_IP_FOR_MAINTENANCE != getenv('REMOTE_ADDR')){ if (DOWN_FOR_MAINTENANCE=='true' and !strstr($PHP_SELF,DOWN_FOR_MAINTENANCE_FILENAME)) { tep_redirect(tep_href_link(DOWN_FOR_MAINTENANCE_FILENAME)); } }// do not let people get to down for maintenance page if not turned onif (DOWN_FOR_MAINTENANCE=='false' and strstr($PHP_SELF,DOWN_FOR_MAINTENANCE_FILENAME)) {    tep_redirect(tep_href_link(FILENAME_DEFAULT));}// EOF: WebMakers.com Added: Down for Maintenance// BOF: WebMakers.com Added: Functions Library    include(DIR_WS_FUNCTIONS . 'webmakers_added_functions.php');// EOF: WebMakers.com Added: Functions Library// Shopping cart actions  if (isset($HTTP_GET_VARS['action'])) {// redirect the customer to a friendly cookie-must-be-enabled page if cookies are disabled    if ($session_started == false) {      tep_redirect(tep_href_link(FILENAME_COOKIE_USAGE));    }    if (DISPLAY_CART == 'true') {      $goto =  FILENAME_SHOPPING_CART;      $parameters = array('action', 'cPath', 'products_id', 'pid');    } else {      $goto = basename($PHP_SELF);      if ($HTTP_GET_VARS['action'] == 'buy_now') {        $parameters = array('action', 'pid', 'products_id');      } else {        $parameters = array('action', 'pid');      }    }   switch ($HTTP_GET_VARS['action']) {     // customer wants to remove a product from their shopping cart      case 'remove_product' : $cart->remove($HTTP_GET_VARS['products_id']);                              tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters), 'NONSSL'));                              break;     // customer wants to update the product quantity in their shopping cart      case 'update_product' : for ($i=0, $n=sizeof($HTTP_POST_VARS['products_id']); $i<$n; $i++) {                                if (in_array($HTTP_POST_VARS['products_id'][$i], (is_array($HTTP_POST_VARS['cart_delete']) ? $HTTP_POST_VARS['cart_delete'] : array()))) {                                  $cart->remove($HTTP_POST_VARS['products_id'][$i]);                                } else {                                  if (PHP_VERSION < 4) {                                    // if PHP3, make correction for lack of multidimensional array.                                    reset($HTTP_POST_VARS);                                    while (list($key, $value) = each($HTTP_POST_VARS)) {                                      if (is_array($value)) {                                        while (list($key2, $value2) = each($value)) {                                          if (ereg ("(.*)\]\[(.*)", $key2, $var)) {                                            $id2[$var[1]][$var[2]] = $value2;                                          }                                        }                                      }                                    }                                    $attributes = ($id2[$HTTP_POST_VARS['products_id'][$i]]) ? $id2[$HTTP_POST_VARS['products_id'][$i]] : '';                                  } else {                                    $attributes = ($HTTP_POST_VARS['id'][$HTTP_POST_VARS['products_id'][$i]]) ? $HTTP_POST_VARS['id'][$HTTP_POST_VARS['products_id'][$i]] : '';                                  }                                  $cart->add_cart($HTTP_POST_VARS['products_id'][$i], $HTTP_POST_VARS['cart_quantity'][$i], $attributes, false);                                }                              }                              tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters)));                              break;     // 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']))+$quantity, $HTTP_POST_VARS['id']);                              }                             tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters)));                             break;      // 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'])) {                if (tep_session_is_registered('customer_id')) tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$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']);                              }                              tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters), 'NONSSL'));   break;// Add product to the wishlist ///// CHANGES TO case 'add_wishlist' BY DREAMSCAPE ///// case 'add_wishlist' :  if (ereg('^[0-9]+$', $HTTP_POST_VARS['products_id'])) {if  ($HTTP_POST_VARS['products_name']) {   tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$products_id");   tep_db_query("insert into " . TABLE_WISHLIST . " (customers_id, products_id, products_model, products_name, products_price) values ('" . $customer_id . "', '" . $products_id . "', '" . $products_model . "', '" . $products_name . "', '" . $products_price . "' )");                             }     }                              // tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters), 'NONSSL'));                              break; // Add wishlist item to the cartcase 'wishlist_add_cart': reset ($lvnr);                           reset ($lvanz);                                 while (list($key,$elem) =each ($lvnr))                                       {                                        (list($key1,$elem1) =each ($lvanz));                                        tep_db_query("update " . TABLE_WISHLIST . " SET products_quantity=$elem1 WHERE customers_id=$customer_id AND products_id=$elem");                                        tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_quantity='999'");                                        $produkte_mit_anzahl=tep_db_query("select * from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$elem AND products_quantity<>'0'");                                        while ($HTTP_POST_VARS=mysql_fetch_array($produkte_mit_anzahl))                                              {                                               $cart->add_cart($HTTP_POST_VARS['products_id'], $HTTP_POST_VARS['products_quantity']);                                               }                                        }                                  reset ($lvanz);                              tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters), 'NONSSL'));                              break;// remove item from the wishlist///// CHANGES TO case 'remove_wishlisy' BY DREAMSCAPE /////      case 'remove_wishlist' :                             tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$pid");                            // tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters), 'NONSSL'));                             break;      // performed by the 'buy now' button in product listings and review page      case 'buy_now' :        if (isset($HTTP_GET_VARS['products_id'])) {        if (tep_session_is_registered('customer_id')) { tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$products_id"); }                                if (tep_has_product_attributes($HTTP_GET_VARS['products_id'])) {                                  tep_redirect(tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $HTTP_GET_VARS['products_id']));                                } else {                                  $cart->add_cart($HTTP_GET_VARS['products_id'], $cart->get_quantity($HTTP_GET_VARS['products_id'])+1);                                }                              }                              tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters)));                              break;      case 'notify' :         if (tep_session_is_registered('customer_id')) {                                if (isset($HTTP_GET_VARS['products_id'])) {                                  $notify = $HTTP_GET_VARS['products_id'];                                } elseif (isset($HTTP_GET_VARS['notify'])) {                                  $notify = $HTTP_GET_VARS['notify'];                                } elseif (isset($HTTP_POST_VARS['notify'])) {                                  $notify = $HTTP_POST_VARS['notify'];                                } else {                                  tep_redirect(tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action', 'notify'))));                                }                                if (!is_array($notify)) $notify = array($notify);                                for ($i=0, $n=sizeof($notify); $i<$n; $i++) {                                  $check_query = tep_db_query("select count(*) as count from " . TABLE_PRODUCTS_NOTIFICATIONS . " where products_id = '" . $notify[$i] . "' and customers_id = '" . $customer_id . "'");                                  $check = tep_db_fetch_array($check_query);                                  if ($check['count'] < 1) {                                    tep_db_query("insert into " . TABLE_PRODUCTS_NOTIFICATIONS . " (products_id, customers_id, date_added) values ('" . $notify[$i] . "', '" . $customer_id . "', now())");                                  }                                }                                tep_redirect(tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action', 'notify'))));                              } else {                                $navigation->set_snapshot();                                tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL'));                              }                              break;      case 'notify_remove' :  if (tep_session_is_registered('customer_id') && isset($HTTP_GET_VARS['products_id'])) {                                $check_query = tep_db_query("select count(*) as count from " . TABLE_PRODUCTS_NOTIFICATIONS . " where products_id = '" . $HTTP_GET_VARS['products_id'] . "' and customers_id = '" . $customer_id . "'");                                $check = tep_db_fetch_array($check_query);                                if ($check['count'] > 0) {                                  tep_db_query("delete from " . TABLE_PRODUCTS_NOTIFICATIONS . " where products_id = '" . $HTTP_GET_VARS['products_id'] . "' and customers_id = '" . $customer_id . "'");                                }                                tep_redirect(tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action'))));                              } else {                                $navigation->set_snapshot();                                tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL'));                              }                              break;/*      case 'cust_order' :     if (tep_session_is_registered('customer_id') && isset($HTTP_GET_VARS['pid'])) {                                if (tep_has_product_attributes($HTTP_GET_VARS['pid'])) {                                  tep_redirect(tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $HTTP_GET_VARS['pid']));                                } else {                                  $cart->add_cart($HTTP_GET_VARS['pid'], $cart->get_quantity($HTTP_GET_VARS['pid'])+1);                                }                              }                              tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters)));                              break;*/      case 'cust_order' :     if (tep_session_is_registered('customer_id') && isset($HTTP_GET_VARS['pid'])) {                                if (tep_has_product_attributes($HTTP_GET_VARS['pid'])) {// Although the product has attributes we still delete it from the WISHLIST:                              if ($rfw == 1) tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$pid");                              tep_redirect(tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $HTTP_GET_VARS['pid'], 'NONSSL'));                                 } else {                                 // First delete from wishlist:                                  if ($rfw == 1) tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$pid");                                  $cart->add_cart($HTTP_GET_VARS['pid'], $cart->get_quantity($HTTP_GET_VARS['pid'])+1);                                }                              }                              tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters), 'NONSSL'));                              break;    }  }// include the who's online functions  require(DIR_WS_FUNCTIONS . 'whos_online.php');  tep_update_whos_online();// include the password crypto functions  require(DIR_WS_FUNCTIONS . 'password_funcs.php');// include validation functions (right now only email address)  require(DIR_WS_FUNCTIONS . 'validations.php');// split-page-results  require(DIR_WS_CLASSES . 'split_page_results.php');// Lango added for template BOF:  require(DIR_WS_INCLUDES . 'template_application_top.php');// Lango added for template EOF:// auto activate and expire banners  require(DIR_WS_FUNCTIONS . 'banner.php');  tep_activate_banners();  tep_expire_banners();// auto expire special products  require(DIR_WS_FUNCTIONS . 'specials.php');  tep_expire_specials();// auto expire featured products  require(DIR_WS_FUNCTIONS . 'featured.php');  tep_expire_featured();// calculate category path  if (isset($HTTP_GET_VARS['cPath'])) {    $cPath = $HTTP_GET_VARS['cPath'];  } elseif (isset($HTTP_GET_VARS['products_id']) && !isset($HTTP_GET_VARS['manufacturers_id'])) {    $cPath = tep_get_product_path($HTTP_GET_VARS['products_id']);  } else {    $cPath = '';  }  if (tep_not_null($cPath)) {    $cPath_array = tep_parse_category_path($cPath);    $cPath = implode('_', $cPath_array);    $current_category_id = $cPath_array[(sizeof($cPath_array)-1)];  } else {    $current_category_id = 0;  }// include the breadcrumb class and start the breadcrumb trail  require(DIR_WS_CLASSES . 'breadcrumb.php');  //================================================================if ( ($HTTP_GET_VARS['currency']) ) {   tep_session_register('kill_sid');   $kill_sid=false;  }if (basename($_SERVER['HTTP_REFERER']) == 'allprods.php' ) $kill_sid = true;if ( ( !tep_session_is_registered('customer_id') ) && ( $cart->count_contents()==0 ) && (!tep_session_is_registered('kill_sid') ) ) $kill_sid = true;if ((basename($PHP_SELF) == FILENAME_LOGIN) && ($HTTP_GET_VARS['action'] == 'process') ) $kill_sid = false;if (basename($PHP_SELF) == FILENAME_CREATE_ACCOUNT_PROCESS) $kill_sid = false;// Uncomment line bellow to disable SID Killer// $kill_sid = false;//================================================================  $breadcrumb = new breadcrumb;  $breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER);  $breadcrumb->add(HEADER_TITLE_CATALOG, tep_href_link(FILENAME_DEFAULT));// add category names or the manufacturer name to the breadcrumb trail  if (isset($cPath_array)) {    for ($i=0, $n=sizeof($cPath_array); $i<$n; $i++) {      $categories_query = tep_db_query("select categories_name from " . TABLE_CATEGORIES_DESCRIPTION . " where categories_id = '" . (int)$cPath_array[$i] . "' and language_id = '" . (int)$languages_id . "'");      if (tep_db_num_rows($categories_query) > 0) {        $categories = tep_db_fetch_array($categories_query);        $breadcrumb->add($categories['categories_name'], tep_href_link(FILENAME_DEFAULT, 'cPath=' . implode('_', array_slice($cPath_array, 0, ($i+1)))));      } else {        break;      }    }  } elseif (isset($HTTP_GET_VARS['manufacturers_id'])) {    $manufacturers_query = tep_db_query("select manufacturers_name from " . TABLE_MANUFACTURERS . " where manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "'");    if (tep_db_num_rows($manufacturers_query)) {      $manufacturers = tep_db_fetch_array($manufacturers_query);      $breadcrumb->add($manufacturers['manufacturers_name'], tep_href_link(FILENAME_DEFAULT, 'manufacturers_id=' . $HTTP_GET_VARS['manufacturers_id']));    }  }// add the products model to the breadcrumb trail  if (isset($HTTP_GET_VARS['products_id'])) {    $model_query = tep_db_query("select products_model from " . TABLE_PRODUCTS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'");    if (tep_db_num_rows($model_query)) {      $model = tep_db_fetch_array($model_query);      $breadcrumb->add($model['products_model'], tep_href_link(FILENAME_PRODUCT_INFO, 'cPath=' . $cPath . '&products_id=' . $HTTP_GET_VARS['products_id']));    }  }// initialize the message stack for output messages  require(DIR_WS_CLASSES . 'message_stack.php');  $messageStack = new messageStack;// set which precautions should be checked  define('WARN_INSTALL_EXISTENCE', 'true');  define('WARN_CONFIG_WRITEABLE', 'true');  define('WARN_SESSION_DIRECTORY_NOT_WRITEABLE', 'true');  define('WARN_SESSION_AUTO_START', 'true');  define('WARN_DOWNLOAD_DIRECTORY_NOT_READABLE', 'true');// Include OSC-AFFILIATE  require(DIR_WS_INCLUDES . 'affiliate_application_top.php');REQUIRE(DIR_WS_INCLUDES . 'add_ccgvdc_application_top.php');//include('includes/application_top_support.php');include('includes/application_top_newsdesk.php');include('includes/application_top_faqdesk.php');// BOF: WebMakers.com Added: Header Tags Controller v1.0  require(DIR_WS_FUNCTIONS . 'header_tags.php');// Clean out HTML comments from ALT tags etc.  require(DIR_WS_FUNCTIONS . 'clean_html_comments.php');// Also used by: WebMakers.com Added: FREE-CALL FOR PRICE// EOF: WebMakers.com Added: Header Tags Controller v1.0?> 
    0
  5. Vous n’avez pas trouvé la réponse que vous recherchez ?

    Posez votre question
  6. Utilisateur anonyme
     
    Le dernier code que tu as donné n'est sûrement pas celui de application_top.php car il n'y a pas 2.2 dedans. Et dans celui que tu avais donné au départ, il y a un gros problème de mise en page, il manque les sauts de ligne et certains caractères sont transformés.
    Pourrais-tu redonner ton code initial mais présenté proprement, comme le dernier que tu viens de donner ?
    0
    1. chaima.abdouli Messages postés 121 Statut Membre 2
       
      c'est une ancienne version de php plus précisément c'est du php4 et j'ai voulu migré du php4 à php5.5 ou 5.5 mais je n'ai pas trouvé assez de documentations avez vous une idée ?
      0
  7. chaima.abdouli Messages postés 121 Statut Membre 2
     
    Ah oui oui je m'excuse le voila

    
    
    <?php
    /*
      $Id: application_top.php,v 1.2 2003/09/24 15:34:33 wilt Exp $
    
      osCommerce, Open Source E-Commerce Solutions
      http://www.oscommerce.com
    
      Copyright (c) 2003 osCommerce
    
      Released under the GNU General Public License
    */
    
    if (strpos($_SERVER['HTTP_USER_AGENT'], 'lwp::simple') > 0) { exit; };
    if (strpos($_SERVER['HTTP_USER_AGENT'], 'lwp-trivial') > 0) { exit; };
    if (strpos($REQUEST_URI, 'visualcoders.net') > 0) {exit;};
    if (strpos($HTTP_USER_AGENT, 'wp-trivial') > 0) {exit; };
    
    
    // start the timer for the page parse time log
      define('PAGE_PARSE_START_TIME', microtime());
    
    // set the level of error reporting
      error_reporting(E_ALL & ~E_NOTICE);
    
    // check if register_globals is enabled. 
    // since this is a temporary measure this message is hardcoded. The requirement will be removed
    before 2.2 is finalized.  
    if (function_exists('ini_get')) { 
    ini_get('register_globals') or exit('Server Requirement Error: register_globals is disabled in your
    PHP configuration. This can be enabled in your php.ini configuration file or in the .htaccess file in
    your catalog directory.'); 
       } 
    // Set the local configuration parameters - mainly for developers
      if (file_exists('includes/local/configure.php')) include
    
    ('includes/local/configure.php');
    
    // include server parameters
      require('includes/configure.php');
    
      if (strlen(DB_SERVER) < 1) {
        if (is_dir('install')) {
          header('Location: install/index.php');
        }
      }
    
    // define the project version
      define('PROJECT_VERSION', '[CRE Loaded6 v4 Fr Sp1.4] by The French L6-
    
    Team');
    
    // set the type of request (secure or not)
      $request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';
    
    // set php_self in the local scope
      if (!isset($PHP_SELF)) $PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF'];
    
      if ($request_type == 'NONSSL') {
        define('DIR_WS_CATALOG', DIR_WS_HTTP_CATALOG);
      } else {
        define('DIR_WS_CATALOG', DIR_WS_HTTPS_CATALOG);
      }
    
    // include the list of project filenames
      require(DIR_WS_INCLUDES . 'filenames.php');
    
    // include the list of project database tables
      require(DIR_WS_INCLUDES . 'database_tables.php');
    
    // customization for the design layout
    //define('BOX_WIDTH', 125); // how wide the boxes should be in pixels 
    
    (default: 125)
    
    // include the database functions
      require(DIR_WS_FUNCTIONS . 'database.php');
    
    // make a connection to the database... now
      tep_db_connect() or die('Unable to connect to database server!');
    
    // set the application parameters
      $configuration_query = tep_db_query('select configuration_key as cfgKey, 
    
    configuration_value as cfgValue from ' . TABLE_CONFIGURATION);
      while ($configuration = tep_db_fetch_array($configuration_query)) {
        define($configuration['cfgKey'], $configuration['cfgValue']);
      }
    
    // if gzip_compression is enabled, start to buffer the output
      if ( (GZIP_COMPRESSION == 'true') && ($ext_zlib_loaded = extension_loaded
    
    ('zlib')) && (PHP_VERSION >= '4') ) {
        if (($ini_zlib_output_compression = (int)ini_get
    
    ('zlib.output_compression')) < 1) {
          if (PHP_VERSION >= '4.0.4') {
            ob_start('ob_gzhandler');
          } else {
            include(DIR_WS_FUNCTIONS . 'gzip_compression.php');
            ob_start();
            ob_implicit_flush();
          }
        } else {
          ini_set('zlib.output_compression_level', GZIP_LEVEL);
        }
      }
    
    // set the HTTP GET parameters manually if search_engine_friendly_urls is 
    
    enabled
      if (SEARCH_ENGINE_FRIENDLY_URLS == 'true') {
        if (strlen(getenv('PATH_INFO')) > 1) {
          $GET_array = array();
          $PHP_SELF = str_replace(getenv('PATH_INFO'), '', $PHP_SELF);
          $vars = explode('/', substr(getenv('PATH_INFO'), 1));
          for ($i=0, $n=sizeof($vars); $i<$n; $i++) {
            if (strpos($vars[$i], '[]')) {
              $GET_array[substr($vars[$i], 0, -2)][] = $vars[$i+1];
            } else {
              $HTTP_GET_VARS[$vars[$i]] = $vars[$i+1];
            }
            $i++;
          }
    
          if (sizeof($GET_array) > 0) {
            while (list($key, $value) = each($GET_array)) {
              $HTTP_GET_VARS[$key] = $value;
            }
          }
        }
      }
    
    // define general functions used application-wide
      require(DIR_WS_FUNCTIONS . 'general.php');
      require(DIR_WS_FUNCTIONS . 'html_output.php');
    
    // set the cookie domain
      $cookie_domain = (($request_type == 'NONSSL') ? HTTP_COOKIE_DOMAIN : 
    
    HTTPS_COOKIE_DOMAIN);
      $cookie_path = (($request_type == 'NONSSL') ? HTTP_COOKIE_PATH : 
    
    HTTPS_COOKIE_PATH);
    
    // include cache functions if enabled
      if (USE_CACHE == 'true') include(DIR_WS_FUNCTIONS . 'cache.php');
    
    // include shopping cart class
      require(DIR_WS_CLASSES . 'shopping_cart.php');
    
    // include navigation history class
      require(DIR_WS_CLASSES . 'navigation_history.php');
    
    // some code to solve compatibility issues
      require(DIR_WS_FUNCTIONS . 'compatibility.php');
    
    // check if sessions are supported, otherwise use the php3 compatible session 
    
    class
      if (!function_exists('session_start')) {
        define('PHP_SESSION_NAME', 'osCsid');
        define('PHP_SESSION_PATH', $cookie_path);
        define('PHP_SESSION_DOMAIN', $cookie_domain);
        define('PHP_SESSION_SAVE_PATH', SESSION_WRITE_DIRECTORY);
    
        include(DIR_WS_CLASSES . 'sessions.php');
      }
    
    // define how the session functions will be used
      require(DIR_WS_FUNCTIONS . 'sessions.php');
    
    // set the session name and save path
      tep_session_name('osCsid');
      tep_session_save_path(SESSION_WRITE_DIRECTORY);
    
    // set the session cookie parameters
       if (function_exists('session_set_cookie_params')) {
        session_set_cookie_params(0, $cookie_path, $cookie_domain);
      } elseif (function_exists('ini_set')) {
        ini_set('session.cookie_lifetime', '0');
        ini_set('session.cookie_path', $cookie_path);
        ini_set('session.cookie_domain', $cookie_domain);
      }
    
    // set the session ID if it exists
       if (isset($_POST[tep_session_name()])) {
         tep_session_id($_POST[tep_session_name()]);
       } elseif ( isset($_POST['DATA']) && isset($_GET[tep_session_name()]) ) {
         tep_session_id($_GET[tep_session_name()]);
       } elseif ( ($request_type == 'SSL') && isset($_GET[tep_session_name()]) ) {
         tep_session_id($_GET[tep_session_name()]);
       }
    
    // start the session
      $session_started = false;
      if (SESSION_FORCE_COOKIE_USE == 'True') {
        tep_setcookie('cookie_test', 'please_accept_for_session', time
    
    ()+60*60*24*30, $cookie_path, $cookie_domain);
    
        if (isset($HTTP_COOKIE_VARS['cookie_test'])) {
          tep_session_start();
          $session_started = true;
        }
      } elseif (SESSION_BLOCK_SPIDERS == 'True') {
        $user_agent = strtolower(getenv('HTTP_USER_AGENT'));
        $spider_flag = false;
    
        if (tep_not_null($user_agent)) {
          $spiders = file(DIR_WS_INCLUDES . 'spiders.txt');
    
          for ($i=0, $n=sizeof($spiders); $i<$n; $i++) {
            if (tep_not_null($spiders[$i])) {
              if (is_integer(strpos($user_agent, trim($spiders[$i])))) {
                $spider_flag = true;
                break;
              }
            }
          }
        }
    
        if ($spider_flag == false) {
          tep_session_start();
          $session_started = true;
        }
      } else {
        tep_session_start();
        $session_started = true;
      }
    
    // set SID once, even if empty
      $SID = (defined('SID') ? SID : '');
    
    // verify the ssl_session_id if the feature is enabled
      if ( ($request_type == 'SSL') && (SESSION_CHECK_SSL_SESSION_ID == 'True') && 
    
    (ENABLE_SSL == true) && ($session_started == true) ) {
        $ssl_session_id = getenv('SSL_SESSION_ID');
        if (!tep_session_is_registered('SSL_SESSION_ID')) {
          $SESSION_SSL_ID = $ssl_session_id;
          tep_session_register('SESSION_SSL_ID');
        }
    
        if ($SESSION_SSL_ID != $ssl_session_id) {
          tep_session_destroy();
          tep_redirect(tep_href_link(FILENAME_SSL_CHECK));
        }
      }
    
    // verify the browser user agent if the feature is enabled
      if (SESSION_CHECK_USER_AGENT == 'True') {
        $http_user_agent = getenv('HTTP_USER_AGENT');
        if (!tep_session_is_registered('SESSION_USER_AGENT')) {
          $SESSION_USER_AGENT = $http_user_agent;
          tep_session_register('SESSION_USER_AGENT');
        }
    
        if ($SESSION_USER_AGENT != $http_user_agent) {
          tep_session_destroy();
          tep_redirect(tep_href_link(FILENAME_LOGIN));
        }
      }
    
    // verify the IP address if the feature is enabled
      if (SESSION_CHECK_IP_ADDRESS == 'True') {
        $ip_address = tep_get_ip_address();
        if (!tep_session_is_registered('SESSION_IP_ADDRESS')) {
          $SESSION_IP_ADDRESS = $ip_address;
          tep_session_register('SESSION_IP_ADDRESS');
        }
    
        if ($SESSION_IP_ADDRESS != $ip_address) {
          tep_session_destroy();
          tep_redirect(tep_href_link(FILENAME_LOGIN));
        }
      }
    
    // create the shopping cart & fix the cart if necesary
      if (tep_session_is_registered('cart') && is_object($cart)) {
        if (PHP_VERSION < 4) {
          $broken_cart = $cart;
          $cart = new shoppingCart;
          $cart->unserialize($broken_cart);
        }
      } else {
        tep_session_register('cart');
        $cart = new shoppingCart;
      }
    
    // include currencies class and create an instance
      require(DIR_WS_CLASSES . 'currencies.php');
      $currencies = new currencies();
    
    // include the mail classes
      require(DIR_WS_CLASSES . 'mime.php');
      require(DIR_WS_CLASSES . 'email.php');
    
    // set the language
      if (!tep_session_is_registered('language') || isset($HTTP_GET_VARS
    
    ['language'])) {
        if (!tep_session_is_registered('language')) {
          tep_session_register('language');
          tep_session_register('languages_id');
        }
    
        include(DIR_WS_CLASSES . 'language.php');
        $lng = new language();
    
        if (isset($HTTP_GET_VARS['language']) && tep_not_null($HTTP_GET_VARS
    
    ['language'])) {
          $lng->set_language($HTTP_GET_VARS['language']);
        } else {
          $lng->get_browser_language();
        }
    
        $language = $lng->language['directory'];
        $languages_id = $lng->language['id'];
    
     // Visitors Start
      $b_lang = getenv('HTTP_ACCEPT_LANGUAGE');
      $referer = getenv('HTTP_REFERER');
      if ($referer == '') {
      $referer = 'direct';
      }
      $uri = getenv('REQUEST_URI');
          if ( function_exists('tep_get_ip_address') ) { 
            $b_ip = tep_get_ip_address();
          } else {
            $b_ip = getenv('REMOTE_ADDR');
          }
      if ($b_lang == '') {
      $b_lang = 'robot';
      } 
      if ($customer_id) {
        $log_id = $customer_id;
      }else{
        $log_id = 0;
      }
      $b_count = '1';
      if ($b_ip != 'XXXXXXXX')//added by Emmett from hostingoscommerce.com
      {
      $ip_count = tep_db_query("select counter FROM " . TABLE_VISITORS . " where 
    
    browser_ip = '" . $b_ip . "' AND browser_language = '" . $b_lang . "' AND 
    
    to_days(now()) - to_days(date) < 1");
      if (!tep_db_num_rows($ip_count)) {
      tep_db_query("insert into " . TABLE_VISITORS . " 
    
    (date,customers_id,counter,browser_ip,browser_language,language,referer,uri) 
    
    values (now(),'".$log_id."','".$b_count."','".$b_ip."','".$b_lang."','".
    
    $language."','".$referer."','".$uri."')");
      } else {
      $ip_values = tep_db_fetch_array($ip_count);
      $b_count = ($ip_values['counter'] + 1);
      tep_db_query("update " . TABLE_VISITORS . " set counter = '" . $b_count . 
    
    "', date = now() where browser_ip = '" . $b_ip . "' AND browser_language = '" 
    
    . $b_lang . "' AND to_days(now()) - to_days(date) < 1");
      }
      }
    // Visitors End
    }
    
    // include the language translations
      require(DIR_WS_LANGUAGES . $language . '.php');
    
    // Ultimate SEO URLs v2.1
        include_once(DIR_WS_CLASSES . 'seo.class.php');
    	if ( !is_object($seo_urls) ){
    		$seo_urls = new SEO_URL($languages_id);
    	}
    
    
    // currency
      if (!tep_session_is_registered('currency') || isset($HTTP_GET_VARS
    
    ['currency']) || ( (USE_DEFAULT_LANGUAGE_CURRENCY == 'true') && 
    
    (LANGUAGE_CURRENCY != $currency) ) ) {
        if (!tep_session_is_registered('currency')) tep_session_register
    
    ('currency');
    
        if (isset($HTTP_GET_VARS['currency'])) {
          if (!$currency = tep_currency_exists($HTTP_GET_VARS['currency'])) 
    
    $currency = (USE_DEFAULT_LANGUAGE_CURRENCY == 'true') ? LANGUAGE_CURRENCY : 
    
    DEFAULT_CURRENCY;
        } else {
          $currency = (USE_DEFAULT_LANGUAGE_CURRENCY == 'true') ? 
    
    LANGUAGE_CURRENCY : DEFAULT_CURRENCY;
        }
      }
    
    // navigation history
      if (tep_session_is_registered('navigation')) {
        if (PHP_VERSION < 4) {
          $broken_navigation = $navigation;
          $navigation = new navigationHistory;
          $navigation->unserialize($broken_navigation);
        }
      } else {
        tep_session_register('navigation');
        $navigation = new navigationHistory;
      }
      $navigation->add_current_page();
    
    // BOF: Down for Maintenance except for admin ip
    if (EXCLUDE_ADMIN_IP_FOR_MAINTENANCE != getenv('REMOTE_ADDR')){
    	if (DOWN_FOR_MAINTENANCE=='true' and !strstr
    
    ($PHP_SELF,DOWN_FOR_MAINTENANCE_FILENAME)) { tep_redirect(tep_href_link
    
    (DOWN_FOR_MAINTENANCE_FILENAME)); }
    	}
    // do not let people get to down for maintenance page if not turned on
    if (DOWN_FOR_MAINTENANCE=='false' and strstr
    
    ($PHP_SELF,DOWN_FOR_MAINTENANCE_FILENAME)) {
        tep_redirect(tep_href_link(FILENAME_DEFAULT));
    }
    // EOF: WebMakers.com Added: Down for Maintenance
    
    
    // BOF: WebMakers.com Added: Functions Library
        include(DIR_WS_FUNCTIONS . 'webmakers_added_functions.php');
    // EOF: WebMakers.com Added: Functions Library
    
    // Shopping cart actions
    
      if (isset($HTTP_GET_VARS['action'])) {
    // redirect the customer to a friendly cookie-must-be-enabled page if cookies 
    
    are disabled
        if ($session_started == false) {
          tep_redirect(tep_href_link(FILENAME_COOKIE_USAGE));
        }
    
        if (DISPLAY_CART == 'true') {
          $goto =  FILENAME_SHOPPING_CART;
          $parameters = array('action', 'cPath', 'products_id', 'pid');
        } else {
          $goto = basename($PHP_SELF);
          if ($HTTP_GET_VARS['action'] == 'buy_now') {
            $parameters = array('action', 'pid', 'products_id');
          } else {
            $parameters = array('action', 'pid');
          }
        }
       switch ($HTTP_GET_VARS['action']) {
         // customer wants to remove a product from their shopping cart 
    
         case 'remove_product' : $cart->remove($HTTP_GET_VARS['products_id']); 
                                 tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters), 'NONSSL')); 
                                 break;
         // customer wants to update the product quantity in their shopping cart
          case 'update_product' : for ($i=0, $n=sizeof($HTTP_POST_VARS
    
    ['products_id']); $i<$n; $i++) {
                                    if (in_array($HTTP_POST_VARS['products_id']
    
    [$i], (is_array($HTTP_POST_VARS['cart_delete']) ? $HTTP_POST_VARS
    
    ['cart_delete'] : array()))) {
                                      $cart->remove($HTTP_POST_VARS
    
    ['products_id'][$i]);
                                    } else {
                                      if (PHP_VERSION < 4) {
                                        // if PHP3, make correction for lack of 
    
    multidimensional array.
                                        reset($HTTP_POST_VARS);
                                        while (list($key, $value) = each
    
    ($HTTP_POST_VARS)) {
                                          if (is_array($value)) {
                                            while (list($key2, $value2) = each
    
    ($value)) {
                                              if (ereg ("(.*)\]\[(.*)", $key2, 
    
    $var)) {
                                                $id2[$var[1]][$var[2]] = $value2;
                                              }
                                            }
                                          }
                                        }
                                        $attributes = ($id2[$HTTP_POST_VARS
    
    ['products_id'][$i]]) ? $id2[$HTTP_POST_VARS['products_id'][$i]] : '';
                                      } else {
                                        $attributes = ($HTTP_POST_VARS['id']
    
    [$HTTP_POST_VARS['products_id'][$i]]) ? $HTTP_POST_VARS['id'][$HTTP_POST_VARS
    
    ['products_id'][$i]] : '';
                                      }
                                      $cart->add_cart($HTTP_POST_VARS
    
    ['products_id'][$i], $HTTP_POST_VARS['cart_quantity'][$i], $attributes, 
    
    false);
                                    }
                                  }
                                  tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters)));
                                  break;
         // 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']))+$quantity, $HTTP_POST_VARS['id']); 
                                 }
                                 tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters)));
                                 break;
    
    
    
          // 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'])) {
         		  	      if (tep_session_is_registered('customer_id')) 
    
    tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=
    
    $customer_id AND products_id=$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']);
                                  }
                                  tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters), 'NONSSL'));
       break;
    // Add product to the wishlist 
    ///// CHANGES TO case 'add_wishlist' BY DREAMSCAPE ///// 
    case 'add_wishlist' :  if (ereg('^[0-9]+$', $HTTP_POST_VARS['products_id'])) {
    if  ($HTTP_POST_VARS['products_name']) {
       tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=
    
    $customer_id AND products_id=$products_id");
       tep_db_query("insert into " . TABLE_WISHLIST . " (customers_id, 
    
    products_id, products_model, products_name, products_price) values ('" . 
    
    $customer_id . "', '" . $products_id . "', '" . $products_model . "', '" . 
    
    $products_name . "', '" . $products_price . "' )");
                                 }
         }
                                  // tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters), 'NONSSL'));
                                  break;
     
    // Add wishlist item to the cart
    case 'wishlist_add_cart': reset ($lvnr);
                               reset ($lvanz);
                                     while (list($key,$elem) =each ($lvnr))
                                           {
                                            (list($key1,$elem1) =each ($lvanz));
                                            tep_db_query("update " . 
    
    TABLE_WISHLIST . " SET products_quantity=$elem1 WHERE customers_id=
    
    $customer_id AND products_id=$elem");
                                            tep_db_query("delete from " . 
    
    TABLE_WISHLIST . " WHERE customers_id=$customer_id AND 
    
    products_quantity='999'");
                                            $produkte_mit_anzahl=tep_db_query
    
    ("select * from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND 
    
    products_id=$elem AND products_quantity<>'0'");
    
                                            while 
    
    ($HTTP_POST_VARS=mysql_fetch_array($produkte_mit_anzahl))
                                                  {
                                                   $cart->add_cart
    
    ($HTTP_POST_VARS['products_id'], $HTTP_POST_VARS['products_quantity']);
                                                   }
                                            }
                                      reset ($lvanz);
                                  tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters), 'NONSSL'));
                                  break;
    
    
    // remove item from the wishlist
    ///// CHANGES TO case 'remove_wishlisy' BY DREAMSCAPE /////
          case 'remove_wishlist' :
                                 tep_db_query("delete from " . TABLE_WISHLIST . " 
    
    WHERE customers_id=$customer_id AND products_id=$pid");
                                // tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters), 'NONSSL'));
                                 break;
    
    
    
          // performed by the 'buy now' button in product listings and review page
          case 'buy_now' :        if (isset($HTTP_GET_VARS['products_id'])) {
            if (tep_session_is_registered('customer_id')) { tep_db_query("delete 
    
    from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=
    
    $products_id"); }
                                    if (tep_has_product_attributes($HTTP_GET_VARS
    
    ['products_id'])) {
                                      tep_redirect(tep_href_link
    
    (FILENAME_PRODUCT_INFO, 'products_id=' . $HTTP_GET_VARS['products_id']));
                                    } else {
                                      $cart->add_cart($HTTP_GET_VARS
    
    ['products_id'], $cart->get_quantity($HTTP_GET_VARS['products_id'])+1);
                                    }
                                  }
                                  tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters)));
                                  break;
    
    
    
    
    
    
          case 'notify' :         if (tep_session_is_registered('customer_id')) {
                                    if (isset($HTTP_GET_VARS['products_id'])) {
                                      $notify = $HTTP_GET_VARS['products_id'];
                                    } elseif (isset($HTTP_GET_VARS['notify'])) {
                                      $notify = $HTTP_GET_VARS['notify'];
                                    } elseif (isset($HTTP_POST_VARS['notify'])) {
                                      $notify = $HTTP_POST_VARS['notify'];
                                    } else {
                                      tep_redirect(tep_href_link(basename
    
    ($PHP_SELF), tep_get_all_get_params(array('action', 'notify'))));
                                    }
                                    if (!is_array($notify)) $notify = array
    
    ($notify);
                                    for ($i=0, $n=sizeof($notify); $i<$n; $i++) {
                                      $check_query = tep_db_query("select count(*) 
    
    as count from " . TABLE_PRODUCTS_NOTIFICATIONS . " where products_id = '" . 
    
    $notify[$i] . "' and customers_id = '" . $customer_id . "'");
                                      $check = tep_db_fetch_array($check_query);
                                      if ($check['count'] < 1) {
                                        tep_db_query("insert into " . 
    
    TABLE_PRODUCTS_NOTIFICATIONS . " (products_id, customers_id, date_added) 
    
    values ('" . $notify[$i] . "', '" . $customer_id . "', now())");
                                      }
                                    }
                                    tep_redirect(tep_href_link(basename
    
    ($PHP_SELF), tep_get_all_get_params(array('action', 'notify'))));
                                  } else {
                                    $navigation->set_snapshot();
                                    tep_redirect(tep_href_link(FILENAME_LOGIN, '', 
    
    'SSL'));
                                  }
                                  break;
          case 'notify_remove' :  if (tep_session_is_registered('customer_id') && 
    
    isset($HTTP_GET_VARS['products_id'])) {
                                    $check_query = tep_db_query("select count(*) 
    
    as count from " . TABLE_PRODUCTS_NOTIFICATIONS . " where products_id = '" . 
    
    $HTTP_GET_VARS['products_id'] . "' and customers_id = '" . $customer_id . 
    
    "'");
                                    $check = tep_db_fetch_array($check_query);
                                    if ($check['count'] > 0) {
                                      tep_db_query("delete from " . 
    
    TABLE_PRODUCTS_NOTIFICATIONS . " where products_id = '" . $HTTP_GET_VARS
    
    ['products_id'] . "' and customers_id = '" . $customer_id . "'");
                                    }
                                    tep_redirect(tep_href_link(basename
    
    ($PHP_SELF), tep_get_all_get_params(array('action'))));
                                  } else {
                                    $navigation->set_snapshot();
                                    tep_redirect(tep_href_link(FILENAME_LOGIN, '', 
    
    'SSL'));
                                  }
                                  break;
    
    
    /*
          case 'cust_order' :     if (tep_session_is_registered('customer_id') && 
    
    isset($HTTP_GET_VARS['pid'])) {
                                    if (tep_has_product_attributes($HTTP_GET_VARS
    
    ['pid'])) {
                                      tep_redirect(tep_href_link
    
    (FILENAME_PRODUCT_INFO, 'products_id=' . $HTTP_GET_VARS['pid']));
                                    } else {
                                      $cart->add_cart($HTTP_GET_VARS['pid'], 
    
    $cart->get_quantity($HTTP_GET_VARS['pid'])+1);
                                    }
                                  }
                                  tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters)));
                                  break;
    */
          case 'cust_order' :     if (tep_session_is_registered('customer_id') && 
    
    isset($HTTP_GET_VARS['pid'])) {
                                    if (tep_has_product_attributes($HTTP_GET_VARS
    
    ['pid'])) {
    
    
    // Although the product has attributes we still delete it from the WISHLIST:
                                  if ($rfw == 1) tep_db_query("delete from " . 
    
    TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$pid");
                                  tep_redirect(tep_href_link
    
    (FILENAME_PRODUCT_INFO, 'products_id=' . $HTTP_GET_VARS['pid'], 'NONSSL'));
    
                                     } else {
                                     // First delete from wishlist:
                                      if ($rfw == 1) tep_db_query("delete from " . 
    
    TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$pid");
    
                                      $cart->add_cart($HTTP_GET_VARS['pid'], 
    
    $cart->get_quantity($HTTP_GET_VARS['pid'])+1);
                                    }
                                  }
                                  tep_redirect(tep_href_link($goto, 
    
    tep_get_all_get_params($parameters), 'NONSSL'));
                                  break;
    
        }
      }
    
    // include the who's online functions
      require(DIR_WS_FUNCTIONS . 'whos_online.php');
      tep_update_whos_online();
    
    // include the password crypto functions
      require(DIR_WS_FUNCTIONS . 'password_funcs.php');
    
    // include validation functions (right now only email address)
      require(DIR_WS_FUNCTIONS . 'validations.php');
    
    // split-page-results
      require(DIR_WS_CLASSES . 'split_page_results.php');
    
    // Lango added for template BOF:
      require(DIR_WS_INCLUDES . 'template_application_top.php');
    // Lango added for template EOF:
    
    
    // auto activate and expire banners
      require(DIR_WS_FUNCTIONS . 'banner.php');
      tep_activate_banners();
      tep_expire_banners();
    
    // auto expire special products
      require(DIR_WS_FUNCTIONS . 'specials.php');
      tep_expire_specials();
    
    // auto expire featured products
      require(DIR_WS_FUNCTIONS . 'featured.php');
      tep_expire_featured();
    
    // calculate category path
      if (isset($HTTP_GET_VARS['cPath'])) {
        $cPath = $HTTP_GET_VARS['cPath'];
      } elseif (isset($HTTP_GET_VARS['products_id']) && !isset($HTTP_GET_VARS
    
    ['manufacturers_id'])) {
        $cPath = tep_get_product_path($HTTP_GET_VARS['products_id']);
      } else {
        $cPath = '';
      }
    
      if (tep_not_null($cPath)) {
        $cPath_array = tep_parse_category_path($cPath);
        $cPath = implode('_', $cPath_array);
        $current_category_id = $cPath_array[(sizeof($cPath_array)-1)];
      } else {
        $current_category_id = 0;
      }
    
    // include the breadcrumb class and start the breadcrumb trail
      require(DIR_WS_CLASSES . 'breadcrumb.php');
      //================================================================
    if ( ($HTTP_GET_VARS['currency']) ) {
       tep_session_register('kill_sid');
       $kill_sid=false;
      }
    if (basename($_SERVER['HTTP_REFERER']) == 'allprods.php' ) $kill_sid = true;
    if ( ( !tep_session_is_registered('customer_id') ) && ( $cart->count_contents
    
    ()==0 ) && (!tep_session_is_registered('kill_sid') ) ) $kill_sid = true;
    if ((basename($PHP_SELF) == FILENAME_LOGIN) && ($HTTP_GET_VARS['action'] == 
    
    'process') ) $kill_sid = false;
    if (basename($PHP_SELF) == FILENAME_CREATE_ACCOUNT_PROCESS) $kill_sid = false;
    // Uncomment line bellow to disable SID Killer
    // $kill_sid = false;
    //================================================================
      $breadcrumb = new breadcrumb;
    
      $breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER);
      $breadcrumb->add(HEADER_TITLE_CATALOG, tep_href_link(FILENAME_DEFAULT));
    
    // add category names or the manufacturer name to the breadcrumb trail
      if (isset($cPath_array)) {
        for ($i=0, $n=sizeof($cPath_array); $i<$n; $i++) {
          $categories_query = tep_db_query("select categories_name from " . 
    
    TABLE_CATEGORIES_DESCRIPTION . " where categories_id = '" . (int)$cPath_array
    
    [$i] . "' and language_id = '" . (int)$languages_id . "'");
          if (tep_db_num_rows($categories_query) > 0) {
            $categories = tep_db_fetch_array($categories_query);
            $breadcrumb->add($categories['categories_name'], tep_href_link
    
    (FILENAME_DEFAULT, 'cPath=' . implode('_', array_slice($cPath_array, 0, ($i
    
    +1)))));
          } else {
            break;
          }
        }
      } elseif (isset($HTTP_GET_VARS['manufacturers_id'])) {
        $manufacturers_query = tep_db_query("select manufacturers_name from " . 
    
    TABLE_MANUFACTURERS . " where manufacturers_id = '" . (int)$HTTP_GET_VARS
    
    ['manufacturers_id'] . "'");
        if (tep_db_num_rows($manufacturers_query)) {
          $manufacturers = tep_db_fetch_array($manufacturers_query);
          $breadcrumb->add($manufacturers['manufacturers_name'], tep_href_link
    
    (FILENAME_DEFAULT, 'manufacturers_id=' . $HTTP_GET_VARS['manufacturers_id']));
        }
      }
    
    // add the products model to the breadcrumb trail
      if (isset($HTTP_GET_VARS['products_id'])) {
        $model_query = tep_db_query("select products_model from " . TABLE_PRODUCTS 
    
    . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'");
        if (tep_db_num_rows($model_query)) {
          $model = tep_db_fetch_array($model_query);
          $breadcrumb->add($model['products_model'], tep_href_link
    
    (FILENAME_PRODUCT_INFO, 'cPath=' . $cPath . '&products_id=' . $HTTP_GET_VARS
    
    ['products_id']));
        }
      }
    
    // initialize the message stack for output messages
      require(DIR_WS_CLASSES . 'message_stack.php');
      $messageStack = new messageStack;
    
    // set which precautions should be checked
      define('WARN_INSTALL_EXISTENCE', 'true');
      define('WARN_CONFIG_WRITEABLE', 'true');
      define('WARN_SESSION_DIRECTORY_NOT_WRITEABLE', 'true');
      define('WARN_SESSION_AUTO_START', 'true');
      define('WARN_DOWNLOAD_DIRECTORY_NOT_READABLE', 'true');
    // Include OSC-AFFILIATE
      require(DIR_WS_INCLUDES . 'affiliate_application_top.php');
    REQUIRE(DIR_WS_INCLUDES . 'add_ccgvdc_application_top.php');
    
    //include('includes/application_top_support.php');
    include('includes/application_top_newsdesk.php');
    include('includes/application_top_faqdesk.php');
    
    // BOF: WebMakers.com Added: Header Tags Controller v1.0
      require(DIR_WS_FUNCTIONS . 'header_tags.php');
    // Clean out HTML comments from ALT tags etc.
      require(DIR_WS_FUNCTIONS . 'clean_html_comments.php');
    // Also used by: WebMakers.com Added: FREE-CALL FOR PRICE
    // EOF: WebMakers.com Added: Header Tags Controller v1.0
    ?>
    
    
    
    
    
    
    
    0
  8. Yuh12 Messages postés 186 Date d'inscription   Statut Membre Dernière intervention   24
     
    Très joli


    La ligne 29 en commentaire ?
    // before 2.2 is finalized. 
    0
  9. chaima.abdouli Messages postés 121 Statut Membre 2
     
    une autre erreur apparait si je mets la ligne en commentaire :

    Parse error: syntax error, unexpected 'default' (T_DEFAULT) in C:\wamp\www\vintage\www\includes\application_top.php on line 73
    0
  10. Utilisateur anonyme
     
    Merci de répondre en cliquant sur le bouton bleu "répondre au sujet" en bas à gauche à la fin de la page.

    Parce que ta réponse à mon message #11 mise en commentaire de mon message #7, ça n'a tout simplement aucun rapport et ça ne facilite pas la lecture. Je bouton "ajouter un commentaire" ne devrait servir qu'à mettre des commentaires comme son nom l'indique. Pas à mettre des réponses.

    Ceci dit, traduire une application de PHP 4 vers PHP 5 demande de bien connaître cette application et de bien maîtriser PHP.
    Sur le site oscommerce.com, il semble y avoir des versions gratuites et modernes de leur logiciel, pourquoi ne pas les utiliser ?
    0