Jump to content

Nabeel

Administrators
  • Posts

    8147
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. Can you re-cap it here? I'm a little confused. Also, what version... on beta/release?
  2. It might be settings in the config, I believe you can enable/disable certain images
  3. Pay adjust? That's if you want to give them an extra X amount of cash, it won't get affected by any calculations made
  4. Make sure you followed the instructions for setting up FSFK completely
  5. Nabeel

    Hub Images

    Just need an IF/ELSE statement which outputs images, shouldn't be hard
  6. I'd ask on their forums, I am not sure
  7. Nabeel

    Acars Map

    An old post, but if this issue is still open, please indicate it here: https://github.com/nshahzad/phpVMS/issues/8
  8. Changed Files: m admin/templates/pilots_options.tpl m core/common/StatsData.class.php m install/checkinstall.php fixes #11, only FULL_ADMIN can delete pilots View complete changes Download from here
  9. Thanks, I'll see if I can duplicate it locally. Can you please add a bug in the "bug tracker" section in my signature?
  10. Can you link to it here? I might add it into the code snippets forum
  11. The best way is to use git on your server On the command line, you'd run: git clone https://nshahzad@github.com/nshahzad/phpVMS.git [FOLDER] Where [FOLDER] is . to plce it in the current folder, or 'phpvms' to place it in a phpvms folder: git clone https://nshahzad@github.com/nshahzad/phpVMS.git phpvms It will then create a local repository. Then where there's an update, you go into that folder: git pull http://help.github.com/remotes/ Scroll down to fetching. Or, if you don't want to use git, you can do something like this: wget http://downloads.phpvms.net/phpvms_beta.tar.gz tar -xzvf phpvms_beta.tar.gz cp -R phpvms/** . rm phpvms_beta.tar.gz That's off the top of my head, and I'm not sure if you need the cp, I don't remember if it extracts into a "phpvms" directory, if it does, then the cp copies all the files into the local directory Git is the best option, though
  12. Changed Files: m install/checkdb.php fixed structure.xml path in checkdb View complete changes Download from here
  13. Yep all the fixes get rolled together. What happens is I have a bunch of commits (maybe 4/5, I try to limit 1 changeset per commit), then I push them all up together to github. So the forum picks up all of those. I finally fixed the code to use git's version numbering system, so the "87" here are the number of commits since the last tagged version (I tag on releases), and the string after that is the hash string of that commit Thanks Joeri, just fixed that error.
  14. Right, you also have to make sure the TABLE_PREFIX is correct: $sql = "SELECT * FROM ".TABLE_PREFIX."tablename"; Since some people change table prefixes
  15. Hi Vicar, Can you give exact steps to reproduce? How was the PIREP submitted, along with exact times, and the times for ranks Thanks!
  16. Changed Files: m core/common/StatsData.class.php m core/version m install/hashlist m install/sql/structure.xml StatsData::getTotalForCol() fix View complete changes Download from here
  17. Changed Files: m core/common/StatsData.class.php m core/version m install/hashlist m install/sql/structure.xml m unittest/Tests/StatsTest.php statsdata update to getTotalForCol, deprecated flighttime column for flighttime_stamp View complete changes Download from here
  18. Changed Files: m core/common/StatsData.class.php m core/modules/Finances/Finances.php m core/modules/Schedules/Schedules.php m core/version m install/hashlist m install/sql/structure.xml + unittest/Tests/StatsTest.php m unittest/phpunit.xml Stats update to use new aggregate function, new unit tests View complete changes Download from here
  19. The news gets sent with the VA info. I'm still tweaking how it's done on vaCentral, this was the initial cut As for updates, if there is a database diff, it will calc and do it, it'll put the diffs in the log file
  20. Ok, did some thread cleanup. Cut it out guys, it's not what I want on my forums. Supposed to be a place for anyone to come without any hostilities. I don't wanna have to put a curse-word filter and all that stuff on here, cuz that's not how I roll
  21. Changed Files: m admin/modules/Finance/Finance.php m core/common/CentralData.class.php m core/modules/Finances/Finances.php m core/version m install/hashlist m install/sql/structure.xml finance chart bug fix on client side View complete changes Download from here
  22. Found the problem modules/finances/finances.php Around line 45 there is: // Now expenses if(is_array($finances_data->expenses)) { foreach($finance_data->expenses as $expense) { OFCharts::add_data_set($expense->name, floatval($expense->total)); } } Replace it with if (!is_array($finance_data->expenses)) { $finance_data->expenses = array(); } foreach ($finance_data->expenses as $expense) { OFCharts::add_data_set($expense->name, floatval($expense->total)); } Fixed on beta right now
  23. Can you paste the outputs of: /action.php/finances/viewexpensechart?type=m1301716800&submit=View+Report /admin/action.php/finances/viewexpensechart?type=m1301716800&submit=View+Report Or if you open view-source for that charts pages, and find the "data-file:" parameter of the chart, and go to that URL, can you paste the output of those two here?
×
×
  • Create New...