Jump to content

Junior

Members
  • Posts

    87
  • Joined

  • Last visited

Posts posted by Junior

  1. Hi, I'm trying to install the phpvms 5.5 and got the same error on my local server and host. 

    Error: Access denied for user 'xxxxxxxx'@'localhost' to database 'xxxxxxxxxx

    Yes I already created new databases, yes I already uploaded the installation several times and still got the same error.

    PHP Version 5.6.30 (host) // PHP Version 5.6.35 (local).

    Any advices? Thanks!


     

  2. still a little lost.. atm im using

    <?php

    /**

    * These are some options for the ACARS map, you can change here

    *

    * By default, the zoom level and center are ignored, and the map

    * will try to fit the all the flights in. If you want to manually set

    * the zoom level and center, set "autozoom" to false.

    *

    * You can use these MapTypeId's:

    * http://code.google.com/apis/maps/documentation/v3/reference.html#MapTypeId

    *

    * Change the "TERRAIN" to the "Constant" listed there - they are case-sensitive

    *

    * Also, how to style the acars pilot list table. You can use these style selectors:

    *

    * table.acarsmap { }

    * table.acarsmap thead { }

    * table.acarsmap tbody { }

    * table.acarsmap tbody tr.even { }

    * table.acarsmap tbody tr.odd { }

    */

    ?>

    <script type="text/javascript">

    <?php

    /* These are the settings for the Google map. You can see the

    Google API reference if you want to add more options.

    There's two options I've added:

    autozoom: This will automatically center in on/zoom

    so all your current flights are visible. If false,

    then the zoom and center you specify will be used instead

    refreshTime: Time, in seconds * 1000 to refresh the map.

    The default is 10000 (10 seconds)

    */

    ?>

    var acars_map_defaults = {

    autozoom: true,

    zoom: 4,

    center: new google.maps.LatLng("<?php echo Config::Get('MAP_CENTER_LAT'); ?>", "<?php echo Config::Get('MAP_CENTER_LNG'); ?>"),

    mapTypeId: google.maps.MapTypeId.TERRAIN,

    refreshTime: 10000

    };

    </script>

    <h3>Mapa Em Tempo Real</h3>

    <div class="mapcenter" align="center">

    <div id="acarsmap" style="width:<?php echo Config::Get('700');?>; height: <?php echo Config::Get('MAP_HEIGHT')?>;"></div>

    </div>

    <?php

    /* See below for details and columns you can use in this table */

    ?>

    <table border = "0" width="670" id="tabledlist" class="tablesorter" />

    <thead>

    <tr>

    <th width="174"><b>Piloto</b></th>

    <th width="60"><b>Vôo</b></th>

    <th width="40"><b>Origem</b></th>

    <th width="40"><b>Destino</b></th>

    <th width="100"><b>Situação</b></th>

    <th width="54"><b>Altitude</b></th>

    <th width="43"><b>Velocidade</b></th>

    <th width="125"><b>Dist/Tempo Restante</b></th>

    </tr>

    </thead>

    <tbody id="pilotlist"></tbody>

    </table>

    <script type="text/javascript" src="<?php echo fileurl('/lib/js/acarsmap.js');?>"></script>

    <?php $rowCounter = 1; ?>

    <?php

    /* This is the template which is used in the table above, for each row.

    Be careful modifying it. You can simply add/remove columns, combine

    columns too. Keep each "section" (<%=...%>) intact

    Variables you can use (what they are is pretty obvious)

    Variable: Notes:

    <%=flight.pilotid%>

    <%=flight.firstname%>

    <%=flight.lastname%>

    <%=flight.pilotname%> First and last combined

    <%=flight.flightnum%>

    <%=flight.depapt%> Gives the airport name

    <%=flight.depicao%>

    <%=flight.arrapt%> Gives the airport name

    <%=flight.arricao%>

    <%=flight.phasedetail%>

    <%=flight.heading%>

    <%=flight.alt%>

    <%=flight.gs%>

    <%=flight.disremaining%>

    <%=flight.timeremaning%>

    <%=flight.aircraft%> Gives the registration

    <%=flight.aircraftname%> Gives the full name

    <%=flight.client%> FSACARS/Xacars/FSFK, etc

    <%=flight.trclass%> "even" or "odd"

    You can also use logic in the templating, if you so choose:

    http://ejohn.org/blog/javascript-micro-templating/

    */

    ?>

    <script type="text/html" id="acars_map_row">

    <tr class="<%=flight.trclass%>">

    <td><center><a href="<?php echo url('/profile/view');?>/<%=flight.pilotid%>"><%=flight.pilotname%></a></td>

    <td><center><%=flight.flightnum%></td>

    <td><center><%=flight.depicao%></td>

    <td><center><%=flight.arricao%></td>

    <td><center><%=flight.phasedetail%></td>

    <td><center><%=flight.alt%></td>

    <td><center><%=flight.gs%></td>

    <td><center><%=flight.distremaining%> <?php echo Config::Get('UNITS');?> / <%=flight.timeremaining%></td>

    </tr>

    </script>

    <?php

    /* This is the template for the little map bubble which pops up when you click on a flight

    Same principle as above, keep the <%=...%> tags intact. The same variables are available

    to use here as are available above.

    */

    ?>

    <script type="text/html" id="acars_map_bubble">

    <span style="font-size: 10px; text-align:left; width: 100%" align="left">

    <a href="<?php echo url('/profile/view');?>/<%=flight.pilotid%>"><%=flight.pilotid%> - <%=flight.pilotname%></a><br />

    <strong>Flight <%=flight.flightnum%></strong> (<%=flight.depicao%> to <%=flight.arricao%>)<br />

    <strong>Status: </strong><%=flight.phasedetail%><br />

    <strong>Dist/Time Remain: </strong><%=flight.distremaining%> <?php echo Config::Get('UNITS');?> / <%=flight.timeremaining%><br />

    </span>

    </script>

    <?php

    /* This is a small template for information about a navpoint popup

    Variables available:

    <%=nav.title%>

    <%=nav.name%>

    <%=nav.freq%>

    <%=nav.lat%>

    <%=nav.lng%>

    <%=nav.type%> 2=NDB 3=VOR 4=DME 5=FIX 6=TRACK

    */

    ?>

    <script type="text/html" id="navpoint_bubble">

    <span style="font-size: 10px; text-align:left; width: 100%" align="left">

    <strong>Name: </strong><%=nav.title%> (<%=nav.name%>)<br />

    <strong>Type: </strong>

    <?php /* Show the type of point */ ?>

    <% if(nav.type == 2) { %> NDB <% } %>

    <% if(nav.type == 3) { %> VOR <% } %>

    <% if(nav.type == 4) { %> DME <% } %>

    <% if(nav.type == 5) { %> FIX <% } %>

    <% if(nav.type == 6) { %> TRACK <% } %>

    <br />

    <?php /* Only show frequency if it's not a 0*/ ?>

    <% if(nav.freq != 0) { %>

    <strong>Frequency: </strong><%=nav.freq%>

    <% } %>

    </span>

    </script>

  3. Found the table but idk where to change the fontsize.. I changed font-size:1.1em; but didnt worked

    .ocean_table th {

    color:#fff;

    background:#0075DB;

    border:1px solid #0075DB;

    }

    .ocean_table tr > th:last-of-type {border-right:1px solid #0075DB;}

    .ocean_table {

    margin-bottom:20px;

    border-bottom:1px solid #d9d9d9;

    }

    .ocean_table thead {

    box-shadow:0 1px 5px #DCDCDC;

    -moz-box-shadow:0 1px 5px #DCDCDC;

    -webkit-box-shadow:0 1px 5px #DCDCDC;

    }

    .ocean_table {

    *border-right:1px solid #d9d9d9; /* ---- CSS Hack for IE7 ---- */

    border-right:1px solid #d9d9d9\0/; /* ---- CSS Hack for IE8 ---- */

    }

    .ocean_table th,

    .ocean_table td {

    font-size:1.1em;

    text-align:left;

    padding:5px 9px;

    }

    .ocean_table th.txtleft,

    .ocean_table td.txtleft{text-align:left;}

    .ocean_table th.txtright,

    .ocean_table td.txtright{text-align:right;}

    .ocean_table th.txtcenter,

    .ocean_table th.txtcenter{text-align:center;}

    .ocean_table tr:nth-child(even){background:#D4E1ED;}

    .ocean_table tr.odd td{

    *background:#D4E1ED; /* ---- CSS Hack for IE7 ---- */

    background:#D4E1ED\0/; /* ---- CSS Hack for IE8 ---- */

    }

    .ocean_table tr:nth-child(-n+1) td{border-top:1px solid #D6D6D7;}

    .ocean_table tr td {

    *border-top:1px solid #D6D6D7; /* ---- CSS Hack for IE7 ---- */

    border-top:1px solid #D6D6D7\0/; /* ---- CSS Hack for IE8 ---- */

    }

    .ocean_table th {

    font-weight:normal;

    border-right:none;

    }

    .ocean_table td {

    border-left:1px solid #D6D6D7;

    color:#232323;

    }

    .ocean_table tr > td:last-of-type {border-right:1px solid #D6D6D7;}

  4. Hi mates.. how do I change the font size in my "Latest flights" table?

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

    <tr>

    <th>Flight</th>

    <th>Pilot</th>

    <th>Departure</th>

    <th>Arrival</th>

    <th>Aircraft</th>

    <th>Duration</th>

    <th>V/S</th>

    <th>Info</th>

    </tr>

    <?php

    if(count($pireps) > 0)

    {

    foreach ($pireps as $pirep)

    {

    $pilotinfo = PilotData::getPilotData($pirep->pilotid);

    $pilotid = PilotData::getPilotCode($pilotinfo->code, $pilotinfo->pilotid);

    $acrid = OperationsData::getAircraftByReg($pirep->registration);

    echo '<tr>';

    echo '<td><a href="'.SITE_URL.'/index.php/pireps/viewreport/'.$pirep->pirepid.'">'.$pirep->code.$pirep->flightnum.'</a></td>';

    echo '<td><a href="'.SITE_URL.'/index.php/profile/view/'.$pilotinfo->pilotid.'">'.$pilotinfo->firstname.' '.$pilotinfo->lastname.'</a></td>';

    echo '<td>'.$pirep->depicao.'</td>';

    echo '<td>'.$pirep->arricao.'</td>';

    echo '<td>'.$pirep->aircraft.'</td>';

    echo '<td>'.$pirep->flighttime.'</td>';

    echo '<td>'.$pirep->landingrate.' ft/m</td>';

    if($pirep->accepted == PIREP_ACCEPTED)

    echo '<td><span class="label label-important"><font color="green">Accepted</font></span></td>';

    elseif($pirep->accepted == PIREP_REJECTED)

    echo '<td><span class="label label-important"><font color="red">Rejected</font></span></td>';

    elseif($pirep->accepted == PIREP_PENDING)

    echo '<td><span class="label label-warning"><font color="orange">Pending</font></span></td>';

    elseif($pirep->accepted == PIREP_INPROGRESS)

    echo '<td>On Progress</td>';

    echo '</tr>';

    }

    }

    else

    {

    echo '<tr><td>There are no recent flights!</td></tr>';

    }

    ?>

    </tbody>

    </table>

  5. Hi. Sorry for my bad english!

    I want a module like a realschedule, the pilots must fly from their last destination and they can only jumpseat after X flights. I also want lock the airplanes in the last position aswell, so if a pilot want to take a 722 he must fly to where the airplane is atm. I also have some other ideas for the future, if we make a deal and your work is good we can keep making deals.

    PS:

    I can only send payments through paypal;

    Im using kACARS free for now, I already sent the e-mail to jeffrey abou the purchase;

    e-mail jarijunior@hotmail.com / patreon@voovirtual.net - thanks

×
×
  • Create New...