Jump to content

Vangelis

Members
  • Posts

    1076
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Vangelis

  1. Have a look at this http://www.startutorial.com/articles/view/php-curl
  2. What kind of fsuipc installation does he have ? The free or paid if paid did he buy it or is it with a pirate key ? Does this happen with only one specific addon airplane ? If yes did he try another airplane ?
  3. you could if you know how to edit the php code
  4. image is not helping can you provide a link ? as this seems to be a css issue
  5. Why Landing Rate only Multiple x50? What do you mean by that ? do you have a link of a pirep ?
  6. What do you mean ? I am now in the procces of creating version 2
  7. does it reject the pireps that should be rejected ?
  8. Do you have any errors in your logs ?
  9. Just rename the tpl files to php and it will work
  10. You forgot APVacars http://baggelis.com/index.php/apvacarsm/apvacars-custom 60 + - euro price may vary from requested addons Custom Interface - Custom Functions
  11. Does the table exist in mysql ? If yes is there any data in there if yes drop the table and recreate it it might got corupted
  12. what acars are you using ? as it seems to be from there
  13. Website address please ?
  14. Are you on free hosting as kacars and some other acars do not work well
  15. if you are doing it with javascript like above you still will be loading all the records you will need to set a mysql limit look at this example $sql = "SELECT * FROM Orders LIMIT 30"; and then you will need to continue from where you stopped with $sql = "SELECT * FROM Orders LIMIT 10 OFFSET 15"; have a look at this website http://www.w3schools.com/php/php_mysql_select_limit.asp
  16. emm the error says about the function PirepAcData:get_criteria and not PirepAcData ::get_settings change this public function get_criteria() { $query = "SELECT * FROM ".TABLE_PREFIX."autopirep"; return DB::get_results($query); } to public static function get_criteria() { $query = "SELECT * FROM ".TABLE_PREFIX."autopirep"; return DB::get_results($query); }
  17. Is that whete you have phpvms installed ?
  18. What is your website addres ?
  19. first the code for the acars table is different than the pireps table as you can see you have 2 flights 1 is AAL80 and 2 is SIA321 so what do you have to do is split the airline code from the flight number for example for AAL80 will be a) AAL and b)80 and now you can use the code assumed you have it named AAL.png that can be done with the included function SchedulesData::getProperFlightNum(flightnumber) so in your case it will be $ProperFN=SchedulesData::getProperFlightNum($pirep->flightnum); and to show the image <?php echo '<img class="img-responsive" src="'.fileurl('/airlines/'.$ProperFN[code].'.png').'" alt="'.$airline->name.'" />'; ?>
  20. If it is a new setup it seems some files to be corupted try to re upload everything
  21. kick the pilot from your VA just joking Put the pilot to connect with smart acars and then put someone else at the same time to connect and see the diferences in the phpvms_acars table
  22. do you have any idea how you would like it ?
  23. Where does this come up ? that is no error that is php code from a file
  24. Did you converted it into a valid phpvms skin ?
×
×
  • Create New...