-
Posts
2773 -
Joined
-
Last visited
-
Days Won
3
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by simpilot
-
Seriously, at least name it something else.......
-
How do I add a slideshow to the pure_HTML5 skin? [SOLVED]
simpilot replied to tobyrice01's topic in Support Forum
Maybe this would help you -> http://forum.phpvms.net/topic/21821-simpleslideshow-jquery-slideshow-plugin/ -
Maybe something like this as a new function in your data class: public static function get_unique_monthly($month, $year, $howmany) { $query = "SELECT pilotid, code, flightnum, depicao, arricao, aircraft, MAX(landingrate) as landingrate, submitdate FROM `".TABLE_PREFIX."pireps` WHERE landingrate < '0' AND MONTH(submitdate) = $month AND YEAR(submitdate) = $year GROUP BY pilotid ORDER BY landingrate DESC LIMIT $howmany"; return DB::get_results($query); }
-
I do not think that is an error with phpVMS, rather a setting or limitation in whatever you are using to edit the file.
-
There are a number of admin modules that are only protected by the link not being in the menu for the user if he does not have permissions for that function. If you look at the MassMailer module you will find that each function has a permissions check; $this->checkPermission(EMAIL_PILOTS); but if you look at the PilotAdmin module it does not. It is one of the many things that need to be extended in the system. You could go through and add the proper permissions to every function in the admin system to fix it, just remember if there is ever an update the changes would probably be overwritten unless you submit them in a pull request to the Github project. On the other hand I would have to ask myself if I need people in my VA that I need to worry about doing things like this?
-
I posted a number of solution threads here -> http://forum.phpvms.net/topic/21500-pilotdataclass-problem/page__hl__%26%23036%3B_files
-
Most likely a javascript conflict, probably part of this issue you posted -> http://forum.phpvms.net/topic/21810-no-route-passed/ <- try using Firebug as I pointed out, I think you will find that the issues are related.
-
It is a php version conflict. phpVMS needs dome work to adapt to the newer versions of php. Search stict standards in the forum and you will come up with a bunch of threads with different fixes that have helped others. The one that seems to at least hide the errors for most is -> http://forum.phpvms.net/topic/21165-solved-lots-of-errors <- it is not a "fix" merely a way to hide the errors.
-
There is nothing in the default setup to do this. It can be done by coding your own module for the system. Here is an example of what I think you are looking for in a phpVMS system. -> http://virtualexpressjetairlines.org/action.php/multi/asq_roster
-
Use Firebug for Firefox and see what the JS is throwing for an error. The script is getting old and usually needs to be modified in order to work with newer versions of jquery. I used Firebug in order to adapt it to work with bootstrap. You can find the addon here -> https://addons.mozilla.org/en-US/firefox/addon/firebug/
-
Upgraded to phpvms 5.5.1 errors in Tours Module
simpilot replied to Edwin's topic in Simpilot Group Addons
Start a ticket here -> http://www.noticeablehosting.com/clients/ <- and attach the file. I will fix it and return it. It just needs to be updated to be compatible with php 5.5. -
There is nothing in the default setup of phpVMS that does this that I am aware of.
-
I think that Txmmy83 gave you a good solution that would avoid you having to change core code that will get overwritten in an update. Enter your flights into the system like he said with a letter appended and then when you have them all in go back and edit them so they are all the same flight number.
-
Just my two cents but I would think that the client end would probably be best suited to be built right into the ACARS client you are using, that would avoid the pilot having to open up yet another application. The admin side could be built right into phpVMS instead of a separate application as well, unless you are thinking about doing this as a phone app or something. Probably would be much more economically friendly as well.
-
Make sure the file is there, the error is telling you that it does not exist, or it is not where it should be.
-
I do not usually get involved with these things but I find that just scrapping this project when it has full rights and access to the branding of Ethiad kind of foolish. Michael, this is too good of an opportunity to let pass in my opinion, you will unlikely get another chance like this.
-
Schedule does not exist. Please update this manually.
simpilot replied to mitcheinfo's topic in Support Forum
-
Schedule does not exist. Please update this manually.
simpilot replied to mitcheinfo's topic in Support Forum
Without error logs or any other answers to go on other than it started when you switched to php5.5 I would guess there is a non static function somewhere that is being called as static, but that is a shot in the dark with the limited information and responses. Also looking at part of the code there is a section that is looking for airport info that is polling the "AIRPORT_LOOKUP_SERVER". If you have this still set to the geonames option in your local config that could be causing the script to return false. -
http://forum.phpvms.net/topic/21500-pilotdataclass-problem/page__hl__%26%23036%3B_files
-
What could I do to bring in pilots
simpilot replied to jusromaine's topic in Virtual Airlines Discussion
In addition to all of these things it takes patience, lots of patience.. -
Schedule does not exist. Please update this manually.
simpilot replied to mitcheinfo's topic in Support Forum
I am not real familiar with FSFK but I did get the images all working in phpvms some time ago and I have never come across this message. I am assuming it shows up in the FSFK client as I do not see where it would come from on the script side after a quick look. I guess I would ask if using or not using the code part of the flight number makes a difference? Is there any error log form the site, either the phpvms error log or the server error log? If it is not finding the flight number I would imagine the error starts around this in the controller for FSFK $flightinfo = SchedulesData::getProperFlightNum($xml->FlightNumber); $code = $flightinfo['code']; $flightnum = $flightinfo['flightnum']; -
Open the admin controller file and change $this->set('sidebar', 'events/sidebar_events.php'); to $this->set('sidebar', 'events/sidebar_events.tpl');
-
[SOLVED] Pilot Rewards Error in admin center
simpilot replied to jusromaine's topic in Simpilot Group Addons
Addressed and solved directly, had nothing to do with php version. -
SimBrief is a little different animal I believe. It has a very nice briefing system but I do not believe it provides live real world flight schedules, and you also have to pay for a subscription to NaviGraph if you want to use the full routing capabilities using the current AIRAC.
-
Thank You - I have not had too many issues with users not being happy with it outside of the cost. I do not know where it is going to go from here. It seems that most feel it is to much to pay $10.00 a month for 500 requests to the system. As I have to pay for the data I am getting as well as support the site it does not make sense to do it for less or even as some expect, free.