Support Forum
Any questions or bug reports go here.
7150 topics in this forum
-
- 5 replies
- 2k views
Hi Nabeel, I keep getting the following error on the forums, 502 Bad Gateway nginx/0.8.34 I thought it was me using chrome so i switched to ff and now its started again on that browser when i click on a post. Is any one else getting this?
Last reply by mark1million, -
- 1 reply
- 2k views
Is it possible to bid on a flight from the schedule_details.tpl page? I am trying to use this code to bid on the flight, but it does not do anything when clicked on. <?php # Don't allow overlapping bids and a bid exists if(Config::Get('DISABLE_SCHED_ON_BID') == true && $route->bidid != 0) { ?> <a id="<?php echo $route->id; ?>" class="addbid" href="<?php echo actionurl('/schedules/addbid');?>"><img src="http://www.mysite.net/lib/skins/cityportal/images/purchase2.png" srcover="http://www.mysite.net/lib/skins/cityport…
Last reply by Jeff, -
- 5 replies
- 2k views
Hi I have just setup a free PHPVMS system for myself and my friends. It is running I installed everything including the module of the kCARS free program to work. I can login and start the flight, after I land, taxi to a gate, parking brake on and engine shutdown, I then click stop record, and submit flight. I get a comformation that it has been submitted, but when I look on the website it is not there, and my flight which I just submited is still under my bids. Please help me, still very new to this system Greetings Grant Duke
Last reply by GrantDuke, -
- 1 follower
- 2 replies
- 2k views
Hi all, I have recently migrated a friends site to a new host. When i go to the admin centre and check the admin activity logs i get this. Can anyone tell me how to fix it.m Thanks in advance Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 85 bytes) in/home/a7519666/public_html/core/classes/ezdb/ezdb_mysql.class.php on line 273
Last reply by vJet2, -
- 1 follower
- 2 replies
- 2k views
Hello Community, I added in the following Database phpvms_pilots eight new Fields called "vatsimid, ivaoid, msn, icq, skype, nearest aiport as nearest and birthday" so far so good. My Pilot_main.tpl looks like this <table id="profile" width="550" border="0" cellspacing="1" cellpadding="3"> <tr> <td colspan="3" bgcolor="#666666"><center><strong><font color="#FFFFFF">Member Details</font></strong></center></div></td> </tr> <tr> <td align="right" bgcolor="#CCCCCC">Name</td> <td bgcolor="#CCCCCC"><?php echo $userinfo->firstname . ' ' . $userinfo->lastname…
Last reply by xhubix, -
- 4 replies
- 2k views
Hey guys, I just recently found out that in the Pilot manager addon i have (not sure whichh version) Has my Name in emails i sent to other pilots. Here is the code let me know how i can fix. Please. <p>Dear <?php echo Auth::$userinfo->firstname.' '.Auth::$userinfo->lastname; ?>,</p> You are required to submit one PIREP per month. Your last PIREP was sent on <?php echo Auth::$userinfo->lastpirep?>.</p> Please be advised if you do not send a report within the next 2 days your account will be deleted. Sincerely SkyBahamas Virtual - Administrative Staff And as an example, lets say i email a pilot name John Sky, and i sent him a …
Last reply by Curshad, -
- 5 replies
- 2k views
Portuguese: Como Eu Adiciono o Menu Fleet Onde Mostra Onde Os Avioes Da Minha Va Está? English: Anyone know how I add the menu fleet which airport the aircraft is in my va?
Last reply by Serrador, -
- 2 replies
- 2k views
How do i get the pilot store to show up to my pilot on the website? I can see it in admin side but its not showing up in the main website.. If you can help me out thank you????? Brian
Last reply by mark1million, -
- 0 replies
- 2k views
About time right?http://phpvms.net/docs/downloadsBuild 321 (the V1 build!)Remember to backup and then restore your core/local.config.php** The build was 320 but is now 321, fixing a few installer errors **New Stuff/Changes Updated framework. New Admin panel, sidebar with integrated help, cleaner design. Aiports can be selected as hubs. Pilot selects hub on registration (admin can change). Admin viewing PIREP can see PIREPs only on their hub. API Documentation (http://www.phpvms.net/docs/api) for plug-ins. Public Pilot profile is available. Deleting schedule now asks "Are you sure?". Admin can edit profile fields of a user. User edit tabs fixed up Added link to latest PI…
Last reply by Nabeel, -
- 4 replies
- 2k views
Hey guys, I am looking into a problem that i have with the admin panel. I want to give a member some rights to add and change routes and stuff... i just don't want him to access the exprenses, pilot and some other tabs. When i select everything except admin rights, the admin tab does not pop up. Is there something that i am missing? Is the only option to change routes and for example add news, to choose admin rights? Maybe you guys have a simple answer for this? Thanks in advance, Lucas
Last reply by MrAmsterdam, -
- 1 reply
- 2k views
Hello People. Does anyone has a solution for this? I tried editing flown_routes_map.php but still it's not getting fixed. How do I get it right fitted in the box? Used this too style="height: auto; width: 100%;" But still....
Last reply by servetas, -
- 1 reply
- 2k views
Good eve Today I bought the Magix 7 Web Designer and I just wanted to ask if someone knows if I can create a template or a homepage with the use of PHPVMS codes? Thanks for your effort and answers! Good night!
Last reply by bunoire14, -
- 1 reply
- 2k views
Hi guy's, I have one problem. I want to create a code to my schedules system, the code is: If the plane (ex. A330) is in (ex. LPPT) he will show's only the routes wiht the departure LPPT for that airplane. So in the schedule_results i have that code: <?php if(!$allroutes) { echo '<p align="center">No routes have been found!</p>'; return; } ?> <table width="666" class="tablesorter" id="tabledlist"> <thead> <tr> <th width="389">Flight Info</th> <th width="54"> </th> <th width="207">Options</th> </tr> </thead> <tbody> <?php foreach($allroutes as $route) { /* Uncomment t…
Last reply by Joaogl, -
- 4 replies
- 2k views
Is there any way I can prevent the transmission of manual PIREPs and allow only the transmission of information of the flight when the player make a flight? And how has PIREPs are updated automatically, without my permission?
Last reply by Eicosav, -
- 5 replies
- 2k views
Hello, There is a file where there are all the airports in the world to be imported phpVMS instead of putting them all by hand? Thanks!
Last reply by simpilot, -
- 7 replies
- 2k views
Hi I wrote this code to get the hours of a pilot on a single airplane in profile_stasts.tpl but don't work <?php $query = 'SELECT flighttime FROM '.TABLE_PREFIX.'pireps WHERE aircraft = 6 AND pilotid = '.Auth::$userinfo->pilotid'; --------------->I believe that the error is here $result=DB::get_row($query); echo $result->distance; { } ?> Can you help? many thanks Regards
Last reply by SouthwestVA, -
- 1 reply
- 2k views
Where can I find an empty skin to begin designing?
Last reply by simpilot, -
- 1 reply
- 2k views
Title. Thanks for helpers.
Last reply by web541, -
- 4 replies
- 2k views
I am trying to copy some code from top pilots module, put into my frontpage_main.php. When I do this I get this message. I have flights already this month, the mod pages shows that aswell. Here is the code take from the modules template file. Am I missing something? Any idea why its not showing the flights? <div class="group"> <div class="col span_1_of_2"> <h3>Hours Flown</h3> <table> <thead> <tr> <th> Member </th> <th style="text-align: right;"> …
Last reply by flyalaska, -
- 5 replies
- 2k views
@web541 I recently downloaded RandomFlights from your github which was updated for phpvms 5.5.x. I've tried using this but every time I search for something, regardless of the selections entered, it returns No Routes Found! Any ideas on why it's doing this? Thanks in advance for a response. -Zac
Last reply by zacmia, -
- 2 replies
- 2k views
Hi all looking at upgrading my VAForums to ipboard just wondered if anyone has intergrated it with phpvms so that when the pilot logs into the website they log into the forum aswell. thanks Scott
Last reply by Angel Air, -
- 5 replies
- 2k views
Hi all, prob a really easy solution to most but its really getting me now I have: <?php if(!$reports) { echo 'No reports have been filed'; return; } ?> <table width="100%" cellpadding="4" cellspacing="0"> <tr align="center"> <th bgcolor="#f5f5f5"><strong>Pilot</strong></th> <th bgcolor="#f5f5f5"><strong>Flight Number</strong></th> <th bgcolor="#f5f5f5"><strong>Departure</strong></th> <th bgcolor="#f5f5f5"><strong>Arrival</strong></th> <th bgcolor="#f5f5f5"><strong>Duration</strong></th> <th…
Last reply by Connor1994, -
- 5 replies
- 2k views
Can Someone tell me the code for only allowing only people above a certain rank to view a page. I'm guessing it goes something kind off like this but i'm not sure. <?php if(Auth::Rank() => FirstOfficer) { ?> <li><a href="<?php echo url('pages/discounts'); ?>">Discounts</a></li> <?php } ?> Is this correct?
Last reply by Parkho, -
- 3 replies
- 2k views
Hello, so we have again a problem now there are no maps shown, no live map, no map of the flight in the detailed schedule page or the map of my own flights. It is just white (the background is also white so I don't know if it is somehow shown or not). I did not changed anything (or I was not aware of changing anything) that is connected with the map. Has someone else this problem and is there a solution? Regards Julius
Last reply by ARV187, -
- 5 replies
- 2k views
Any help with this error? I have the Live Flight Info module (CreazyCreative) and it works correctly but unfortunately the map is not visible and its support is very bad. MODERATOR EDIT: Code snippet removed Thank you so much.
Last reply by ProAvia, -
- 2 replies
- 2k views
I imported the "FFA" preferred flight database. But unfortunately it was many duplicate Departure/Arrival Airports. I am in need of a sql query that will delete Duplicate flight schedules and keep the flight with a defined route with the shortest distance... Thx in advance...
-
I was looking at my emails today I saw a name I thought was familiar. I opened it and, right enough, I remember removing this guy. Seems he has other targets too:
Last reply by Kyle, -
- 1 reply
- 2k views
I've only just purchased a server with Hostgator and now i'm really confused on how to install PHPvms on the server. Can someone please give me a hand to install phpVMS on hostgator. I'm really new to this, and i've also tried to use the manuals and guides and i got no success. I've been following phpvms for dummies and when it tells you to load install.php on your browser it doesn't work it gives me hostgator 404error. Please if anyone can help me it would be really appriciated. Cristiano
Last reply by edmundk, -
- 3 replies
- 2k views
Hello everyone I have a question .. how can I edit the signatures of the pilots? I talking about the banners which contain information about the VA Pilot (Name, Rank, Country, hours, Flights, income, etc.) Is there a guide available for it? Sorry about my english Regards Diego - ALV1007
Last reply by mseiwald, -
- 3 replies
- 2k views
Hi all, As our new updated site sits now, the webmaster (President) is the only one who receives new pilot join auto-emails. Can that be expanded so that multiple staff personnel get the auto-emails also? Not sure if there is a module for this out there...I havent seen any. Any constuctive help on this would be very helpful. Preston B. VP UPSVAC http://upsvac.com/new
Last reply by simpilot,
