Vbulletin-installation

Farid -  
 mister_x -
Bonjour,
j'ai un gros probleme lors de l'installation d'un forum vb .En fait quand je mets ça (www.monsite.com/vb/install/install.php)dans la barre d'adresse pour installer le forum je tombe sur:

" Parse error: syntax error, unexpected ')' in /home/vol1/xdomaine.com/xhost_2712745/htdocs/vb/includes/functions.php on line 37 "
ça vous dit quelque chose ?? j'ai besoin de votre aide
merci d'avance ^^

ps:hebergement gratuit
Configuration: Windows XP
Internet Explorer 6.0

6 réponses

  1. 2berte Messages postés 217 Statut Membre 143
     
    Peux tu nous faire voire le code de cette page /home/vol1/xdomaine.com/xhost_2712745/htdocs/vb/includes/functions.php.

    En fin tu prends de la ligne 30 à la ligne 45 ...

    En attente de te lire en retour,

    2berte
    0
  2. Farid
     
    merci 2berte;et voila ce qui est écrit dans le fichiers functions.php

    <?php
    /*======================================================================*\
    || #################################################################### ||
    || # vBulletin 3.7.4
    || # ---------------------------------------------------------------- # ||
    || # Copyright ©2000-2008 Jelsoft Enterprises Ltd. All Rights Reserved. ||
    || # This file may not be redistributed in whole or significant part. # ||
    || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
    || # https://www.vbulletin.com/ | https://www.vbulletin.com/en/license-agreement # ||
    || #################################################################### ||
    \*======================================================================*/

    // this defines what adds the indent to forums in the forumjump menu
    define('FORUM_PREPEND', '    ');

    // defines for the datamanagers
    define('ERRTYPE_ARRAY', 0);
    define('ERRTYPE_STANDARD', 1);
    define('ERRTYPE_CP', 2);
    define('ERRTYPE_SILENT', 3);

    define('VF_TYPE', 0);
    define('VF_REQ', 1);
    define('VF_CODE', 2);
    define('VF_METHODNAME', 3);

    define('VF_METHOD', '_-_mEtHoD_-_');

    define('REQ_NO', 0);
    define('REQ_YES', 1);
    define('REQ_AUTO', 2);
    define('REQ_INCR', 3);

    /**
    * @ignore
    */
    define('COOKIE_SALT', $vbulletin->config['Misc']['cookie_security_hash']););

    // #############################################################################
    /**
    * Essentially a wrapper for the ternary operator.
    *
    * @deprecated Deprecated as of 3.5. Use the ternary operator.
    *
    * @param string Expression to be evaluated
    * @param mixed Return this if the expression evaluates to true
    * @param mixed Return this if the expression evaluates to false
    *
    * @return mixed Either the second or third parameter of this function
    */
    function iif($expression, $returntrue, $returnfalse = '')
    {
    return ($expression ? $returntrue : $returnfalse);
    }

    // #############################################################################
    /**
    * Converts shorthand string version of a size to bytes, 8M = 8388608
    *
    * @param string The value from ini_get that needs converted to bytes
    *
    * @return integer Value expanded to bytes
    */
    function ini_size_to_bytes($value)
    {
    $value = trim($value);
    $retval = intval($value);

    switch(strtolower($value[strlen($value) - 1]))
    {
    case 'g':
    $retval *= 1024;
    /* break missing intentionally */
    case 'm':
    $retval *= 1024;
    /* break missing intentionally */
    case 'k':
    $retval *= 1024;
    break;
    }

    return $retval;
    } ligne 83
    0
  3. Vous n’avez pas trouvé la réponse que vous recherchez ?

    Posez votre question
  4. mister_x
     
    1er le chemain d'acces incorrect ou le le fichier vb et ca va pas
    0