-
Posts
724 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by TennShadow
-
That's what I did as well. I made it so all new pilots were on kACARS and asked the other pilots to switch if they wanted to. If the didn't want to then they didn't have to.
-
I've been using kACARS since it came out and my VA has not had any issues. If PHPVMS is setup correctly then there will be no issues with kACARS. As an added bonus you have the developer of kACARS on this forum regularly to help out if an issue comes up.
-
This site has over 43,000 aiports to download. http://www.ourairports.com/data/
-
http://getfirebug.com/ Firebug is an extension for FireFox that will allow you to edit your site code right in the browser so you can see the changes live. It is great when trying to figure out what you are needing to do.
-
Help please. problem with website [SOLVED]
TennShadow replied to MrAmsterdam's topic in Support Forum
Yep, I got the same thing too when trying to go to the cpanel. Don't worry though, I've emailed Nabeel about this issue. -
SITE_NAME: You have been marked as retired
TennShadow replied to mark1million's topic in Support Forum
Yes, I get this too. -
Yep, that someone was me. I hate seeing BS negs when people are trying to help.
-
Help please. problem with website [SOLVED]
TennShadow replied to MrAmsterdam's topic in Support Forum
I'm having the same problems as you. Plus some of my modules are giving me 500 errors. Are you on FiveDev? If so I'm guessing they are having server issues. -
Thanks Simpilot! I've always wanted a dynamic Hub page but just couldn't figure it out. This has helped me at least get the ball rolling. I am also interested in having a list of the last 50 PIREPS for that hub as well as a list of 50 schedules leaving that hub. I did some research on the forums and some goolging using PirepData::getAllPirepsByHub and boy did I make a mess. LOL. I spent over an hour on different things with no luck. I have to say this is fun but I just wish I could get this to stick in my head. Anyways, thanks for getting me started on this. Keith
-
Change Config::Set('ACARS_LIVE_TIME', 720); in local.config.php to whatever time you want the aircraft to stay on the map after your flight. # ACARS options # Minutes, flights to show on the ACARS # Default is 720 minutes (12 hours) Config::Set('ACARS_LIVE_TIME', 720); Config::Set('ACARS_DEBUG', false);
- 1 reply
-
- 1
-
There have been a lot of posts on this actually. What most people end up doing is they skin PHPVMS to look like their Joomla skin and then just point links to that. I know that is not what your wanting to do but that is just one suggestion. There really is not a "bridge" between the two software so skinning would be your best option. http://forum.phpvms....h__1#entry20866 http://forum.phpvms....h__1#entry20221 http://forum.phpvms....h__1#entry19159 http://forum.phpvms....h__1#entry15969
-
The video is there. It's a Youtube video so make sure you have the latest Flash plugin installed. In order to get XACARS to work with PHPVMS all you need to do is download the config file (xacars.ini) from your pilot center and put in the XACARS program folder. Then you must enter your schedule number exactly for it to pull the data. Also, make sure your using the latest version of XACARS.
-
Check out my install video on this because it seems you are doing more than you need to. http://forum.phpvms.net/page/index.html?record=22
-
Welcome to the PHPVMS forums Peter! If you have any questions feel free to ask as this forum is full of helpful individuals. Thanks, Keith
-
Replace it with the original and see if they start going out again.
-
[SOLVED] Regrouped with constructive information
TennShadow replied to Bluemax's topic in Support Forum
If you want to test these suggestions without messing up your production site download and install XAMPP. This will basically turn your computer into a web server. You could then copy your whole site to your computer. Next you would export your db and then import it in to PHPMYADMIN on XAMPP. This would allow you to test and replace all you want without effecting your production site. The only thing that you'd need to do is make sure you change the DB info in your local.config file on your PC to point to your local copy on your PC or it could still use your production DB. I do that for my VA so I can test all the updates and modules before it hits the production site. If you break something it is not a big deal. Just copy every over and start again. -
What is your website URL?
-
[SOLVED] Edit Button missing from Admin Pilot List
TennShadow replied to TennShadow's topic in Support Forum
That did it. Thanks! What is funny about this ( or sad really) is I read that post 3 times before I posted this and missed it every time. I guess it is time to get out of bed and go run for a while. LOL. Thank again Mark! -
My "edit" link in the admin pilots list is gone and I need to know which files to replace to fix the issue. Here is what happened. Sometime ago I applied some code I got on the forum (that I can't find now) to add a column in the admin pilot list to show the last location of the pilots. If you see the attached screenshot you see in the "Edit" column it only shows the ICAO of the last location and not the "edit" link. I've replaced the code in admin/templates/pilotlist.tpl with the below but doesn't correct the issue. <h3>Pilots List</h3> <table id="grid"></table> <div id="pager"></div> <br /> <link rel="stylesheet" type="text/css" media="screen" href="<?php echo fileurl('/lib/js/jqgrid/css/ui.jqgrid.css');?>" /> <script src="<?php echo fileurl('/lib/js/jqgrid/js/i18n/grid.locale-en.js');?>" type="text/javascript"></script> <script src="<?php echo fileurl('/lib/js/jqgrid/js/jquery.jqGrid.min.js');?>" type="text/javascript"></script> <script type="text/javascript"> $("#grid").jqGrid({ url: '<?php echo adminaction('/pilotadmin/getpilotsjson');?>', datatype: 'json', mtype: 'GET', colNames: ['', 'First', 'Last', 'Email', 'Location', 'Status', 'Rank', 'Flights', 'Hours', 'IP', 'Edit'], colModel : [ {index: 'id', name: 'id', hidden: true, search: false }, {index: 'firstname', name : 'firstname',sortable : true, align: 'left', search: 'true', searchoptions:{sopt:['in']}}, {index: 'lastname', name : 'lastname', sortable : true, align: 'left', searchoptions:{sopt:['in']}}, {index: 'email', name : 'email', sortable : true, align: 'left',searchoptions:{sopt:['li']}}, {index: 'location', name : 'location', sortable : true, align: 'center',searchoptions:{sopt:['eq','ne']}}, {index: 'retired', name : 'status', sortable : true, align: 'center',searchoptions:{sopt:['in']}}, {index: 'rank', name : 'rank', sortable : true, align: 'center', searchoptions:{sopt:['eq','ne']}}, {index: 'totalflights', name : 'totalflights', sortable : true, align: 'center',searchoptions:{sopt:['lt','gt']}}, {index: 'totalhours', name : 'totalhours', sortable : true, align: 'center',searchoptions:{sopt:['lt','gt']}}, {index: 'lastip', name : 'lastip', sortable : true, align: 'center', searchoptions:{sopt:['in']}}, {index: '', name : '', sortable : true, align: 'center', search: false} ], pager: '#pager', rowNum: 25, sortname: 'pilotid', sortorder: 'asc', viewrecords: true, autowidth: true, height: '100%' }); jQuery("#grid").jqGrid('navGrid','#pager', {edit:false,add:false,del:false,search:true,refresh:true}, {}, // edit {}, // add {}, //del {multipleSearch:true} // search options ); </script> This leads me to believe that I must have modified another file but I can't figure out which one. I do not need the last location in the admin panel anymore and I'd like to make that like the default again. Could anyone point me to the other file that I need to default? BTW, I don't want to default the whole admin folder because I have modified a few other files. Thanks in advanced Keith
-
I'm looking for someone to paint my VA fleet in FSX. I will pay for this service. I don't need anyone to design the graphics as I already have them in psd files. All I need is someone to find me good quality FSX aircraft and then paint them using our graphics and colors.. I do not need an auto installer either. I need the following aircraft painted. EMB 170 CRJ-900 Airbus A319 Airbus A321 Boeing 738 Boeing 744 Boeing 763 Boeing 772 PMDG FSX 744 - Livery Only If you want to see what our fleet looks like just check out my sig banner. If you are interested in this job please PM me. Thanks in advance, Keith
-
Is your production site with a free or paid hosting provider?
-
Your best bet in the future is create a dev site so you can test the updates there before you apply it to your production site. I created a sub domain for my dev site and imported a copy of my production database to my dev site so when I do update it will be close to the real thing. I will then have my staff login and test everything. If all goes well I schedule downtime and then update my prod site. This has virtually stopped all the frustration when upgrading.
-
I didn't see any errors so I'm assuming you got it fixed?
-
You can download FileZilla and use that to change the permissions.