Jump to content

simpilot

Administrators
  • Posts

    2773
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by simpilot

  1. Tough to say without a little more information - When I go to your site the module is not even installed.
  2. You should be able to change the order of the PIREP submission process to not submit to vaCentral till after you accept/reject them, I have no idea how your system is setup. As far as your second comment/complaint, I am going to tell/ask you as I have others in the past, what is fair for airline rankings and how should rankings be calculated? There is a thread about landing rates here -> http://forum.phpvms.net/topic/23100-greased-landings-unsafe/ and a specific post here -> http://forum.phpvms.net/topic/23100-greased-landings-unsafe/#entry122142 that asks the questions I need answered with valid answers.
  3. I am not sure what I am going to do with the entire ranking system, it seems there are more complaints then ever. It may entail an entire rewrite on my part.
  4. The PIREPs must be being submitted to vaCentral prior to your rejection as in the last five submitted there is one with a landingrate of -877.
  5. The area of the rankings you are in has very little separation, meaning that small point changes can result in large changes in ranking. By the looks of the recent history -> http://www.vacentral...nk_history/2080 <- all of the metrics for your airline have been dropping. The current calculation is shown below It looks like you are submitting flights with the last one being today -> http://www.vacentral.net/listings/detail/axn_alexandairvirtual It looks like in the last two days your points have gone from 1332 to 1131 due to the change in the metrics in that time period.
  6. What are you trying to do? This is basically a small php framework like Codon that phpVMS is based on.
  7. Looks like an issue with the PIREP submission process to me. Have you made any changes or modifications to that process?
  8. You can find the fix for it here -> https://github.com/DavidJClark/phpvms_5.5.x/commit/319f8b35c4ac7b4c9eb5b56457662c122f844db3
  9. Try creating a stand alone php file and see if you can simply send an email. If you can not from a simple script then it is something on the server end, not phpVMS. <?php ini_set( 'display_errors', 1 ); error_reporting( E_ALL ); $from = "emailtest@YOURDOMAIN"; $to = "YOUREMAILADDRESS"; $subject = "PHP Mail Test script"; $message = "This is a test to check the PHP Mail functionality"; $headers = "From:" . $from; mail($to,$subject,$message, $headers); echo "Test email sent"; ?>
  10. There is no problem with the system, it is ranking as the code was written. The ranking calculation is as follows at this time: The old calculation system really based a very high percentage of the ranking on the longevity of the airline, meaning a site that was online for a long time even if it is mainly dormant ranked higher than a newer site that was active, which I did not agree with. As was being shown by the ranking there was no real way for a newer va to make a presence in the rankings. I have asked numerous times for better design but hear very little until someone's airline is lower than they would like. The some of the very few responses I have gotten are here -> http://forum.phpvms....ly/#entry120811 I am already looking at the active pilots feature and I understand the complaint from your side. The complaint from my side, and many others, is why does the airline with 500+ pilots on the roster that 480 of them have not flown anytime recently get a better ranking than a small va with a small but active pilot base? Complaints that I am promoting unsafe flight conditions by using a landing rate factor are also being thrown around. More info on that here -> http://forum.phpvms....andings-unsafe/ <- there is mention of the landing rate factor "perverting" the ranking. Wouldn't having 500 pilots with 5 active be the same thing? I am also receiving complaints about the likes factor, even though its reflection on the overall score is tiny in my opinion. I did this to try and gain some traction in creating a community as the site was originally intended.
  11. If you are using an older version it is probably the form url in the search form template and the use of the action url instead of the standard. You can see the difference here -> https://github.com/n...archform.tpl#L2 https://github.com/D...archform.php#L3
  12. Does this happen to all pilots or just certain ones? Does this happen in all browsers? Do you have cookies blocked? What is the url when you land on the blank pages (both login and logout)?
  13. Check firebug for js errors. If it is a custom skin it is probably a conflict for the refresh. The zoom can be changed in the template itself.
  14. Have you thought about posting it to GitHub? That way it is readily accessible and if people find issues than can send pull requests with the fix.
  15. Search and destroy -> http://forum.phpvms.net/topic/18860-i-have-a-xxxxxxtpl-file-not-found-error/
  16. Is there an actual address created on your site? Some servers will not send an email from a non-existent address. For example if you are using "noreply@yoursite.com" there must be an email account set up with that address on the server.
  17. If you can perform the lookup function in the add airports section of the admin panel then the upload should work, I am saying should because I have no idea what the csv actually looks like. Can you use the lookup function in add airports for LGTP? Does it return the info or an error? If you can use the lookup function then there is an issue with your csv file. If you can not use the lookup function when manually adding the airport then there is an issue with your api server config most likely. I just tried a lookup using LGTP in my test instance and the airport is there and populates the fields correctly.
  18. What was the result from adding this? -> http://forum.phpvms.net/topic/23334-unable-to-send-pireps-to-the-vacentral-server/#entry123084
  19. I am guessing at this point but it is probably a difference in db table structure or a line of code missing somewhere. Have you enabled error logging and see if anything pops up there?
  20. You can try adding this between line 39 and 40 of chartercenterdata.class.php ORDER_BY ".TABLE_PREFIX."schedules.flightnum DESC If you need more help please open a ticket here -> http://noticeablegroup.com/
  21. In the version I am maintaining the twitter code starts here -> https://github.com/DavidJClark/phpvms_5.5.x/blob/master/core/common/ActivityData.class.php#L98 I am not even sure it is still supported at Twitter. The library packaged with the site is at least two years old.
  22. makes me think there is an empty field for some reason, or there is some piece of data that possibly has a single quote in it that is not being escaped before hitting the database.
  23. Have you added this line to your dashboard controller? https://github.com/DavidJClark/phpvms_5.5.x/blob/master/admin/modules/Dashboard/Dashboard.php#L36
  24. My guess is that your free host does not have the option enabled. I would contact them but they will most likely tell you to upgrade to paid hosting. btw: I still can not get to your site.
×
×
  • Create New...