
Kyle
Moderators-
Posts
2282 -
Joined
-
Last visited
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by Kyle
-
Yep, the beta one has that feature.
-
You would need to edit the core files, but I'm not sure what your trying to do here. Are you saying that you don't want the price to be counted in the schedule flight and use the php math in the code you used and put it in the schedules? Is that that your trying to do?
-
Mr. Beans is right. We don't know that our skin is easily visible. If you want more info on securing your skin.... http://forum.phpvms.net/page/index.html/_/administrator-guide/securing-files-and-directories-r35
-
It seems to be working for us. Are you sure you have changed your local.config.php on vaCentral set to true?
-
Thanks guys for your comments!
-
I don't steal that kind of stuff. Google is my friend for CSS, PHP. So USE GOOGLE!
-
I did major rework on the site today. http://www.suncountryvirtual.net/ What does anyone think? It seems almost plain... Any ideas?
-
In the phpVMS's Beta, they had that feature. Not sure I remember. We have our own custom banned (status) system.
-
Nabeel said he will take a look ASAP. In shoubox.
-
I got a better idea, why don't you just take it up to PM and keep this private from being public! It's gotten way far with people yelling out who stole the skin so next time, keep it shut and take it to PM!
-
I know which site your talking about. I remember one had a simlalr design like yours. And this HAS TO STOP AGAIN!
-
Yep. Let's say you had the field titled to VATSIM_ID and this would be the code. <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM_ID'); ?>
-
No problem.
-
Why couldn't you done it by custom profile feilds, you can add thoes feilds from the admin? You would need to change three files mostly. The Registration.php file, registration_mainform.tpl and the RegistrationData.class.php. It looks alot of work, and what if you updated your phpVMS and it will stop working because you edited the core files and it gets overwritten in updates.
-
It worked for me. Did you change code on top and set it where your getting the data. $params->deplat = 1; $params->deplng = 1; $params->route = 'HEL UT6 PEVEN UL990 PERRY'; So, if your doing it in the schedules detail page, this is the code.. <?php $params->deplat = $schedule->deplat; $params->deplng = $schedule->deplng; $params->route = $schedule->route; $routedata = NavData::parseRoute($params); ?> <table> <thead> <tr> <th>Lat</th> <th>Long</th> </tr> </thead> <tbody> <?php foreach($routedata as $routeline) { ?> <tr> <td align="center"><?php echo $routeline->lat; ?></td> <td align="center"><?php echo $routeline->lng; ?></td> </tr> <?php } ?> </tbody> </table>
-
Maybe spring break is coming and people are busy with last stuff before spring break?
-
I wasn't really meaning to you, lol. The "current ones" who steals skins. Hopefully no Offense given to you. Fair enough for the person. Nope, not anymore. lol. It ends right now.
-
My god... just kids...
-
Thanks! That did the trick. . Forgot about the ` in the query.
-
Thanks Jeff! I was going to plan to release this, but the problem is. There is a load (A BUNCH!) of queries to make this stats come real, and while I was testing it, and I keep hitting errors and successful testing, our SQL server keeps rejecting me from running it and sending me back to the main page. I'm going work out on reducing it and hopefully that will solve the problem. Depending on what type of host you have, your hosting provider, amount of PIREP and pilots, I don't want to see anyone getting suspended because of the module I released. I'll keep it for now, and till now if our host doesn't suspend us or notifies us in the next few weeks, then I'll consider releasing it in the future. Hope you understand.
-
Yep all in total.
-
Thanks!
-
What does anyone think about our very own custom Real Time Stats System? - http://www.suncountryvirtual.net/index.php/StatsCenter/index?month=3&year=2012 That's Version One. lol.
-
March 27, 2012 - Sun Country Virtual Hits 200 Hours! We did it again!! Another 100 hours of flight submited just in 21 days! As of today, March 27, 2012, Sun Country Virtual has hit over 200 hours of flight with 71 PIREPs filed! What a great acheviement! Let's keep aiming for 500 hours shall we? Target Date? Sure, let's hit 500 hours by May 31st, 2012! Get those hours and PIREPs in! Also, we recently released our very own custom built Real Time Stats System. We are working on per pilot's stats, and should be ready this week. Join now at Sun Country Virtual - http://www.suncountryvirtual.net/
-
Hey, I'm trying to make an query to get all of the passenger loads columns from the PIREP tables. Here's the SQL Query i ran in our database manager SELECT SUM(load) AS passengers FROM pireps And I got the Query error... #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'load) AS passengers FROM pireps' at line 1 Does anyone know why? I tried to sum the fuelused column and it worked, same query, but what the heck, why not to the loads column? Hopefully someone can shine in!