Support Forum
Any questions or bug reports go here.
7149 topics in this forum
-
- 0 replies
- 1.4k views
Hi. We are using a custom KAcars for PIREPS We noticed that all charter flights (non-scheduled) report zero revenue. I browsed through the PHPVMS code (in PIREPDATA.class.php) and as far as I can tell it is because the PIREP flight type column contains "P" for passenger flight instead of "H" for charter flights. I think will cause a ticket price of 0 (zero) to be used and thus zero gross / revenue. Until we get things cleared with the KAcars developer, if we manually change the P to H is there a way to recalculate the revenue for these charter flights? I noticed some code (function) that was commented out (runs from maintenance menu) Any feedback appreciated. Thank…
Last reply by KAC155, -
- 0 replies
- 873 views
Charter flights are always "delayed", as Schedules flights are normal in flight status. What should I do for charter flights to have their normal status? <?php $schedule = SchedulesData::getScheduleByFlight($pirep->code,$pirep->flightnum); $fltime = explode(".", $schedule->flighttime); $minstar = substr($fltime[1],0,1); $minstarmin = substr($fltime[1],1,2); $flmin = $minstar * 10; $flhou = $fltime[0] * 60; $flminu = $flhou + $flmin + $minstarmin; …
Last reply by garcez, -
- 3 replies
- 2k views
Hi all: I would like to ask if is possible to send a report of a non schedulled flight with fspassengers. In some places I've read that you must to put the correct flight number when you starts the flight in the config of fspassengers so then you can report it, but if I try to put some other number of a non eschedulled flight I can't report it. How can I make to send charter flights reports? Thanks a lot for the help!
Last reply by Nabeel, -
- 0 replies
- 1.3k views
I'm looking at the forum and would like to suggest an idea at all. It would be possible to create a system linking the Pilot Shop The pilot using his money to buy a charter flight? Example First Flight - Cessna 172 - Flight taking off from SBSP to SBKP, take the opportunity to fly on a visual flight through the city of sao paulo in Brazil. Buy Now $2.500 Second Flight - Boeing 737-800 - Meet the Lisbon flight and buy now knows the best landscapes of Portugual bound LEMD. Buy Now $5.000 Third Flight - Boeing 747-400- Now make a TOUR leaving LPPT bound for SBGR with scale SBRF, come experience this thrill aboard this magnificent aircraft - Buy Now $20.000 I think it …
Last reply by Fernando, -
- 1 follower
- 6 replies
- 2.2k views
Hello, I'm trying to install the charter system here: http://forum.phpvms.net/topic/8045-charter-flight-system-v110-updated/ I've followed the instructions, but with little success. When you log into my site and go the the charter center: http://bluehawkvirtual.net/index.php/charter An error pops up: Fatal error: Call to undefined method SchedulesData::countCharterSchedules() in /home/bluehawk/public_html/core/templates/charter/ops_schedules.tpl on line 65 I've looked and looked and I cannot seem to find how to fix this. If it helps, you can login to the site with this test account info: Username: BHK0087 Password: qwerty5 Thanks in advance.
Last reply by tobyrice01, -
- 0 replies
- 960 views
I have a simple custom pirep field, a drop down yes/no box which asks if the flight is a charter rather than a scheduled flight. I was wondering how i could add some code to find the ratio between the the accepted pireps to display in the flight stats admin side? ie 60% scheduled, 40% charter.
Last reply by Alex, -
- 2 replies
- 1.7k views
Hi, Your system is currently on trying on our website, but it unfortunately doesn't answer to our wishes because it's planned for the virtual airlines proposing fixed and scheduled flights. Our virtual airline is based on the charter, and our leitmotiv is: “all around the world, where you want to fly”. It means that our piloes has free to fly towards the destinations they want to. The problem is that your system doesn't envisage the possibility of the charter flights and obliges to create a scheduled flight before being able to submit a PIREP. It's unmanageable because of multitude destination possibilities, knowing that our pilots can do several stopovers before returni…
Last reply by hd34, -
- 5 replies
- 1.8k views
Hi everyone I hate to be another one asking "when is it", but is there a time frame for the next release version, as I'd like to get Xacars and admin rights included in the site, but don't really want to go down the beta route as it's soon to be a live site? Also, whats the status on charters? As we're a small airline we've only a limited number of destinations, so having charter support would be a definite bonus for us. Many thanks Will
Last reply by Nabeel, -
If I want to put my OWN link in for charts for the Briefing page....I see thte database has a place to put a link to them, however, it always goes back to the airnav site!!??!
Last reply by Nabeel, -
- 3 replies
- 2k views
Hello all, who can I change background color to my color, don't white! Thanks!
Last reply by Flightguy123, -
- 0 replies
- 1.1k views
hello can someone help me with the Highcharts? i have this code and i wanted to implement it in my pireps view report <?php if(isset($pirep)) $pirep = $pirep; /* pull data from rawdata */ $res = @unserialize($pirep->rawdata); if($res !== false) { $pirep->rawdata = $res; unset($res); } $json = ''; if(is_array($pirep->rawdata['points'])) { foreach($pirep->rawdata['points'] as $point) { $time = str_replace('[', '', $point['time']); $time = str_replace(']', '', $time); $time = str_replace('l', '', $time); $alt = $point['alt']; $gs = $…
Last reply by Laurent, -
- 0 replies
- 1.4k views
HI, I have to modify the file "shedule_briefing.tpl", so that it loads the charts of the airports in JPG format I have inside the directory PHPVMS/IMAGES/CHARTS. Not be much PHP, would appreciate that so they explain me very well Thank you
Last reply by polirom, -
- 1 follower
- 8 replies
- 2.3k views
In the default phpVMS 5.5.2 (Simpilot version), there is a file in 'core/common' named 'ChartsData.class.php - it's not in version 2.1.934. I see in that file a reference to - #replacement functions for OFC charts - Google Charts API - simpilot #load Google Chart Wrapper library (3rd party) require CORE_LIB_PATH . '/gChart/gChart.php'; - at the top of the file. Is there something else I need to download/install for ChartsData.class.php to function? Seems this file provides a replacement for OFC (Open Flash Chart) functionality. What exactly does this file do and is it linked to specific default modules? ______________________________ My main reason for a…
Last reply by ProAvia, -
- 1 follower
- 1 reply
- 1.1k views
Is there a way to check if a schedule is bid on with PHP? Say I bid on schedule #979 and I didn't bid on #980. Is there some array or something to tell me which schedules I did or did not bid on? I don't want to find out which schedules are bid on by every person. I just need to find out which schedules are bid on for my single pilot ID in my PHP code.
Last reply by Parkho, -
- 2 replies
- 1.6k views
Is there a way to check to see if a user is currently in flight? Like an if statement: if user is in flight do this else error: you are currently not in flight something like that??? Thanks
Last reply by Strider, -
- 0 replies
- 1.5k views
Hello, i have open run-test.php and there is : phpVMS API Unit Tests Core API Tests Checking geonames server Fail: PIREP Testing -> testRetrieveAirport -> Not equal expectation fails [boolean: false] matches at [/public_html/site/fsx/phpvms/unittest/tests/ops_test.php line 26] Checking phpVMS API server Fail: PIREP Testing -> testRetrieveAirport -> Not equal expectation fails [boolean: false] matches at [/public_html/site/fsx/phpvms/unittest/tests/ops_test.php line 34] Exception: PIREP Testing -> testRetrieveAirport -> Unexpected PHP error [Trying to get property of non-object] severity [E_NOTICE] in [/public_html/site/fsx/phpvms/core/common/Ope…
Last reply by massilia68, -
- 0 replies
- 844 views
My VA, flycaribbeanva.com, has had an email from the provider which says: Now I can't file pireps, edit routes or anything. Is there someone who is willing to help me get my site up and running again? Our webmaster quit and we don't have the knowledge ourself. It is using phpvms 5.5.2
Last reply by JohanVLC, -
- 4 replies
- 1.9k views
I am having issues filing pireps with a new installation of phpVMS, after running the dbtest.php I encounter this error. I seem to be missing a file? After looking through and downloading phpvms again I cannot find the file, even on github. What else can I do to solve this error. Thanks.
Last reply by t_bergman, -
- 0 replies
- 1.2k views
Hello everyone! I'd like to know what code I need to let my pilots choose their aircraft in the schedule briefing because the calculation of fuel depends on the aircraft. I've tried that but it's not good! <dd> <select name="aircraft" id="aircraft"> <option value="">Si l'appareil avec lequel vous avez volé n'est pas dans la liste cliquez sur AUTRE.</option> <?php foreach($allaircraft as $aircraft) { $sel = ($_POST['aircraft'] == $aircraft->name || $bid->registration == $aircraft->registration)?'selected':''; echo '<option value="'.$aircraft->id.'" '.$sel.'>'.$aircraft…
Last reply by thomas2360, -
- 6 replies
- 1.7k views
Hello, i would like to change the way we insert the airports when adding a new schedule. I would prefer to type the ICAO instead of choosing from the drop down menu. Any idea how to change the code in phpvms admin?
Last reply by Nabeel, -
It seems at times that we are caught in a vicious circle. One issue fixed, the bids are jacked, other issue fixed, acars is jacked, fix this, 3 other issues are created. I am not trying to be an a**hole, but rather than adding other s***, from here on out why not concentrate on make the current build solid. Why not use this thread to post all current issues and see where things stand. What I am seeing so far: Manual reports aren't working The bid system is not working properly, schedules randomly disappear.
Last reply by Nabeel, -
Hello, Please guide me how can I just display the city name in live flight departure board. I want that i just display the departure city and arrival city instead of departure airport and arrival city. Thanks in advance.
Last reply by freshJet, -
Anyone else have this problem? It seems anywhere there is an on my pages it puts a <?> in its place.
Last reply by Nabeel, -
- 14 replies
- 3.5k views
Is there any way to change the CKeditor to the latest version of CKeditor with more features? http://ckeditor.com/ thank you
Last reply by tutmeister, -
- 1 reply
- 1.4k views
Hi I use Chinese language on my website, I edited the "page encoding" to utf-8 so I can type Chinese on the web, however when I using Ckeditor, I typed Chinese character but it shown garbled characters on the website, is there anyone know how to solve this problem? thanks
Last reply by StartVM, -
- 4 replies
- 1.7k views
Hello, I'm just about ready to import my huge 3400 routes into my database. The last thing I need to edit is my aircraft and the flight level. I'm a little confused because there seems to be conflicting instructions about what to add to the "aircraft" column in the import template. Look at number 2 and 6 bolded below. To me, I would think I'd need to do number 6, not number 2? 1. The airline code must be added, or import will fail 2. The aircraft must be added, use the "Name" entered, not the fullname or ICAO 3. You can leave out the header, but if it is there, check off the box 4. All of the columns can be there, but only the route, leg, distance…
Last reply by Nabeel, -
- 0 replies
- 888 views
Hi, i try to use the API for the pilot stats Show pie chart for all of the aircraft flown by a certain pilot. AircraftFlownGraph() But i get this error: Fatal error: Class 'googleChart' not found in /var/www/web1112/html/va/core/common/StatsData.class.php on line 383
Last reply by CedGauche, -
- 2 followers
- 3 replies
- 3.2k views
Hi guys. I installed phpvms and when i try to send a Mass email i receive the message below. Anyone can help me? My local.config.php is # Email Settings Config::Set('EMAIL_FROM_NAME', 'Vatsim Brasil Airlines'); Config::Set('EMAIL_FROM_ADDRESS', 'noreply@vatsim.net.br'); Config::Set('EMAIL_USE_SMTP', true); # Add multiple SMTP servers by separating them with ; Config::Set('EMAIL_SMTP_SERVERS', 'smtp.sendgrid.net'); Config::Set('EMAIL_SMTP_PORT', '587'); Config::Set('EMAIL_SMTP_USE_AUTH', true); Config::Set('EMAIL_SMTP_USER', 'user'); Config::Set('EMAIL_SMTP_PASS', 'pass'); AH01071: Got error 'PHP message: PHP …
Last reply by Parkho, -
- 0 replies
- 1.1k views
I am really having issues with this. I am wanting to put the table on one part of the page and the map on another. Every time I try to move them around the map just doesn't show. Help appreciated Jon
Last reply by Jon, -
- 2 replies
- 1.8k views
After the clean install, I can not get access to the admin center - reply with error "An Error Was Encountered Please login first" ( I have tried every combination & possibility I could come up with ) This is the procedure I followed .. 1. Downloaded phpVMS 2. Created a folder http://www.'mywebsite'.co.za/phpVMS 3. Uploaded the extracted files to above with FileZilla 4. Created a database with mySQL v5.3.3 that I called "acars_db1" 5. Created the user/passw as - "acarsadmin" & "admin1234" 6. Through FileZilla I confirmed the file permissions as per the tutorial (Site owner had all 3 ticked & the other two users ony had the 1st & 3rd ticked) 7.…
Last reply by Smokey,