RVF147 Posted October 30, 2013 Report Share Posted October 30, 2013 My pilot list in the Admin Center is empty (0 of 0 pilots). If you go to the site or any other tab that gives a list of the pilots, they show up. Any idea as to the cause of the empty pilot list? Cant seem to find the issue in the code... Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted October 31, 2013 Administrators Report Share Posted October 31, 2013 If you are using notepad or the built in cPanel code editor download your local.config.php file and open it in a different editor and look right before the opening php tag, you will probably find a random symbol. Remove it and the space and put it back on the site and it will probably fix the issue. Attached is an image of what I usually find with this condition. Quote Link to comment Share on other sites More sharing options...
RVF147 Posted October 31, 2013 Author Report Share Posted October 31, 2013 I checked and there appears to be nothing out of the ordinary. On another note Pilot manager can call all the pilots but just not the "Pilot List" section. Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted October 31, 2013 Administrators Report Share Posted October 31, 2013 The only page it affects is the js driven admin pilots page. Have you checked the file in a different editor than you usually use? If you want to strip the db info out of your local config if you would like and send me the file. Quote Link to comment Share on other sites More sharing options...
RVF147 Posted October 31, 2013 Author Report Share Posted October 31, 2013 yeah whatever works. Im not too handy in coding. I can pick apart just not very well haha. ill send you the file. I tried opening it in another program but didnt see anything different. Quote Link to comment Share on other sites More sharing options...
pedroportugal Posted October 31, 2013 Report Share Posted October 31, 2013 the same problema for me pilots,routes,airports does not appear anything. the first phpvms have to many errors Quote Link to comment Share on other sites More sharing options...
pedroportugal Posted November 1, 2013 Report Share Posted November 1, 2013 the same problema for me pilots,routes,airports does not appear anything. the first phpvms have to many errors problem solved change for php 5.2 all things work now Quote Link to comment Share on other sites More sharing options...
RVF147 Posted November 6, 2013 Author Report Share Posted November 6, 2013 Found the issue. After searching through each file in the "/admin" section, I located on the "action.php" file a line coded as: error_reporting(E_ALL ^ E_NOTICE); Deleted that line and in its place added: ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED); This fixed all errors I have been having with the admin panel. I seen a post earlier about this line of code to be added to other files but thought i'd try it out with this file and I guess that is all that was needed. Attached Picture shows what I did. 1 Quote Link to comment Share on other sites More sharing options...
Toyuko Posted June 21, 2014 Report Share Posted June 21, 2014 Hello My host updated my php version to 5.4 the other day however i fixed the errors regarding phpvms and php 5.4 and i also tried your fix, it fixed my flash charts however my pilot list is still empty. Can i get some assistance? http://prntscr.com/3uy7e5 http://prntscr.com/3uy7ic Quote Link to comment Share on other sites More sharing options...
Moderators mark1million Posted November 8, 2017 Moderators Report Share Posted November 8, 2017 On 06/11/2013 at 2:56 AM, RVF147 said: Found the issue. After searching through each file in the "/admin" section, I located on the "action.php" file a line coded as: error_reporting(E_ALL ^ E_NOTICE); Deleted that line and in its place added: ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED); This fixed all errors I have been having with the admin panel. I seen a post earlier about this line of code to be added to other files but thought i'd try it out with this file and I guess that is all that was needed. Attached Picture shows what I did. Yes good find, this caused a few issues Quote Link to comment Share on other sites More sharing options...
Chad Posted December 22, 2017 Report Share Posted December 22, 2017 The issue I had was jQuery was not loading because our site is running on "https" and jQuery was trying to load with "http". So just had to remove the "http:" in "core_htmlhead.php" (edit this file under the "admin" folder as well as the "core" folder) so it looks like this... <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.