Jump to content

Nabeel

Administrators
  • Posts

    8147
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. Anything in those debug logs? Several others are using without problems, though I have no personally tested it - there shouldn't be any changed at all to that code. Did it start at a specific revision? If it says sent but don't show up, seems like a DB issue.. so turn DEBUG_MODE to true and let it sit for a while. It should throw something in. Of course, the usual install/checkinstall and checkdb to see if there's anything funky there as well
  2. Can you attach the logo you're trying to upload, I haven't had any problems. Also, try it on dev.vacentral.net, see if it works there
  3. Sounds like a good plan, we could keep the repository on github so people can contribute. I wouldn't mind managing it - I don't really have much time for coding, though I could provide the XML spec and then write the phpVMS add-on piece of it.
  4. It's not a VMS issue, it's a host issue. I've run into it before myself, the path isn't setup correctly if they're using FastCGI.
  5. Yup, I hear ya there. Well, they still offer discounts to VAs, so I guess those pilots who want to can at least get a discount. But you have to contact them about that
  6. Give FS Flight Keeper a shot, it works nearly perfect
  7. I was looking at a schedule page. Can you link me to the acars map?
  8. Mark, strange, I refreshed it a few times in IE8 and it started working, no errors
  9. I'm looking at it, I'm filing a bug report with Google. Though I do see the map, just not the polyline which connects all the points.
  10. In your template, you can change it with this (for example, if the vraiable is $schedule->flighttime): $schedule->flighttime = str_replace('.', ':', $schedule->flighttime);
  11. Alot of the ajax/javascript won't work on localhost. It's a security thing by the browsers
  12. http://www.google.com/#hl=en&source=hp&q=visual+basic+subtract+times&aq=f&aqi=&aql=&oq=&fp=93b6e195ecf679eb There's a datediff function, but see
  13. I would run a counter for the time, since the start/end times could be in different timezones.
  14. Yup, you're on your way Mitchell... that $pirepdata array is this: $data = array( 'pilotid' => $pilotid, 'code' => $code, 'flightnum' => $flightnum, 'depicao' => $_GET['origin'], 'arricao' => $_GET['dest'], 'aircraft' => $ac->id, 'flighttime' => $flighttime, 'landingrate' => $landingrate, 'submitdate' => 'NOW()', 'comment' => $comment, 'fuelused' => $_GET['fuel'], 'source' => 'fsacars', 'load' => $load, 'rawdata' => $log, 'log'=> $_GET['log'] ); The pilotid is the numeric ID. The aircraft is the numeric ID. the Comment is optional
  15. Try out this one: http://jquery.com/demo/thickbox/ The instructions on that are good, you just need to include the thickbox.js file, not the jquery.js file
  16. Yup, you'd have to use the php://input. But it depends how you're sending it. If you're assigning it to a variable and sending it, then it will use the $this->post->variable_name. Glad it's working though. Much easier to parse
  17. Hey, the flight hours are hours.minutes - if you enter hours:minutes, it will accept that too (it's automatically translated into the hours.minutes) These names are hardcoded into the controllers, I haven't really set them to anything, but that's something I can try to fix for 2.1
  18. Yeah, it's "shared", but there are guaranteed resources, and it's on a dedicated server instance. I'm also going to be limiting the number of clients per instance to something reasonable. But I am benchmarking it now and the stats are real good. Of course if it's something crazy you can't be on shared but I'm still working some things out
  19. Gotcha... well something isn't setup properly. I would contact your host.
  20. Can you try print_r($xml) and print_r($this->post) to see what they're outputting? Also, it should be: <?xml version="1.0" encoding='UTF-8'?> <verify> <pilotid>id</pilotid> <password>pw</password> </verify>
  21. cPanel I believe. Still working a few things out with the provider.
  22. Well, I don't have a route finder system, only nav-data. I can link to the rslink route finder though
  23. Thanks, yeah, it looks fine, I probably messed up on the hash generator
×
×
  • Create New...