
coryb12
Members-
Posts
94 -
Joined
-
Last visited
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by coryb12
-
Thanks, but this did not help. I also cleared the specific schedules cache and this didn't help. After looking at the browser errors, I figured out which files were messed up at they aer fixed now. Everything is showing up fine now. Thanks for the quick replies and help!
-
Hi, I would not say this is a bug, but my pilot list and schedule list aren't showing up in the admin center. My browser says there is an error on those pages at the bottom of the browser. All it says is the heading and then a blank area below it, but the nav bar is still there. I noticed some of the files on my site got messed up, so what file(s) would be keeping these tables/lists from showing up? Or, in other words, what files (php, .tpl, .js ect.) are used to display these tables? I can still view the fleet list and pirep list and all other lists/tables in the admin center. Thanks! -- Cory
-
Awesome, thanks!
-
Hello, I just updated to phpVMS version 934 (I think, whatever the latest full version is) and in general settings, there is no field for the Google API Key, so none of the google maps screns are seen anymore. Is there a way to fix this or manually enter it into one of the php files or something? Thanks! -- Cory
-
Still haven't heard back.... will get a response hopefully on Monday.
-
PM sent....
-
UPDATE: Finally got directed to the technical department of Republic Airways (since they bought Frontier)....the guy there said he wasn't quite sure if they had an XML feed since everything is rapidly changing since Repuclic just announced Frontier would be their brand for Midwest and Frontier combined. I will give him a call back on Monday and let you guys know the outcome.
-
Yeah, but I'm sure their schedule finder is using an xml feed, so I will giving them a call tomorrow to see what I can do.
-
Awesome, thanks!
-
Yeah, it's a first gen logo. I definitely will have it redone by the time I open my VA. Thanks for your comments.
-
Hi, all. I am would like to have a TS3 server for my new virtual airline and am curious as to what you guys think the best hosting company is for TS3 servers...... Thanks, Cory
-
Hi, guys. I am working on my skin for Frontier Airlines Virtual and it is finally getting close. You can take a look here: http://hawaiianairva.org/test/ This is not a template from scratch. I took the Obsess Blue template and modified some of the pages, the header, the footer (just a bit), the colors, and the menu. I would love to hear comments or suggestions! Thanks! Cory
-
I am using Frontier Airlines.I'm not sure if they have an xml feed. Hmmmm... after looking at it it doesn't seem like it has flight numbers and times.
-
Update: Well, it is definitely not free anymore...in fact the prices they came back with were quite high (over $100 per airline). I am currently in negotioating with them and will hopefully get it under $100. Either way, I will probably end up using their service. I will keep you updated and let you know when/if I get access to it.
-
Alright, sent them an email....I'll let you know what the response is.
-
Thanks for your fast reply! Hmmmm.... do you know how much their monthly service cost? I do think there are some va's that have a deal to get it free because on one it just has a link and the Innovata logo at the bottom of the flight search screen.
-
Hello. I am curious if it is possible to make a module that would always keep the schedules current based off of Innovata's schedule service found here: http://www.innovatallc.com/pages/Our-Services/affiliate-services.aspx?lang=En-Ca Thanks! -- Cory
-
I would be willing to pay for this aswell.
-
Yeah,I'm thinking of starting with an FSACARS clone just to have something a little easier for pilots to use. I am really bad with PHP though and don't have a ton of experience with programming. Maybe in the future I will have something better.....
-
Hi, all. I am developing a custom ACARS program that will use the same PHP script (or extremely similar) as FSACARS. I need to know which information is being sent to what PHP file, class of PHP file, and what each variable is named for the PHP to receive it. I already know that I need to use POST methods as I have a login function already working from it. Basically, I'm asking somebody to "decode" the PHP so i know what variable with what name gets sent where as I have almost no experience with PHP. Any help is appreciated! Thanks!
-
Thanks for the interest guys, but I went ahead and decided to modify an existing template because it was too much work for me to make one from scratch. Here is the design in progress: http://hawaiianairva.org/test/ Please comment on it and make suggestions!
-
Do you just want the CSS code?
-
Hi, all! I am very new to skinning, and am, or at least attempting to , design my first skin from scratch. I am using a drop-down menu for it, but because the header has a pre-defined height in the CSS code, it gets cutoff. I tried taking out the predefined height, but the content of the page cuts off the drop-down menus that go below a certain haeight. I realize this is probably a stupid question to some of you, but any help is appreciated .
-
I know, this is kind of vague, but anyone know what my be causing this problem on our live map with the white backgrounds on the images on the live map (see picture below)....something about how it is shifted over because of the Latest Flights feed is what's causing the problem, but anyone know what my be cuasing it in the code? Also, here is the header.tpl code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title><?php echo $title; ?></title> <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" /> <meta name="description" content="Virtual Airline" /> <meta name="keywords" content="virtual airline, flight simulator, fs9,fsx," /> <meta name="author" content="Your Name / Design by Fernbap - http://fernbap.com/" /> <link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/clowdy/style.css" /> <?php Template::Show('core_htmlhead.tpl'); ?> </head> <body> <div id="wrapper"> <?php Template::Show('core_htmlreq.tpl'); ?> <div id="header"> </div> <div id="menu"> <ul> <li><?php Template::Show('core_navigation.tpl'); ?></li> </ul> </div> <div id="content"> <div id="right"> <h2 class="topright">New Pilots</h2> <div class="rightitem"> <ul> <li><?php MainController::Run('Pilots', 'RecentFrontPage', 5); ?></li> </ul> </div> <h2>Latest Flights</h2> <div class="announce"> <p><?php MainController::Run('PIREPS', 'RecentFrontPage', 5); ?></p> </div> </div> <div id="bodytext"> </div> acarsmap.tpl code: <div id="main"> <script type="text/javascript"> var map_center_lat = "<?php echo Config::Get('MAP_CENTER_LAT'); ?>"; var map_center_lng = "<?php echo Config::Get('MAP_CENTER_LNG'); ?>"; var map_type = <?php echo Config::Get('MAP_TYPE'); ?>; </script> <script type="text/javascript" src="<?php echo SITE_URL?>/lib/js/acarsmap.js"></script> <div class="mapcenter" align="center"> <div id="acarsmap" style="width:<?php echo Config::Get('MAP_WIDTH');?>; height: <?php echo Config::Get('MAP_HEIGHT')?>"></div> <p style="width:<?php echo Config::Get('MAP_WIDTH');?>;font-size: 10px; text-align: center;">The map and table automatically update. <span style="color:red;">Red</span> indicates pilot is on the ground. <span style="color:green;">Green</span> indicates in air. Click pilot name to view.</p> </div> <table border = "0" width="100%"> <thead> <tr> <td><b>Pilot</b></td><td><b>Flight Number</b></td><td><b>Departure</b></td><td><b>Arrival</b></td><td><b>Status</b></td><td><b>Altitude</b></td><td><b>Speed</b></td><td><b>Distance/Time Remain</b></td> </tr> </thead> <tbody id="pilotlist" ></tbody> </table> <!--for every page you make copy and paste this code exactly so the footer will align correctly!--> </div> <div class="leftbottom"></div> </div> <div id="clear"></div> footer.tpl code: <div id="footer"> <p>Copyright © 2009 Your VA - All rights reserved | <a href="http://www.phpvms.net">PHPVMS</a> | <a href="http://www.fspaintshop.com">FsPaintshop</a> | Design by <a href="http://www.fernbap.com">Fernbap</a></p> </div> </div> </body> </html>
-
OK, I have one question. For sending the data, are you using WebRequest to access a php file on your website and then using a POST function to post the data so that the php file can use a GET function to retrieve the data?