Jump to content

simpilot

Administrators
  • Posts

    2773
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by simpilot

  1. Is it all pilots or just certain ones? If it is just certain ones possibly they have no rank or a rank without a rank image.

    Also, disable the rank image inclusion in the signature to see if it will process it without it to see if the issue may actually be deeper than what is being seen.

    Config::Set('SIGNATURE_SHOW_RANK_IMAGE', false);
    

  2. You are trying to use the mysql extension which is being deprecated in php 7 and most hosts are not including it in the php build. You will have to change to mysqli

    In your local.config.php file change

    define('DBASE_TYPE', 'mysql');
    

    to

    define('DBASE_TYPE', 'mysqli');
    

  3. Both are css issues. Somewhere you have defined white as the default color for anchor tags, probably so they will show up in the menu and footer. You will have to assign anchor link colors for the individual div's.

    Everything to the side is most likely a missed container tag or something of the like. Kind of guessing with only a picture to look at.

    • Like 1
  4. Have you tried any of this with the default crystal skin? Looking at the errors on your contact page and schedules page it looks to me like the currently in place skin has not been adapted from older versions of phpVMS.The event stop error should not be affecting it but it could be, I am thinking that it has something to do with the template variables. You could also try changing line 104 in core/classes/CodonEvent.class.php from

    public function hasStop($eventname)
    

    to

    public static function hasStop($eventname)
    

    This may get you past this particular error but it would not solve the why the pirep failure is happening.

  5. If you are on shared hosting you will most likely have to open a support ticket with them to change it, if they will. It may be possible to run a custom php.ini file in the root of your site but most shared hosting providers have this disabled. If you have root access to the server you can change the setting in php.ini.

    short_open_tag=On
    

    You can also try setting it in your local config using the php directive,

    ini_set ('short_open_tag', 'on');
    

    You can also try to set it in an .htaccess file if all else fails.

    Personally, I would just use my editor and do a mass replace of <?(space) with <?php

  6. i have got to the last part of the installer and got this error when i got to the index.php

    Fatal error: Cannot re-assign auto-global variable _FILES in /home/heartsf1/public_html/core/common/PilotData.class.php on line 436

    All help would be great

    Thanks

    Looks like the same error that you get when you are trying to run an older version of phpVMS on a server running a php version greater than 5.4. There are a number of ways to fix the issues in the forums, you just need to decide which one fits you best.

  7. i get this when i send pireps i have all updates to centraldataclass and prepdataclass

    Successfully sent message! (Server said "Updated 0 of 1572")

    it doesnt update any and now my rank on vacentral is 132 when it was 14

    What is the website?

    Are you sure you have changed the data format for vacentral to xml? This is what the issue has been on every one I have worked on with this condition so far.

×
×
  • Create New...