Jump to content

Nabeel

Administrators
  • Posts

    8147
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. I believe I removed that restriction
  2. That would be a pain, maybe reactivate automatically? This too. I know when I fly for AAS, I have about 45 flights in my bid list. That would annoy pilots pretty quick
  3. Nabeel

    java

    Oh that, that's for the redirects. I thought you meant for the actual login. Well you can change it to a: <a href="<?php echo $redir;?>">Click here to continue</a> There's that "holding page", for the downloads to count the download, and the login to complete
  4. You could convert it into a table, by using replace() and explode()
  5. Yes, that part is easy, but overall, it's not easy, because of all the small parts But the behavior for the other cases: - How does the flight show up, if it shows up? - Or are bids only blocked? - Does it show on the schedule?, how? - If it does, is there a blocked indicator? - If that schedule is PIREPd by another pilot who didn't bid it, what happens? Automatically rejected? blocked? or nothing happens? That's all I can think of for now. There's a full plan for every little feature
  6. Well, for registrations, there could be spam. PIREPs if there are invalid. The system's been kinda designed around approvals. Maybe make someone else an admin also to share the responsibilities?
  7. Nabeel

    java

    There's no java being used, or javascript for that
  8. Change it in the page template in the core/templates directory, not in the module controller
  9. No problem, you just need to upload the index.php and all the folders to your web root
  10. Nabeel

    footer

    Yup those little CSS niggles drive you nuts. I need to fix the docs page to do that.. lol
  11. Wow, looks great! What I do for padding is use a CSS reset. That way I can manually specify padding and margins, and don't have to compensate for different browsers. http://developer.yahoo.com/yui/reset/
  12. Can you PM me the config file you're using?
  13. It will, however all the emails will be shown. I haven't started it yet, but I'll be using the PHPMailer class (the util::sendmail()) is just an alias to it You can do: <?php $mail = new PHPMailer(); $mail->From = ($fromemail == '') ? ADMIN_EMAIL : $fromemail; $mail->FromName = ($fromname == '') ? SITE_NAME : $fromname; $mail->Mailer = 'mail'; $mail->AddAddress($email); $mail->Subject = $subject; $mail->Body = $message; $mail->AltBody = strip_tags($message); $mail->Send();
  14. Hm, it may have not completed
  15. Hey FSPax doesn't report the aircraft, so the admin needs to change it to the right aircraft. The next update has been fixed to set the default aircraft for that schedule
  16. In /core/local.config.php, check the SITE_URL, that should be the URL to your phpvms install
  17. Hey, I would also submit a ticket with your host so they're aware. May have been something on their end as well
  18. Did you follow this doc: http://www.phpvms.net/docs/using_fsacars
  19. I could do it as an option.. So it's if someone had bid on a flight, that flight is unavailable to other pilots? So would it hide that flight? Or just not allow the pirep? Or not allow anyone else to bid it but allow a pirep if someone submits it? There's alot of little nigglies in there
  20. There's a "Disabled" on the left side, they'll be in there
  21. I'll check it out, thanks. I added a ticket into the bug tracker, you can subscribe to see what's happening with it
  22. They're upcoming, just haven't had time
  23. Because it takes alot of time and effort to integrate it, so if it's not in demand then I won't bother with it
  24. Nabeel

    Search Form

    Well, the ajax doesn't matter much. If you look at the form itself, you just need to post to the form action and itll still work with those form fields
×
×
  • Create New...