Jump to content

Nabeel

Administrators
  • Posts

    8141
  • Joined

  • Last visited

  • Days Won

    38

Everything posted by Nabeel

  1. No prob! Lemme know if you need any other help/if that worked. Kinda just banged it out, didn't really test it
  2. Hey no prob, First you have to create a module: So, create a folder in /core/modules called "ForumRegister" Then create a file: ForumRegister.php Inside that, paste: <?php class ForumRegister extends CodonModule { public function __construct() { CodonEvent::addListener('ForumRegister'); } public function EventListener($eventinfo) { if($eventinfo[0] == 'registration_complete') { // Place your forum registration code here // You'll need their user information, so $userinfo = $eventinfo[2]; $userinfo->firstname; $userinfo->lastname; //etc // do : print_r($userinfo); // to show all the options } } } ?> This creates the module and sets up the event listener, and then when the registration_complete event is fired, that bit of code will run. Now, I think you're running the latest beta build, which fixes a bug where that user info wasn't passed. I hope that helps!
  3. Nabeel

    Forums

    Well, they are separate programs, so you'll have to just skin them. There's no integration or anything though.
  4. Yep someone has, but that would be huge, with some major changes. Maybe some day down the line, but not before some other plans I have...
  5. I don't know what you mean. In most cases, you don't have to modify them, maybe just to add a div or adjust the HTML or something.
  6. I would recommend watching the skinning tutorial videos, Roger explains really well the basics.
  7. Speed IIRC. It's not really used now anyway
  8. Yep it's in there already for the next release
  9. Hey Max, Check this out, from the FAQ forum http://www.phpvms.net/forum/index.php/topic,177.0.html Hopefully that'll help!
  10. Nabeel

    Forums

    Thanks for the kind words! phpBB is good, but too "heavy" IMO. I used to use phpBB here, until I switched to Simple Machines. Either way, you can't go wrong
  11. Nabeel

    FSACARS

    Hey, Check this page out as well: http://phpvms.net/docs/using_fsacars Touy: Can you message me, I'd like to post that tutorial on the site as well (not hosted on YT)
  12. Yep, it'll translate it to 1.5, to account for pilot pay. Then when adding it to the pilot hours, it'll keep it in a hour.minute format you see. There was a bug where it would go beyond 60 minutes. That'll be fixed.
  13. Well, this might be a good way to start learning There are default skins, you can mess around with those to learn CSS and some HTML. Unfortunately, it can't be done without knowing something, and requesting someone to make you a complete skin is a little too much. But, everyone has to start somewhere. If you need help, you can always post back here! You're more than welcome. Good luck
  14. Hey there, There's also http://www.phpvms.net/docs/skinning
  15. Nabeel

    Sigs

    Ouch. That's weird. If you delete all the images and reset the last text color, is it ok?, Wait, the white blotch is part of the signature background. Sorry. I understand it now. Yes, that's a known bug, been fixed in the next one. The other fix is in a topic somewhere around here, either in the FAQ or another thread
  16. Hey Will, On that page, it's shown in "fraction" of hours, if that makes sense. I fixed the bug in the backend, where it translates the minutes into hour fractions (for pay purposes), then records it that way. That display there now is shown in fractions of an hour, now really hours:minutes. As for select airline, you can remove the "select airline" option in the template, and it'll default to the first airline listed.
  17. Just read their forum, w5 will be temporary. So you'll have to make those changes again. I've just changed in the latest build, to include that in the configuration, in case that changes again. As for the admin, can you show some screenshots? Well, if you can wait a week or two, there will be a new admin panel with those problems fixed.
  18. I'd change the <input .. name="redir"> in the template, in stead of in the code
  19. Interesting. Can you try reuploading the files, just to rule out corruption while uploading?
  20. Hey there John, Welcome to the site, thanks for checkin out the program. Are you using the beta or the latest released version? And when you double click the 'Error on page', what's the error that you get?
  21. Nope, then you won't have to do anything then
  22. This is the changelog for the next update. I've decided to post it now since it's basically "feature complete", except for a few minor things. It'll be in "testing mode" for the next couple weeks or so, I'm aiming to release at the end of January, if there are no major "blockers". I don't think I missed anything but it'll be revised when it's released. Enjoy! - Changelog updated changelog.htm
  23. Nabeel

    Question

    Nope, did you include the proper templates? http://www.phpvms.net/docs/skinning#skin_elements
  24. It's just going to ignore the leg # (like it kinda does now when filing the PIREP) I'd change those flight numbers now (if they're the same)
  25. Cool, just make a new module with that event, and you should be good to go!
×
×
  • Create New...