Jump to content

Strider

Members
  • Posts

    1821
  • Joined

  • Last visited

  • Days Won

    53

Everything posted by Strider

  1. Try putting that image in the lib>images folder. Also open_basedir might be blocking it from opening too. Freehosts are not the best for phpvms, not operational ones anyway, fine for testing, but a working site.
  2. That is really idiotic, do they not know you can easily find them out? They need to get a life. You also have to see who has access to your phone number.
  3. Doing some work for my dad, minding the phones at his office.

  4. Thanks for all the birthday wishes yesterday

  5. Tbh no acars program is immune to crapping out. But kACARS is by far the best freeware acars prog out there. What would be better instead of disabling manual pireps altogether would be to say only use it if you have absolutely no other option, such as internet going down for an extended period of time, and they are bored and decide to fly, they can record the details and file the pirep manually then when their internet comes back online
  6. Yay to being 27. If you couldn't tell I was being sarcastic there

  7. You can edit the airline in the admin section, then if needs be, go into the database and change the code where the list of pilots is
  8. People wanted it when they heard what it does, so instead of keeping it to myself I let others have it too
  9. I tested the sql and it works. But it wont work on the site.
  10. A link to your site would be helpful to better diagnose your problem. Also fsacars is no longer supported by phpvms, as that program is no longer in production. And it has been known to be very buggy. And like parkho said, get kacars_free, it is the best free acars program out there.
  11. I am trying to get the statsdata to show a count of how many flights have been completed by my custom kacars program. But it is not working and need help, maybe someone here has the answer. Here is the code I got: /** * Get the number of flights flown with macars */ public static function AcarsCount($airline_code = '') { $key = 'acars_count'; if($airline_code != '') { $key .= '_'.$airline_code; } $acars = "mACARS"; $total = CodonCache::read($key); if($total === false) { $sql = 'SELECT COUNT(*) AS `total` FROM `'.TABLE_PREFIX.'pireps` WHERE `source`='.$acars; if($airline_code != '') { $sql .= " AND `code`='{$airline_code}' GROUP BY `code`"; } $result = DB::get_row($sql); if(!$result) { return 0; } $total = $result->total; CodonCache::write($key, $total, '15minute'); } return $total; } That is from the StatsData.class.php file. If I have done something wrong please point it out to me. <tr> <td><strong>mACARS count:</strong> </td> <td><span class="label label-info"><?php echo StatsData::AcarsCount();?></span></td> </tr> There is the code from the frontpage_main.tpl file. No error is showing, so I have not made any php error that is critical for the site to work.
  12. Strider

    Error

    I get this when I accidentally double click on the accept button, or press it again, if something pucks up.
  13. If kacars is not sending it, then it is kacars problem and needs to go into the forum, the acarsmap I doubt is the problem, it just spits out what it receives from kacars
  14. No you dont need an if else statement, as long as the code is the name of the image, then it will pick that image, and not another one.
  15. you need custom kacars for that as far as I know, as kacars free does not send the relevant data to the server.
  16. I have released version 1.2 of the module. It adds the ability to add the flight to your bids directly from the module. You can download it from my github page. https://github.com/Strider2/codeshare
  17. Guys I have invited a lot of my FS friends to sign a petition it uses a link that may look suspicious but it is not. It is completely safe

  18. We have added to the list of pets we have. we now have a dog, a cat, a tarantula and now a baby rabit

  19. smartcars costs $69.99 while the standard package for custom kacars is $40, you pay for addons to it, so you can spend a lot more. I got mine for $55 originally, I have since added to it, and am changing the design of it now too. I don't have smartcars and never will. Custom kacars has been fully customizable from the get go, where as you have to wait till version 2 of smartcars for that ability. For it to be worth the money they are asking, it should have been fully customizable from the very start.
  20. I would not recommend TDFi as I find that their system interferes with FS and stops the settings in some addons from working. Also Having just the same layout as everyone elses is boring, and what is the point in that if you are paying for an acars system? Only difference I have found is the color, and that is limited to the colors out there. Custom kACARS is fully customizable you can ask for anything to be included and Jeff will do his best to include it, he will let you know if it cant be done. The functions I have seen in current smartcars applications, is limited, it doesn't vary and is the same throughout. Again it is basically a free system being charged for in my opinion, which is very poor.
×
×
  • Create New...