Jump to content

Vangelis

Members
  • Posts

    1076
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Vangelis

  1. Hello for some reason i did not get your mail please resend it to info(a)baggelis.com or feel free to contact me throught skype @ sv5frv1 Thanks
  2. Even the default ? Link of your site please
  3. Are you willing to pay ? If yes you are in the wrong forum location you should open a post in payed services If not you could post here where you need help and maybe somebody will help you
  4. To big file try to split it
  5. What API key ? there is no API key and please read the instructions they are very detailed for the admin panel
  6. No idea what you mean with But do you get an slq error and if yes what is the error description ?
  7. With that code you can Open PIREPS.php in core/modules/PIREPS paste this code in it public function publicroutesmap($pilotID,$limit='') { $this->title = 'Flight Map of'.$pilotID; $pireps = PIREPData::findPIREPS(array('p.pilotid' => $pilotID),$limit); if(!$pireps) { $this->set('message', 'There are no PIREPs for this pilot!!'); $this->render('core_error.tpl'); return; } $this->set('allschedules', $pireps); $this->show('flown_routes_map.tpl'); } now in pilot_public_profile.tpl and in profile_main.tpl paste this where ever you want the map to be shown <?php PIREPS::publicroutesmap($userinfo->pilotid,NumberOfFlightsyouwant)?>
  8. Ignore my latest post it was quite fast to do it Open PIREPS.php in core/modules/PIREPS paste this code in it public function publicroutesmap($pilotID) { $this->title = 'Flight Map of'.$pilotID; $pireps = PIREPData::findPIREPS(array('p.pilotid' => $pilotID)); if(!$pireps) { $this->set('message', 'There are no PIREPs for this pilot!!'); $this->render('core_error.tpl'); return; } $this->set('allschedules', $pireps); $this->show('flown_routes_map.tpl'); } now in pilot_public_profile.tpl and in profile_main.tpl paste this where ever you want the map to be shown <?php PIREPS::publicroutesmap($userinfo->pilotid) ?> And you should have this result like on my test page www.http://www.baggelis.com/phpvms/index.php/profile/view/2
  9. Now i understand thx flynryan692 At the moment there is no easy way you can do it except if you write a function to do it
  10. send it to my email info<a>baggelis.com
  11. The logical operator for not is just ! Try if($pirep_details->landingrate > -80 AND $pirep_details->aircraft ! 5)
  12. To be honest i do not quite understand your request as mine setup shows last flight already on google maps do yo have a link of the page or a screenshot of your browser ?
  13. a link would help and a test account to see how it is setup'd
  14. in core/templates/registration_mainform.tpl around line 31 is this pice of code <dt>Select Airline: *</dt> <dd> <select name="code" id="code"> <?php foreach($allairlines as $airline) { echo '<option value="'.$airline->code.'">'.$airline->code.' - '.$airline->name.'</option>'; } ?> </select> </dd> you can alter it to <dd> <input type="hidden" name="code" value="InsertYour3letterVaCOde" /> </dd> By this the input box will be hidden and the value will be always the same
  15. What is your php version you might need to switch to an older version
  16. Do you want to send me the tpl file so I can run it with dummy data ?
  17. Can you post any more info ? Like a readme or a manual ?
  18. well you can open a ticket as per developer
  19. Does that happen on a saturday or everyday ?
  20. Is this whole your layout.tpl ? it seems a lot of things are missing
  21. Run as admin might work
  22. what exacly do you mean ?
  23. 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
  24. there is also apvacars
  25. try this http://support.hostgator.com/articles/specialized-help/technical/allow_url_fopen-how-to-enable
×
×
  • Create New...