You're using multiple functions in your .tpl I think that's where the problem is. The tpl is normally where you show results in a table or div what you have in there should all be inside your module file (yourfile.php in your module folder) then in your tpl in an HTML tag you show what you want by calling the functions. Your case should be calling the functions in your browser's address bar like the following:
http://www.yourairline.com/index.php/yourmodule/yourfunction
Note that "yourfunction" is the one you use to show your results.tpl
@web541,
I wouldn't mind you modifying my module but keep in mind that I have tried several times to achieve this using different methods but the main problem is the pirep submitting section. That function needs to be modified to lock the A/C registration in all schedules before it's accepted and unlock them once the pirep is accepted.
I think this can be done by assigning routes to aircraft instead of aircraft to routes. We need a module to create a list of available aircraft and perhaps their original locations just like the pilot HUB then we assign one or multiple routes to each registration and lock them on bids until the pirep is submitted and pending. Once the pirep is accepted then the module releases the A/C for next pilot. We have to think about stranded pilots as well. My FBS right now is working based on pilot location but in this new way both pilots and aircraft need to have their own locations. I hope I made my point.
Is this corrected when you roll back to what it was? If yes then the new code causes the issue if not look at you DB table and see what data you have there.
That's right and thanks for pointing that out. In fact, I wouldn't suggest modifying any default functions since they are used in different sections. Instead, I would suggest creating a class with a specific function to fetch what's needed.
The reason is that the function you're using to get 10 items is not actually fetching data since it's not set to do so. Open PIREPData.class.php in common folder and look for the following:
public static function getAllReportsForPilot($pilotid) {
return self::findPIREPS(array('p.pilotid' => $pilotid));
}
And change it to:
public static function getAllReportsForPilot($pilotid) {
return self::findPIREPS(array('p.pilotid' => $pilotid), 10);
}
I haven't tested this so I wouldn't know if it's working.
Cheers
You can't change the ACARS client refresh time but you can change the default live map refresh time to 1 minute in local.config.php.
Config::Set('ACARS_LIVE_TIME', 720);
Default number is 720 minutes which you can change to 1 minute if you haven't already done that.
I have updated the SQL file provided although I'm pretty sure that file didn't have any issues but just in case. Please re download SQL file at Github.
That's doable but not in default coding. If you want that you'll have to either pay someone to write the code for you or just wait till it'll come up for free or perhaps, roll up your sleeves and get to code it yourself.
Rank ID is the same as Rank Level in pilot's table but with different names. Also, your pilots should have the same number for both rank id and rank level in pilot's table. These numbers are just the id of the rank in your ranks table. The reason is that in coding sometimes we use rank id and sometimes rank level depending on what we want to achieve. example is that in pilot profile we show rank id and its image but inside a function we fetch pilot's rank level to restrict access to something like bidding on a flight.
Looks like the recaptcha has been bypassed by the script somehow.Security layers would be a good solution but only if you have the knowledge to apply it.
The new 5.5 will give you some issues for sure but it won't be major and you'll have to get rid of them one by one.
The blank email is for the time that you need to write something to them not using the templates.