Jump to content

Nabeel

Administrators
  • Posts

    8148
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. Nabeel

    java

    The script tags shouldn't be doing that, they're invisible to the html
  2. I believe I removed that restriction
  3. 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
  4. 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
  5. You could convert it into a table, by using replace() and explode()
  6. 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
  7. 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?
  8. Nabeel

    java

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

    footer

    Yup those little CSS niggles drive you nuts. I need to fix the docs page to do that.. lol
  12. 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/
  13. Can you PM me the config file you're using?
  14. 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();
  15. Hm, it may have not completed
  16. 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
  17. In /core/local.config.php, check the SITE_URL, that should be the URL to your phpvms install
  18. Hey, I would also submit a ticket with your host so they're aware. May have been something on their end as well
  19. Did you follow this doc: http://www.phpvms.net/docs/using_fsacars
  20. 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
  21. There's a "Disabled" on the left side, they'll be in there
  22. I'll check it out, thanks. I added a ticket into the bug tracker, you can subscribe to see what's happening with it
  23. They're upcoming, just haven't had time
  24. 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
×
×
  • Create New...