-
Posts
138 -
Joined
-
Last visited
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by faraz
-
HI I need show aircraft current location in Fleet page in public and in schedule result . please help me! TNX
-
HI I want lock aircraft when pilot added to bid ! for example : I have 4 bids in admin panel and 2 bids are using with same aircraft registration ! I want lock Aircraft and aircraft registration when one pilot flying with this aircraft and in flight schedules doesn't show schedules with this aircraft registration
-
I don't understand . please explain more ! sorry
-
I Create Group with moderate pireps , and Group name is SUP . I added SUP to XXXX pilot , but this pilot doesn't have Admin access for moderate pireps !
-
HI if(Auth::LoggedIn()) { if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<li><a href="'.fileurl('/admin').'">Admin Center</a></li>'; } Please check!
-
HI I add new pilot group and this group name is SUP , and Add 1 pilot to this group . and this group permission is MODERATE_PIREPS , but this pilot doesn't have Admin panel in menu. please help menu
-
log > ACARAS acars.txt
-
HI latest Bid in fronpage just show 1 bid from 4 bids !
-
HI I want Make Type rating in admin menu and location after AWARD in pilot&Group . what is type rating ? type rating exactly working like this code: <?php foreach($allroutes as $route) { if(Auth::LoggedIn()) { if(Auth::$userinfo->rank == 'Commercial Pilot') { // Skip any B772 flights if they're a "Commercial Pilot" rank if($route->aircraft == '') { continue; // This will tell it to skip and move to the next route } } } but I want add or delete type rating like Award. for example : my rank in VA is New Hire and New Hire rank just can fly with 727 and 737 and commercial Rank fly with 747-400 and 777-300 ... . TNX
-
Update : I added this code to schedule_results and fully working Thank you Nabeel If you can add jumpset or Buy Ticket for transfer from current location to another location (airport) with pay money from total money for pilot ! for example: my current location is LOWW and I want transfer to EGLL . I pay 20$ and then go to EGLL TNX
-
HI please Explain more or if possible give me code for pilot roster! TNX
-
HI please see Log in Attach ! Tnx log.txt
-
I have problem with pilot roster ! please see image at below link :
-
I added This code , but doesn't work! please check Code <h3>Schedule Details</h3> <div class="indent"> <?php // under the foreach($allroutes as $route) { if(Auth::LoggedIn()) { $reports = PIREPData::getLastReports(Auth::$userinfo->pilotid, 1, PIREP_ACCEPTED); if(is_array($reports)) { # IF the arrival airport doesn't match the departure airport if($reports[0]->arricao != $route->depicao) { continue; } } } <strong>Flight Number: </strong> <?php echo $schedule->code.$schedule->flightnum ?><br /> <strong>Departure: </strong><?php echo $schedule->depname ?> (<?php echo $schedule->depicao ?>) at <?php echo $schedule->deptime ?><br /> <strong>Arrival: </strong><?php echo $schedule->arrname ?> (<?php echo $schedule->arricao ?>) at <?php echo $schedule->arrtime ?><br /> <?php if($schedule->route!='') { ?> <strong>Route: </strong><?php echo $schedule->route ?><br /> <?php }?> <br /> <strong>Weather Information</strong> <div id="<?php echo $schedule->depicao ?>" class="metar">Getting current METAR information for <?php echo $schedule->depicao ?></div> <div id="<?php echo $schedule->arricao ?>" class="metar">Getting current METAR information for <?php echo $schedule->arricao ?></div> <br /> <strong>Schedule Frequency</strong> <div align="center"> <?php $data = array(); $labels = array(); foreach($scheddata as $month=>$count) { $data[] = $count; $labels[] = $month; } $chart = new ChartGraph('gchart', 'ls', 600, 150); $chart->AddData($data, $labels); echo '<img align="center" src="'.$chart->GenerateGraph().'" />'; ?> </div> TNX
-
HI I have Config::Set('DEBUG_MODE', false); and Config::Set('ACARS_DEBUG',true); And i change ACARS DEBUG to True ! is it ?
-
HI Today i uploaded FSACARS from 818 but distance and touchdown still zero(0) . Tnx
-
HI I know All the data in pilotdata class , but I want show all the data for current month . For Example : Top 3 Pilot By Hours From 10/10/2009 till 11/11/2009 ! Tnx
-
HI I specified a limited time to do flight after bid added. after 24 hours from bid added , automatic cancellation Pilot Bid . I think this idea is good , if any person can do it , please do it ;D Tnx
-
HI I added : <?php MainController::Run('FrontBids', 'RecentFrontPage',5); ?> in Front page For Latest Bid and now just show 1 bid from 4 bid . I have 4 bids in Admin panel but in front page show 1 bid. I want show 5 bid in front page . Version 2.0.818 TNX
-
HI I want Show schedule to pilot by Pilot Current location ! If my pilot Location is LOWW , In flight schedule page just show From LOWW ! How can I change it ? TNX
-
HI I still waiting for ACARS ! Tnx
-
HI still waiting for your comment and your solution Tnx
-
HI Can I get data from Log in Database and then put in database ? for example : I want get Flight Length and Touch down VS from FSACARS Log and then put in Distance and Touch down in database !
-
HI I want show Top 3 pilot by: Mile Flights Profit Time please help me