Not directly. What I do not want to see is someone selling a service to install phpvms for $1.00 but the cost being $2.00 if you install one of the modules I have written (some with help of others). There is to be no profit made from the use of the modules in any way. My intentions were to share with the community that has shared with me when I wrote these. If your cost to do an install is $xx.xx then it needs to be $xx.xx if you are including modules written by me.
end soapbox speech
Nabeel,
Thank You for the great app you have dedicated so much time to here, not to mention the great support, 5000 posts, I think it's time for a cold one!
Hi,
I have removed all the simpilot modules for the moment. I will be reposting them with an included license to protect them from being sold by other individuals. Hopefully they should be back up over the weekend.
If you can wait I will be releasing a lite version of my dispatch center in coming weeks. You can see the frontend of it on my site at www.newenglandvirtual.com
Is it in IE only?
There seems to be quite a few threads about this on both the cake and codeignitor forums. If the error is only in some browsers most seem to point to an issue with trailing commas.
http://forums.pentaho.org/showthread.php?t=70036&page=2 - Post #14 starts the solution here
I noticed it on my site last evening as well. I will look at it this evening when I get in. Odd it displays the same month but links to the correct month....
? - statsdata.class.php should have been overwritten when you updated.... Not sure what is going on. A new class would be best anyway, that way it will not get overwritten in future updates.
You probably need to move the code up inside the last } for the file. It just looks like it is ending the class right before the new section of code.
If that doesnt work, what is line 831?
You can put the admin link in the core_navigation.tpl as well. Maybe make a new line right after the acars link "live map" for the EXAM Center admin link.
Do you mean that when a PIREP is filed throught ACARS or another automated submission system that the PIREP is automatically approved, it will not be put in a "pending" or "awaiting approval" state?
Somewhere around line 98 of schedue_results.tpl you should have the line ->
<a href="<?php echo url('/schedules/brief/'.$route->id);?>">Pilot Brief</a><br />
This is the link to the pilot brief for each flight in the schedule list.
You should also have the file schedule_briefing.tpl in your templates directory, that is the template that is used when viewing the pilot brief.
Hope this helps
I dont see anything that would be easily configured, but you could....
add to StatsData.class.php ->
public static function ActivePilots() {
$query = 'SELECT COUNT(*) AS total
FROM '.TABLE_PREFIX.'pilots
WHERE retired=0';
$result=DB::get_row($query);
if (!$result){
return '0';
}
else {
return $result->total;
}
}
Then where you want your active pilot count to appear ->
<?php echo StatsData::ActivePilots(); ?>
You have the Examcenter link inside of the if command so it will only show if you are not logged in. You need to put it in the other section so it will show when you are logged in to the site.
Make the hub selection into a hidden field with a default value on the registration form. Then you can assign a hub in the admin panel when you approve the application. The hub is a required field in the registration process so you have to have something there, or change the registration module code and database structure.