Jump to content

ARV187

Members
  • Posts

    260
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by ARV187

  1. I think that this setting can be done via your php.ini file. Can you gain access to it?

    I dont have that file in my ftp directory.

    In your local.config.php:

    date_default_timezone_set('Europe/Madrid');

    # Page encoding options
    Config::Set('PAGE_ENCODING', 'UTF-8');
    
    # Page time zone
    date_default_timezone_set('Europe/Madrid');
    
    # Maintenance mode - this disables the site to non-admins
    Config::Set('MAINTENANCE_MODE', false);
    

    Not work to me.

  2. Hi, I dont have option to change server time.

    Support server answer:

    the servers time is now:

    root@sv51 [~]# date

    Sun Mar 30 06:26:35 EDT 2014

    Please check in your script / admin, where you can normally set the time zone that you exist in, and it will then show time/dates relevant to you, rather than the server.

    http://www.timeanddate.com/worldclock

    Please see:

    http://www.php.net/manual/en/function.date.php

    www.php.net/date

    www.php.net/time

    www.php.net/datetime

    Please let us know if there is anything further we can do for you.

    Best Regards

    How i can change the phpvms time? may be in local.config.php?

    My time hour is (UTC+01:00) Bruselas, Copenhague, Madrid, París

    Regards!

  3. Ok, thanks, then I delete this code, not?

    var weatherLayer = new google.maps.weather.WeatherLayer({
     temperatureUnits: google.maps.weather.TemperatureUnit.FAHRENHEIT
    });
    WeatherLayer.setMap(map);
    
    var cloudLayer = new google.maps.weather.CloudLayer();
    cloudLayer.setMap(map);
    

    Anybody know the cause of issue?

  4. same problem with pay hosting, i will try servetas's link. map is showing, but not data, seems how if nobody are flying, but there are flights in course.

    P.S: I don't have "bootstrap.css" file...

  5. Thank you very much!! I needed that to admin pireps page, I wrote the code in pirep_viewreport.tpl, and in pireps_list.tpl to admin staff (accept, reject,...)

    In pireps_list.tpl its:

    <td><strong>Flight Time: </strong> <?php echo $pirep->flighttime_stamp; ?></td>
    <td><strong>Distance: </strong><?php echo $pirep->distance; ?> </td>
    <td><strong>Landing Rate: </strong><?php echo $pirep->landingrate; ?> </td>
    </tr>
    <tr>
    <td><strong>Rank Control: </strong>
    <?php $acinfo=(OperationsData::getAircraftByReg($pirep->registration));
    $acrankname=RanksData::GetRankInfo($acinfo->minrank);
    $pilotInfo= PilotData::getPilotData($pirep->pilotid);
    $pilotrank=$pilotInfo->rank ;
    echo "Min rank for ",$pirep->aircraft," is ",$acrankname->rank," <br /> Pilots Rank is ",$pilotrank ;?></td>
    </tr>
    <tr>
    <td colspan="5"><strong>Route: </strong><?php echo $pirep->route;?>
    

  6. Hi there,

    1- I want modify pireps_list.tpl to show pilot rank & aircraft rank. Its because that i want verify if the pilot used the right aircraft to their pilot rank.

    The pilot rank work, but not the aircraft rank.

    2- By other side i think that i see a id number (corresponding with aircraft rank) i can show this rank in words and not in id number? How???

    <tr>
    <td><strong>Rango de piloto: </strong><?php echo $pirep->pilots. " ($pirep->rank)";?></td>
    <td><strong>Rango de aeronave: </strong><?php echo $aircraft->minrank. " ($aircraft->minrank)";?></td>
    </tr>

    *rango de piloto= pilot rank.

    *rango de aeronave= aircraft rank.

    Click to see image attached:

    post-5667-0-88141400-1394186955_thumb.jpg

  7. Ok, navigraph, but Navdata table is confidential? if i search all routes in routefinder or public civil aviation authorities, not is the same? (with more work obvious).

    Is a eternal cuestion, public info packed by a private enterprise, is ethical? or is ethical take public info from enterprise without pay?, are complicate cuestions.

×
×
  • Create New...