Jump to content

simpilot

Administrators
  • Posts

    2773
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by simpilot

  1. I have responded to your ticket some hours ago but the first item is simply that the entrance exam module uses Google recaptcha and the version I have updated uses Google noCaptcha. The module just needs to be changed to adapt to that and if you will send me your files (attach them to a ticket) I will adapt them for you.

    The second issue seems to be an issue with your server or the script being stopped for some reason. (mySql server has gone away) Are there any error logs from this?

  2. Still having the same issue as of Sunday 11h49z

    The DNS seems to be fully propogated and I have cleaned up a few of the links and such. Most every active va is sending data and it is being posted. I also believe I have fixed the bug that was causing many live flights to not be shown on the map. I did however set the time limit to 3 minutes, meaning that if a flight has not updated in the last 3 minutes it is dropped form the map, there is just too many to keep them very long.

    If you can give me the IP address of your server I can make sure it is not blocked in the firewall for some reason.

    (Edit) - I just checked what I think is your IP (204.246.51.163) and it is not in any firewall setting. - Are you getting any errors in the logs?

  3. I have tried to go back and compare the differences between pages that work correctly and those that don't on your site. The only commonality I can find is that the page title is not defined in the controller of the pages that you are having issues with. Can you try opening up /core/modules/Pilots/Pilots.php and add in the command to the top and see if the error goes away for the pilot roster page?

    Existing should be

    class Pilots extends CodonModule
    {
    
      /**
      * Pilots::index()
      *
      * @return
      */
      public function index()
      {
    

    add the title into the class like below

    class Pilots extends CodonModule
    {
      public $title = 'Pilots';
    
      /**
      * Pilots::index()
      *
      * @return
      */
      public function index()
      {
    

  4. The first part of the log looks like the mysql server was down or could not be reached at some point in time.

    There should be server logs available in your cpanel if they are not in the root of your site, or your host should be able to supply them.

    I really think that you may want to look at a different hosting platform with all the 503 errors and mysql server being down, among other things. It looks like your site is having some permissions issues on the server as well right now.

    post-198-0-37187600-1431219772_thumb.png

  5. Have you enabled phpVMS debugging, if so what errors are you seeing?

    What are the newest errors in the server error log? The ones shown above really do not tell much of a story.

    I tried going to your site and get a 503 error on about every third page load, which I believe is more of a server resource issue than a software issue.

×
×
  • Create New...