Jump to content

Nabeel

Administrators
  • Posts

    8151
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. Yup, copy it to your skin folder so it doesn't get overwritten!
  2. According to site referrals, it seems as though there about 60+ VAs now using phpVMS in one form or another. I would like to build a list, but make it voluntary to add your VA to the mix. This list will be automatically aggregated on another page. Put your entry as: No other comments please, just the name and address
  3. Very nice site!
  4. You can have the one domain that's not on the key just forward to the domain which does have the key. I'll have to look at the code and see if I can spot you on how to have two separate keys
  5. Yeah, wrap is good. The aircraft, that's a bug in the backend.
  6. You'll have to adjust the table CSS to fix that. Same with the search.To have them all showing, mess with the HTML in the schedule_searchform.tpl As for the aircraft flight, that's a known bug and been fixed in the next version.
  7. Ok, find that sscanf() line, around line 499, replace that line and the next one with this: $txtcolor = str_replace('#', '', Config::Get('SIGNATURE_TEXT_COLOR')); $color = sscanf($txtcolor, '%2x%2x%2x'); $textcolor = imagecolorallocate($img, $color[0], $color[1], $color[2]);
  8. Haven't got to it yet, workin' my way down my list, it's the 3rd one down, hopefully by this afternoon, unless my boss decides to do something crazy like give me work.
  9. Yes you define on the schedule what type it is, charter, cargo, pax
  10. Call the function: $activeflights = ACARSData::GetACARSData(); foreach($activeflights as $flight) { print_r($flight); } $flight is an object, call each column as: $flight->columname
  11. What do you mean? They will operate at the max capacity specified
  12. Nabeel

    Skinning

    Don't copy all of the templates, only the ones you change. Did you watch the video tutorial, that may help explain things a bit: http://www.phpvms.net/tutorials/skinningbasicsp1/ Give that a shot.
  13. Excellent!
  14. Nabeel

    Please help

    Hey there my friend, Also check out this video tutorial: http://www.phpvms.net/tutorials/skinningbasicsp1/ Part 2 should be coming sometime soon.
  15. You're running PHP 4.4.9, click the link and check the top header. Check with your host how to switch it to PHP 5.
  16. Hey, Exactly what PHP version? Send me a link to a file with just this: <?php phpinfo(); ?> Put that in it, call it info.php and send that over. Also, reupload, s ometimes when there's a break in the connection (happens often with FTP), random error like this happen.
  17. Hahaha I've added about 5 items to my to-do list, it gets shorter by one, longer by two.
  18. Haha yup, there's an option in the settings for it (rem to check here ) There's no conversions though, makes it easier. if you enter 10, it'll be $ or euro depending on the sign you enter in the setting.
  19. <Copied from Sneak Peak> Another sneak shot of the very basic (atm) financials. You can add expenses for monthly costs. What hasn't been included are your assets - you can assign a cost for each aircraft in your fleet, as your assets, to calculate your net worth. What's going to be included are monthly financials (maybe in this next release, I'm ending new features next week, so if I get it, then I get to it), where it will build a report for every month. There's a bit of a technical challenge there which I haven't gotten to just yet. I'm fitting in all the pieces, as I'm aiming for an end of Jan release. finance.png
  20. Yep, that's a known bug (http://www.phpvms.net/forum/index.php/topic,211.0.html). It's gonna be fixed in next release.
  21. Nabeel

    Sneak Peak

    More stuff in: http://www.phpvms.net/forum/index.php/topic,223.0.html
  22. Hm, you know guys. My math might have been wrong.. LOL. I said 720, /60 would give the hours, but instead I divided by 12, to give 60 hours. I mean to divide by 60. D'oh!! I must not have been thinking... way to confuse myself. So set it to 144, that'll give you a 12 hour timeout (just do the hours by 12 for now). I've fixed that... But if you wanna leave it at 720, check core/common/ACARSData.class.php, line 184ish, change the 12 to 60.
  23. Yup, it's in that settings file, hehe # ACARS options # Minutes, flights to show on the ACARS # Default is 720 minutes (12 hours) Config::Set('ACARS_LIVE_TIME', 720);
  24. Yup, you can change Google Map size as well, its in your core/local.config.php: Config::Set('MAP_WIDTH', '600px'); Config::Set('MAP_HEIGHT', '400px'); Config::Set('MAP_TYPE', 'G_PHYSICAL_MAP'); Config::Set('MAP_LINE_COLOR', '#ff0000'); Config::Set('MAP_CENTER_LAT', '45.484400'); Config::Set('MAP_CENTER_LNG', '-62.334821'); As for languages, once I finalize the admin panel, translations there can occur
  25. Great! There's a few catches while using it - for instance, I haven't found out how to add the registration for aircraft, so that'll be blank, and an admin has to fix it. I'm thinking of work arounds though. And it won't be on the live map
×
×
  • Create New...