Search found 100 matches

by thekabal
Sun Jun 15, 2014 01:36 UTC
Forum: Troubleshooting
Topic: user roles?
Replies: 4
Views: 11592

Re: user roles?

coolmates wrote:forgive me for being dense.. but how/where do i set user roles?
What do you mean by user roles?
by thekabal
Sat Jun 14, 2014 17:02 UTC
Forum: BNT help and discussion
Topic: CronJob
Replies: 7
Views: 12789

Re: CronJob

coolmates wrote:thanks everyone for your kindness. the grabber worked like a charm, and as a result, so is the cronjob.
To help us improve, can you share what the working solution was for your server?

Thanks!
by thekabal
Fri Jun 13, 2014 01:49 UTC
Forum: BNT help and discussion
Topic: CronJob
Replies: 7
Views: 12789

Re: CronJob

To help further, I've created a script that can help determine which tool you should use from cronjobs. https://gist.github.com/anonymous/09c72cf93fe162d50f40 Sample result.. You can use any of the following in your crontab: /usr/bin/curl /usr/local/bin/wget Then you can put that into your cron, and...
by thekabal
Fri Jun 13, 2014 00:55 UTC
Forum: BNT help and discussion
Topic: CronJob
Replies: 7
Views: 12789

Re: CronJob

i am getting a cannot open input file and no such file or directory errors in cron, yet the file works fine when accessed in a browser. tried server path and direct url in cron but without success. Two error messages: Cannot open input file (Which input file?), and no such file or directory (Which ...
by thekabal
Sun May 25, 2014 21:56 UTC
Forum: Development
Topic: Namespacing complete for classes
Replies: 0
Views: 10112

Namespacing complete for classes

I am thrilled to announce that I've completed namespacing the classes directory in the SVN tree. This change completed in revision 3461 . Now, instead of having a composer classmap for the classes/ directory and a includes/ directory, we now have just classes/ autoloaded using PSR-4. In addition, go...
by thekabal
Sun May 25, 2014 16:52 UTC
Forum: BNT help and discussion
Topic: CronJob
Replies: 7
Views: 12789

Re: CronJob

I am having trouble getting my game to respond to the cronjob that calls the scheduler to update. Anyone have any insights into this? Yup! This is the most common issue admins face when trying to get BNT setup. Two pieces of advice usually help the most. First, try accessing the scheduler in your b...
by thekabal
Mon May 12, 2014 04:52 UTC
Forum: Development
Topic: Dramatic changes
Replies: 1
Views: 8747

Dramatic changes

Check out todays change log entries.. I've been busy! Change "HandleFuelScoop" to BntMove::calcFuelScooped, in classes directory Move database configuration include from global includes to inside the database class & init method itself. And then there were three (global_includes left)....
by thekabal
Mon May 05, 2014 03:38 UTC
Forum: Development
Topic: Configs now have values
Replies: 1
Views: 7902

Re: Configs now have values

And just committed the matching set that imports the values and types from the database. I redid the config a little bit, I think I've caught all the booleans, but wouldn't mind someone else taking a look. So far I have not gone through the game to redo the checks for each of them, although that is ...
by thekabal
Mon May 05, 2014 02:54 UTC
Forum: Development
Topic: Configs now have values
Replies: 1
Views: 7902

Configs now have values

I've just committed the changes to switch from using parse_ini_file to a new method of BntFile, called betterParseIni. It is essentially the same code that TheMightyDude came up with long, long ago, but wrapped into a class, and with a minor change to handle a lack of comments (ha!) in our language ...
by thekabal
Sun May 04, 2014 03:15 UTC
Forum: Development
Topic: Switched to password_hash
Replies: 0
Views: 10303

Switched to password_hash

I've committed the changes to switch the underlying password hashing process from phppass to the native php function password_hash, on PHP 5.5+. On versions below 5.5, but above or equal to 5.3.7, it will use the vendor/ircmaxell/password-compat library, which is the userspace equivalent of the same...