Jump to content

Nabeel

Administrators
  • Posts

    8151
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. Not the phpVMS database, but FSACARS. You have to delete FSACARS completely (including its folder). It trips up sometimes http://forum.phpvms.net/index.php?topic=795.0
  2. This should be a fixed up version, using the proper API calls <?php class ForumRegister extends CodonModule { public function __construct() { parent::construct(); CodonEvent::addListener('ForumRegister'); } public function EventListener($eventinfo) { if($eventinfo[0] == 'registration_complete') { $userinfo = $eventinfo[2]; $fname = $userinfo['firstname']; $lname = $userinfo['lastname']; $pass = $userinfo['password1']; $email = $userinfo['email']; $code = $userinfo['code']; $uinfo = PilotData::GetPilotByEmail($userinfo['email']); $code = PilotData::GetPilotCode($uinfo->code, $uinfo->pilotid); $pilot_id = $fname.$lname.$code.$pilot_id; $pilot_id_klein = strtolower($pilot_id); $passMD5 = md5($pass); $tm = time(); DB::query("INSERT INTO phpbb_users (username, username_clean, user_password, user_email, group_id, user_timezone, user_dst, user_rank, user_lang, user_colour, user_type, user_actkey, user_dateformat, user_style, user_regdate) VALUES ('".$pilot_id."', '".$pilot_id_klein."', '".$passMD5."', '".$email."', '9','0.0', '0', '2','en','0099FF','1','5BN4938HB2','D M d, Y g:i a', '2', '".$tm."')"); } } } ?>
  3. And I believe an updated version of that was posted
  4. Seems there's something wrong with your username/password for your database
  5. Remove FSACARS, delete it completely, and reinstall FSACARS
  6. Delete your database, and delete the local.config.php file. Create a new local.config.php, which is blank, and recreate the database, then re-install.
  7. Nabeel

    Joine date

    core and admin, then running install/update.php The date should be updating, the code has been there since a previous release
  8. Can you post the errors? It would help for improving this
  9. Seems like may not have installed correctly. Are you able to log in?
  10. Nabeel

    Joine date

    It should be updating actually. Try the latest beta.
  11. I would contact your host about that, saying that emails are not getting sent
  12. Nabeel

    Joine date

    I think I see the problem, will be fixed in next release/beta
  13. Nabeel

    Joine date

    I'll look into it, that's an odd bug.
  14. Nabeel

    Joine date

    did a new pilot register?
  15. Try a complete reinstall of fsacars, delete the directory/all files
  16. Nabeel

    Joine date

    Nope, you can leave the lib/skins folder as-is
  17. Was there an error? Are other PHP apps able to send an email out? I would contact your host, perhaps they can give you the restrictions for mailing, etc. Usually, it's a host issue
  18. Just goto the admin panel. It's http://yoursite/admin
  19. Just follow whatever instructions you find, the only difference would be that foreach() loop. I think there were a few posts around from other people who did it. Did you find a tutorial/guide?
  20. You have to get the key for http://www.mjva.byethost31.com, or for http://byethost31.com
  21. Nabeel

    Joine date

    You have to replace everything, you can leave the database, but you have to replace the admin and core folders. Sorry, no way around it
  22. Courtesy of Ohloh.net: Ohloh phpVMS Code Analysis A summary: 48,000+ lines of code (all written by me, except for the libraries) 11 person years @ 55k/year = project cost of $627,611 if you hired someone to write it 73% of the code is in PHP, the rest a jumble of Javascript, HTML, CSS 700+ code commits Thought it was some cool stats. Of course, it's mute without this community. Thanks everyone! More to come
  23. Nabeel

    Joine date

    Use the latest released version, there are still a few bugs in the beta. This may be something which is broken in beta
  24. Goto the admin directory
  25. Nabeel

    Importing Schedules

    Yup, it's there on that page:
×
×
  • Create New...