Jump to content

James142

Members
  • Posts

    656
  • Joined

  • Last visited

Everything posted by James142

  1. Im not sure if this will work, but you might need a closing tag: <?php } ?>
  2. You should really fix the missing images all over the site..
  3. Hello Everyone. First of all I'd like to thank everyone in the forums for all the support they have given (including for FlyIreland Virtual) Heres a little about us: Fleet Boeing 737-800 Boeing 747-400 Airbus A320-200 Airbus A330-300 Airbus A340-600 Hub's EIDW - Dublin Intl - Ireland YSSY - Sydney - Australia EGCC - Manchester - U.K EGLL - London Heathrow - U.K CYYZ - Toronto Pearson Intl - Canada KJFK - Kennedy Intl - U.S.A waa? Your still reading this? Im also looking for feedback on my site: www.flyaerova.com, Thank you, James - FlyAero Virtual
  4. Dell Inspron 545 prosesser:Intel® Core2 Quad CPU Q8300 @ 2.50GHz 2.50GHz Installed memory (RAM):4.00GB Windows 7 g4-bit Operating System Graphics card: ATI Radeon HD 4350 Does anyone know what I need to upgrade to get more FPS in fsx? thanks
  5. This is what I have: core>modules>Pilots>pilots.php <?php /** * phpVMS - Virtual Airline Administration Software * Copyright (c) 2008 Nabeel Shahzad * For more information, visit www.phpvms.net * Forums: http://www.phpvms.net/forum * Documentation: http://www.phpvms.net/docs * * phpVMS is licenced under the following license: * Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) * View license.txt in the root, or visit http://creativecommons.org/licenses/by-nc-sa/3.0/ * * @author Nabeel Shahzad * @copyright Copyright (c) 2008, Nabeel Shahzad * @link http://www.phpvms.net * @license http://creativecommons.org/licenses/by-nc-sa/3.0/ */ class Pilots extends CodonModule { public function index() { $this->set('allpilots', PilotData::getAllPilots()); $this->render('pilots_list.tpl'); } public function reports($pilotid='') { if($pilotid == '') { $this->set('message', 'No pilot specified!'); $this->render('core_error.tpl'); return; } $this->set('pireps', PIREPData::GetAllReportsForPilot($pilotid)); $this->render('pireps_viewall.tpl'); } /* Stats stuff for charts */ public function statsdaysdata($pilotid) { $data = PIREPData::getIntervalDataByDays(array('p.pilotid'=>$pilotid), 30); $this->create_line_graph('Past 30 days PIREPs', $data); } public function statsmonthsdata($pilotid) { $data = PIREPData::getIntervalDataByMonth(array('p.pilotid'=>$pilotid), 3); $this->create_line_graph('Monthly Flight Stats', $data); } public function statsaircraftdata($pilotid) { $data = StatsData::PilotAircraftFlownCounts($pilotid); if(!$data) $data = array(); include CORE_LIB_PATH.'/php-ofc-library/open-flash-chart.php'; $d = array(); foreach($data as $ac) { OFCharts::add_data_set($ac->aircraft, floatval($ac->hours)); } echo OFCharts::create_pie_graph('Aircraft Flown'); } protected function create_line_graph($title, $data) { if(!$data) { $data = array(); } $bar_values = array(); $bar_titles = array(); foreach($data as $val) { $bar_titles[] = $val->ym; $bar_values[] = floatval($val->total); } OFCharts::add_data_set($bar_titles, $bar_values); echo OFCharts::create_area_graph($title); } public function RecentFrontPage($count = 5) { $this->set('pilots', PilotData::GetLatestPilots($count)); $this->render('frontpage_recentpilots.tpl'); } } That will get rid of the hubs.
  6. Have a look in the docs (http://forum.phpvms.net/page/index.html?category=5) If you have a HTML template, all you need to do is add a small bit of coding and ave it as a .tpl fie
  7. Have you got the kACARS module in your modules folder?
  8. In your core folder, you should see a file at the bottom called local.config Place the vacentral key at the very bottom
  9. In your local.config file
  10. Under the add airports option in the admin center go to add airport (or edit airport) and at the bottom of the box that pops up you will see a box that says Hub..
  11. Have you added the required codes you need ect.. (http://forum.phpvms.net/page/index.html?record=20) Because if you have the coding right, the images should appear..
  12. James142

    New Ranks

    Looks nice
  13. If your pictures are not appearing hat your .css file directory and your images directory are correct?
  14. http://forum.phpvms.net/topic/4088-how-put-images-awards/page__p__27451__hl__%2Baward+%2Bimages__fromsearch__1#entry27451 Try to search for your question next time
  15. Well it is for st. Patrick's day Thanks for the reply, James
  16. You could either edit the airport or go to your MySQL database and delete it there.
  17. I dont have a clue what the code would be, but couldn't you just send them an email via your e-mail address?
  18. Hello everyone! I was looking for some feedback on my new repaint for our first event this week. Design: Finished Product: Feedback is appreciated. Thanks, James
  19. Is there any patience left in this world? Anyway have a look here: http://forum.phpvms....h__1#entry29548? James
  20. Just thinking now, it could be because you are using free hosting..
  21. I'm afraid that I cannot help any futher. You will have to wait for someone else to help you as I have no idea whats wrong. Make sure that you have the right username and pass also. regards, james
  22. Try http://etihadvirtual.totalh.com
×
×
  • Create New...