-
Posts
2773 -
Joined
-
Last visited
-
Days Won
3
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by simpilot
-
Try action.php instead of index.php, that will make it drop the skin.
-
I think the la92.com site became a liability to him, cut and run may have been the best option... Too bad, seemed like a talented guy.
-
I dont do much with iframes but the acars map is contained in the acarsmap.tpl file as far as display. The guts of the data comes out of the ACARS.php file using the yoursite.com/index.php/acars function.
-
Yep, we ran into this as well and running the application as administrator cleared everything up for us as well. This is what is posted in our forum for Win7 users. The path to the folder may be slightly different for different users but basically the same.
-
I moved it from the skinning releases board, guess I should have put it in support.....
-
Moved to skinning board.
-
Try downloading a good editor like netbeans or aptana. They are a lot more versatile and have a lot of code hinting built in. http://www.netbeans.org http://www.aptana.com/
-
Looks like a corrupted file to me. Have you tried putting your install folder back and running - www.mysite.com/install/checkinstall.php ? This will show if you have a bad or missing file(s).
-
I dont know much about the template you are using but you seemed to have solved it back on the 28th of October here -> http://forum.phpvms.net/topic/2225-toppilot-beta-10/page__view__findpost__p__26295 There is also some good css tutorials pointed out by other users eariler in this thread starting here -> http://forum.phpvms.net/topic/2225-toppilot-beta-10/page__view__findpost__p__14916
-
Look around on your hosting panel for your free host, there should be a manual or set of instructions on how to access a MySQL database from the free server, they are usually hosted on another server and you will probably be severly limited on what you can do with it. Once you have a database setup you will have a database name and password as well as a URL to access it, these are the parameters needed for the initial install script for the phpVMS application. Once you have a database setup through your hosting panel, then use this guide that has been written by one of our newer users of the application -> http://forum.phpvms.net/page/index.html?record=36 The downside of your situation, as stated by Ray already, is that a free host will cause your life to be shortened by a factor of years due to frustration. A decent paid host, like Nabeels fivedev here in the forum, will pay dividends in the long run not to mention the stigma that va pilots get when exploring a va hosted on a free site. Good luck with your endeavors.
-
REALScheduleLite beta 1.0 [DEPRECATED]
simpilot replied to simpilot's topic in Simpilot Group Addons
The module is designed for one aircraft - one loop From the readme -
REALScheduleLite beta 1.0 [DEPRECATED]
simpilot replied to simpilot's topic in Simpilot Group Addons
The module would have to be changed to the core, I did not build it around routes, I instead built it around aircraft so the "disable on bid" function that is built into phpVMS is not much help. -
REALScheduleLite beta 1.0 [DEPRECATED]
simpilot replied to simpilot's topic in Simpilot Group Addons
You should be able to add it right in the template. Try coping the one you want and pasting it where you want it in the RSL template. I dont have it open right now but I am pretty sure the variables are all there to make it work. -
You will need to add paginaton functions into the data class, controller and the template but it can be done. Look for a thread on pagination in the support forum, there is a good one that many have used to paginate schedules and other list type pages.
-
As long as the user is logged in it would be fairly easy. Some psuedo code for it if($Auth::$userdata->code == $schedule->code) {"show the schedule"} and for pilots if($Auth::$userdata->code == $pilot->code) {"show the pilot info"} If the user is not logged in they will not see anything as the $userdata variable will be empty. You could add something like this so everything could be seen by visitors, but it would be seen by pilots not logged in as well. if(!Auth::LoggedIn()) {show all the schedules} else {use the above ideas here}
-
In local.config.php change # If someone places a bid, whether to disable that or not Config::Set('DISABLE_SCHED_ON_BID', true); Config::Set('DISABLE_BIDS_ON_BID', true); to # If someone places a bid, whether to disable that or not Config::Set('DISABLE_SCHED_ON_BID', false); Config::Set('DISABLE_BIDS_ON_BID', false);
-
SITE_NAME: You have been marked as retired
simpilot replied to mark1million's topic in Support Forum
Until we figure it out the easiest fix would be to just put your va name in place of SITE_NAME. -
Here is the data dump for my airports table for a charter system I have built if it will help. It has 41533 airfields, helipads, water strips, and private airfields in it, I think there are still some that I do not have in it but its a start. It is a big file so you may have to split it up to import it into your table, if you are on free hosting I would not even try. phpvms_airports.sql.zip
-
In your local.config.php file change # Automatically calculate ranks? Config::Set('RANKS_AUTOCALCULATE', true); to # Automatically calculate ranks? Config::Set('RANKS_AUTOCALCULATE', false); then you will be able to manually set ranks in the pilot profiles of the admin center.
- 1 reply
-
- 1
-
REALScheduleLite beta 1.0 [DEPRECATED]
simpilot replied to simpilot's topic in Simpilot Group Addons
If I am following, I think you need to put the links back in the templates for the pilots to use to get to the file PIREP functions. They need to be there as well as the realschedule link. -
LOL - Thanks Joeri, wasn't sure why all your and my posts were showing negs, looks like someone has come through and counter acted them.
-
REALScheduleLite beta 1.0 [DEPRECATED]
simpilot replied to simpilot's topic in Simpilot Group Addons
The issue of the pilot not showing up anywhere if they have not ever flown a flight has been floating around since about 10 beta updates ago. I am not sure what has happened but if I ever extend the code I will find a workaround. It used to show the pilot at their hub to start. As far as pireps not showing up in the pilot center, I do not believe that the module has anything to do with that, unless maybe the template code was embedded into that template. Try deleteing the addon files and see if you still have the problem. -
Wow, why all the negs? Good Luck.
-
Thanks Keith, try putting a print_r($yourvariable); right after your datacall and see what is available to you as far as field names, I believe it should be everything out of that table for PIREPS. Then you can break up the array using a foreach loop, then display what you want using echo $yourvariable->fieldname
-
Send me the file or Pastebin it Ray, I will take a swing at it.