Jump to content

Nabeel

Administrators
  • Posts

    8139
  • Joined

  • Last visited

  • Days Won

    37

Everything posted by Nabeel

  1. Integration with another system - it's always a possibility, but personally I'm not familiar with any other systems enough to do this. I'm busy with adding features, etc fixes as well, so it's alot for me to do, especially in the limited time and resources I have. Sometime in the future, perhaps. As for using string tables, it's very complex. It would involve thousands of strings, along with backend code to parse them. It would be difficult to convert people now over to string tables as well, since there are many templates which have already been modified (I'm afraid to even make small changes since it's a big headache to move over to custom templates). I figured modifying the front-end templates would serve well for doing basic translations of the site. I was planning on doing a dual version, but the person who had volunteered to translate disappeared. For the backend, it's much more complex (the admin panel I mean), it changes (hopefully not too often after this next update), and already making changes at this point are difficult. Including string tables just makes more work for me when needing to change things up. I'm not sure that there is too much english in the admin panel to understand what is happening/what to do. The front-end is where that matters, and the ability to modify the templates I figured will cover that need somewhat. As for being finished, there won't be a point anytime in the near future where I can call it 'finished'. I have alot of plans which are still under wraps... development will go on well into the future, depending on how much time I have.
  2. That might just be a GD error. I'll look into it. Try converting your database to UTF8 as well. PHP5 doesn't have the best international support, but I'm vamping through the code to see problem areas. As for the next update, I'm not sure. My job is picking up, and I'm fixing alot of things up through the system. I haven't started on new features yet. I may have an incremental fix, but I'm not sure about any timeframe yet.
  3. Do you have another aircraft with the same name?
  4. Nabeel

    Pilot Ranks

    Is there an error message? What happens?
  5. I won't use it just yet in the offical, once the text and localization is finalized, then we can step through and do it, but I saw in your screenshot before you did the admin panel. Looks great. However (you're gonna kill me!), in this next build all of the templates have changed for the admin panel (I changed around how it works). After this build, it won't change much, and then we can go from there. For the front-end, if you can zip up those templates and add them into the Addon forum for whoever needs them, that'll be excellent. Thanks!
  6. Yeah, don't worry about that. Some of that update code doesn't "click". As long as the version in the settings matches the latest I have.
  7. Thanks Alex! I was looking into the possibility of different languages, but since there are templates, they can be translated by whoever needs. But if I offer it natively in the future, I'll be sure to let you know.
  8. Hey there, Is there an error message? What happens? Can you also sign your name please Thanks
  9. Thanks for the ideas guys, and welcome aboard! I'm looking into exams - it would be somewhat complicated to integrate into ranks, and not all VAs will use them. But perhaps they can be tied into a separate system for ratings, where a certain rating can only be achieved with a certain rank. However, this won't be coming for a while, I'm still considering it. Welcome messages, emails for ranks, etc, I like those ideas! I will add them to my list when I revise it this week. As for downloads, I'm working on something. A few things are under wraps still I have a few surprises up my sleeve. Statistics, those are also coming. I'm revamping alot of backend code in the admin panel, since it's a bit of a mess. Once those are done, alot of improvements to stats, etc are coming into the picture, along with financial information. I'm prototyping that information. Those are included if you look at a schedule page. Updates will be spaced out more now, since work is picking up and I get less time nowadays to code. But rest assured, I haven't forgotten. Also, if you guys can sign your names, that would be great. I like to know everyone at least by name.
  10. Odd, not seeing that on my test site. In your core/local.config.php, what's your SITE_URL line?
  11. Hahaha.. yes, the good ol' days. I remember when you were king for having a 17" CRT. Needed a team to carry it
  12. Interesting... what page is that on? The image certainly does exist. Did you make any changes to the map templates? (route_map.tpl)?
  13. Total profit? I'm building those functions in, including cost per flight, passengers per flight, cost, you know, basic financials. Those numbers, not yet, I'm gonna be shortening that to the hundreth place
  14. Haha, I usually stick to 970 width, that's well for 1024 maximized.
  15. Nice, faked the POST so it error'd... nice. BTW, your page overflows sideways, so I have to scroll over
  16. In that case, using skins... almost no PHP needed: http://phpvms.net/docs/skinning
  17. I suppose you could, but why? You can skin/customize the entire site to look however you want/modify any templates as well.
  18. under the include 'core/codon.config.php'; Template::Set('extrafields', RegistrationData::GetCustomFields()); Template::Set('allairlines', OperationsData::GetAllAirlines(true)); Template::Set('allhubs', OperationsData::GetAllHubs()); Template::Set('countries', Countries::getAllCountries()); Then Template::Show('registration_mainform.tpl');
  19. Ahh yeah, the dropdowns won't work, because the template variables need to be set. The reason I do that is because I may change stuff on the backend, etc. But if you want to know how to set those, It's 5/6 lines of copy/paste
  20. Haha, yeah, but I'm glad it's taking off now, I really appreciate all the feedback. Wait till I finish these next round of updates
  21. Hey thanks guys! I'm glad people are starting to use it and find it useful. And I like it when people are helpin each other out! Maybe it's the holidays ;D
  22. Yeah someone pointed this out to me last night, another bug. Le-sigh. I'm gonna take a look and see if it's a quick patch, I'll post it up. But since right now the guts are lying open it may take a few.
  23. Yup, the names have to be the same, it checks the local skin folder first to see if it's there, otherwise it'll go to the default. I've seen some people make a custom .php page with stuff, but the problem is, it'll forward back to the one within the system. You can include the registration form like: Template::Show('registration_mainform.tpl') (I think that's what it's called... lol), instead of re-doing the entire form, so <head> <title><?php echo $title ?></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <?php include 'core/codon.config.php'; Template::Show('core_htmlhead.tpl'); ?> </head> <?php Template::Show('core_htmlreq.tpl'); ?> <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> .... <?php Template::Show('registration_mainform.tpl'); ?> ... Maybe that helps? I need my coffee
  24. just do include 'core/codon.config.php';
×
×
  • Create New...