Jump to content

mattia

Members
  • Posts

    267
  • Joined

  • Last visited

Posts posted by mattia

  1. same proble for me:

    FAILED exporting PIREP #36558 - No response from API server
    FAILED exporting PIREP #36557 - No response from API server
    FAILED exporting PIREP #36556 - No response from API server
    FAILED exporting PIREP #36555 - No response from API server
    FAILED exporting PIREP #36554 - No response from API server
    FAILED exporting PIREP #36553 - No response from API server
    FAILED exporting PIREP #36552 - No response from API server
    FAILED exporting PIREP #36551 - No response from API server
    FAILED exporting PIREP #36550 - No response from API server
    FAILED exporting PIREP #36549 - No response from API server
    FAILED exporting PIREP #36548 - No response from API server
    FAILED exporting PIREP #36547 - No response from API server
    FAILED exporting PIREP #36546 - No response from API server
    FAILED exporting PIREP #36545 - No response from API server
    FAILED exporting PIREP #36544 - No response from API server
    FAILED exporting PIREP #36543 - No response from API server
    FAILED exporting PIREP #36542 - No response from API server
    FAILED exporting PIREP #36541 - No response from API server
    FAILED exporting PIREP #36540 - No response from API server
    FAILED exporting PIREP #36539 - No response from API server
    FAILED exporting PIREP #36538 - No response from API server
    FAILED exporting PIREP #36537 - No response from API server
    FAILED exporting PIREP #36536 - No response from API server

    ..........

  2. hi, how to get this file?:

    require_once dirname(__FILE__)."/phpfreechat-1.5/src/phpfreechat.class.php"; //this is the location of your chat directory

    i have this error:

    Warning: require_once(/var/www/virtual/italianivolanti.it/htdocs/iv/core/templates/phpfreechat-1.5/src/phpfreechat.class.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/virtual/italianivolanti.it/htdocs/iv/core/templates/profile_main.tpl on line 421

    Fatal error: require_once() [function.require]: Failed opening required '/var/www/virtual/italianivolanti.it/htdocs/iv/core/templates/phpfreechat-1.5/src/phpfreechat.class.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/virtual/italianivolanti.it/htdocs/iv/core/templates/profile_main.tpl on line 421

  3. nono sorry this is old problem in my internal sql problem, now i have this problem

    hi have a problem, i have send my first hub request transfer, i have accept my transfer request and re-send another transfer request but received this error:

    You already have a hub transfere request submitted for your ID. We will notify you when the staff team reviews your request.

  4. Hi all

    i write this code for the SUM of a aircraft flight hours,for single pilot, from two mysql tables

    <?php
    $query = 'SELECT SUM(flighttime)FROM
    (
    SELECT flighttime AS flighttime FROM '.TABLE_PREFIX.'pireps
    WHERE aircraft = 26
    AND accepted = 1
    AND pilotid = '.Auth::$userinfo->pilotid.'
    UNION ALL
    SELECT flighttime FROM '.TABLE_PREFIX.'pireps_OLD
    WHERE aircraft = 26
    AND accepted = 1
    AND pilotid = '.Auth::$userinfo->pilotid.'
    ) AS total';
    $result=DB::get_row($query);
    {
    }
    ?>
    <?php echo Util::FormatDuration($result->total); ?>
    

    but dont work in the profile_stats.tpl

    can someone help me

    thanks

×
×
  • Create New...