Jump to content

Vangelis

Members
  • Posts

    1076
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Vangelis

  1. Can you post any more info ? Like a readme or a manual ?
  2. well you can open a ticket as per developer
  3. Does that happen on a saturday or everyday ?
  4. Is this whole your layout.tpl ? it seems a lot of things are missing
  5. Run as admin might work
  6. what exacly do you mean ?
  7. yes it might get affected from the following table if you do not want to share the table you can send me the file via email and i can have a look at it
  8. there is also apvacars
  9. try this http://support.hostgator.com/articles/specialized-help/technical/allow_url_fopen-how-to-enable
  10. Can you try this ? <?php <div class="col-md-12 page-content"> <h2>Live Flights</h2> <div class="stats-table"> <table> <tr> <th>Pilot</th> <th>Flight</th> <th>Departure</th> <th>Arrival</th> <th>Aircraft</th> <th>Status</th> </tr> <?php $results = ACARSData::GetACARSData(); if (count($results) > 0) { foreach($results as $flight) { ?> <tr> <?php $count = 10; $pireps = PIREPData::getRecentReportsByCount($count); ?> <?php if($flight->phasedetail == "Boarding") { echo "<img style='padding-left:3px;' src=''>"; } elseif($flight->phasedetail == "Arrived") { echo "<img style='padding-left:3px;' src=''>"; } elseif($flight->phasedetail == "On Approach") { echo "<img style='padding-left:3px;' src=''>"; } ?> <?php foreach ($pireps as $pirep) { $pilotinfo = PilotData::getPilotData($pirep->pilotid); $pilotid = PilotData::getPilotCode($pilotinfo->code, $pilotinfo->pilotid); } ?> <td><?php echo'<a href="'.SITE_URL.'/index.php/profile/view/'.$flight->pilotid.'">'.$flight->pilotname.' '.$flight->lastname.'</a>';?></td> <td><?php echo $flight->flightnum;?></td> <td><?php echo $flight->depname;?></td> <td><?php echo $flight->arrname;?></td> <td><?php echo $flight->aircraftname;?></td> <td><?php if($flight->phasedetail != 'Paused') { echo $flight->phasedetail; } else { echo "Cruise"; }?></font></td> </tr> <?php } } else { ?> <tr><td width="20%" align="center" colspan="6" style="padding: 5px; font-size: 13px; font-weight: bold; color: #3399FF;">No Flights in Progress!</td></tr> <?php } ?> </table> </div> </div> ?>
  11. As far as i know there is no such function i personal use a switch with post or get depending on the need for this usage
  12. Vacentral has some isuses from time to time try again later
  13. No as they are 2 total different cms
  14. You need to contact your hosting company to enable the allow_url_fopen or if you have a setting that you can change in cpanel
  15. That means that somewhere you forgot to add your webpage address reread the instructions and you will have to correct your airplane type as AT76 is not a correct airplane type as simbrief supports only AT72 airplane
  16. it is <?php echo $pirep->flighttime ;?> For pirep_viewreport.tpl
  17. Vangelis

    JAJ virtual

    You realize that this post is half a year old and I do not understand what you mean by dissolved and it is so urgent to fill all the forum with the same message
  18. This is a kinda sloppy fix but it will do the trick run this code in phpadmin ALTER TABLE `phpvms_pireps` CHANGE `price` `price` FLOAT NOT NULL DEFAULT '100'
  19. just to confirm do you have a price ticket in all your schedules ? if not the you have to put a price
  20. turn debug on and let as see the log please
  21. Vangelis

    For help

    Hello As far as i know smartacars does not provide custom layout there are other solutions out there such as custom apvacars or kacars And for some reason i am not able to see the attachment
  22. Go to your mysql database via phpmyadmin select table phpvms_groupmembers change the lines where pilot id is 1 to 101
  23. What was your old id and what is your new id ?
  24. Not Something didn't upload well reupload and you should be fine
×
×
  • Create New...