Jump to content

Txmmy83

Members
  • Posts

    493
  • Joined

  • Last visited

Everything posted by Txmmy83

  1. don't know if my following question is possible to be realized! is it possible to make the listing to show the ICAO or Aircraft Type allowed for specific Rank? best regards Thomas
  2. Txmmy83

    vAwards

    How can I make it Show all possible Awards under Menue think it requires a function?
  3. Txmmy83

    vAwards

    rather strange error Warning: call_user_func_array() expects parameter 1 to be a valid callback, class 'vAwards' does not have a method 'index' in /home/flyeurop/public_html/core/classes/MainController.class.php on line 218 vAward.php in modules look like this: <?php /** Module Created By Vansers This module is only use for phpVMS (www.phpvms.net) - (A Virtual Airline Admin Software) @Created By Vansers @Copyrighted @ 2011 @Under CC 3.0 @http://creativecommons.org/licenses/by-nc-sa/3.0/ **/ // Version 1.0 (May.32.12) - Module Created class vAwards extends CodonModule { public function showPilotIssuedAwards($pilotid) { $this->set('pilotid', $pilotid); $this->set('allawardtpes', vAwardsData::GetAllAwardTypes()); $this->render('vAwards/profile_issued_awards.tpl'); } } using Version 2.1.v2.1.935 the (latest stable) I know I had Running sucessfully with one of the Beta versions of phpvms
  4. the default images are in the folder lib/images/inair hope that helps
  5. So I decided to Start with a clean install rather than Messing around with files
  6. Is it possible to downgrade from one of the beta releases to release version or is it better to make a full restart delete and reinstall best regards, Thomas
  7. yep was a bit customized flight completion percentage
  8. it is a great skin only have a small problem with live map if anybody know how to fix? please help best regards, Thomas
  9. yeah sounds good but I think this is more Interesting for small Airlines which simulates (Private Pilot or Executive/VIP) Flight Operations with smaller aircrafts
  10. how can I change the ops-scheduleform and ops-scheduleeditform to only show the aircraft that are enabled in backend please include the ability to set the Fare Price manually in the next update how is calculated at the moment? otherwise its perfect
  11. that one will work http://voegolv.net/GOL2012.rar
  12. I get an CRC error with Image3.jpg when extracting with winrar
  13. fernando that is clear to me but if you extract the rar directly which is called GLO2012.rar if you look above you will then get a folder called GLO2012 and then it comes to the mismatch that is what I want to say before ok see you fixed that problem
  14. ok <title>Gol Virtual - Aqui nós damos-lhe asas para você voar!</title> <link rel="stylesheet" type="text/css" href="<?php echo SITE_URL; ?>/lib/skins/GOL2012/style.css" media="screen" /> <script type="text/javascript" src="<?php echo SITE_URL; ?>/lib/skins/GOL2012/js/jquery.core.js"></script> <script type="text/javascript" src="<?php echo SITE_URL; ?>/lib/skins/GOL2012/js/jquery.superfish.js"></script> <script type="text/javascript" src="<?php echo SITE_URL; ?>/lib/skins/GOL2012/js/jquery.jcarousel.pack.js"></script> <script type="text/javascript" src="<?php echo SITE_URL; ?>/lib/skins/GOL2012/js/jquery.easing.js"></script> <script type="text/javascript" src="<?php echo SITE_URL; ?>/lib/skins/GOL2012/js/jquery.scripts.js"></script> <style type="text/css"> should be an easy search and replace command in dreamweaver GOL2012 to GLO2012 right?
  15. I had the same error when testing the template after download solution is simple if you look at your server if you have just extract like me it extracts in a folder called GLO2012 where the template referenced GOL2012 just rename to that and you will see the images hope that helps!
  16. parking very near a refuelling area which can lead to get refilled by accident! you will probably get the same trouble different cause best regards, Thomas
  17. tweak to get only fleet aircrafts that are enabled and ordered by tail registration class vFleetTrackData extends CodonData { public static function getAllAircraft() { return DB::get_results("SELECT * FROM ".TABLE_PREFIX."aircraft WHERE enabled=1 ORDER BY registration"); }
  18. found out another thing it now differences between Cargo and Passengers ok but writes out Cargo Carried to the Passenger and Passenger Carried to the Cargo Loads seems easy to fix <?php if(count(vFleetTrackData::CargoAircraft($aircraft->id)) > 0) { ?> <strong>Total Passengers Carried: </strong><?php echo vFleetTrackData::countPassengers($aircraft->id);?> <br /> <?php } else { ?> <strong>Total Cargo Carried: </strong><?php echo vFleetTrackData::countPassengers($aircraft->id);?> <br /> <?php } ?> think it is only replacing the text between the strong tag
  19. Just Tested the 15 latest flights on the old Version and you are right on this issue
  20. kyle, I have that query on my front page <tt>Total Cargo Carried: </tt><?php $query="SELECT SUM(`load`) as totalfreight FROM `phpvms_pireps` WHERE `flighttype`='C'"; $result=DB::get_results($query); echo $result[0]->totalfreight; ?> <?php echo Kgs; ?> maybe we can modify that to show only Cargo of a specific Plane? can confirm Manuels problem as i have the same with the flight count best regards, Thomas
  21. Also I Would find it usefull to be ordered by Aircraft registration if possible One Thing that caught my attention is that the Mod Makes no difference between PAX/Cargo Show it As Passengers carried
  22. The % damage do Not change because this Feature is Not implemented yet
  23. can it be set to show only actually enabled fleet aircrafts?
  24. Will Write you soon about imprint idea As my Template creation Progresses quite well Need your opinion Especially on Header ! Link to my VA Site is in my signature
×
×
  • Create New...