Jump to content

paladox2014

Members
  • Posts

    314
  • Joined

  • Last visited

Posts posted by paladox2014

  1. Hi yes that would be a good idea. Yes this idea white take a year or maybe. Couple of years but it could be a plan to fix the server MySQL and stop it going down every time and allow innodb to be used. But anyways those corrupted database doing work so if ip they doing work how can a user know if it is gone if the website doesent use it.

  2. Oh ok. Then i would suggest send the users email who have the damaged database requesting that can you delete it so the server can be repaired because your database is causing the server to not work. Just suggestion and yes i do know you have a lot of users.

  3. Ok but what I meant is Backup folder and then after fixing MySQL re upload the folder because that folder holds all the databases nothing else but makes sure it doesent override the default database in that folder.

  4. Hi I belive that resetting password on stevie is broken because my email is correct on it and it still hadent sent the email. my account is working now because staff at heliohost had to do it manually but reset should work on stevie if not it needs to be fixed please or create a script like you have on your homepage. and this problem may happen to johnny not sure since johnny is using a much updated version of cpanel.

  5. Hi mysql 5.1 is insecure accurding to this http://blog.cpanel.com/no-server-left-behind-removal-of-mysql-blockers/ you should update heliohost MySQL server to 5.1 or 5.5. and php 5.2 to 5.3 or 5.4. and then upgrade the wiki software so that It is using a supported release.

     

    Hi stevie mysql could be updated because if you look at https://dev.mysql.com/doc/refman/5.5/en/upgrading-from-previous-series.html it says the upgrader will attempt to repair any tables.

  6. I now do not belive object cache is the reason. On stevie it seems to be able to generate hasing for resourceloader but on johnny it wont could you follow what you did on stevie on johnny please.

     

    http://searchsqlserver.techtarget.com/definition/hashing

     

    Problem with this code

     

    public function getVersionHash( ResourceLoaderContext $context ) {

    // Cache this somewhat expensive operation. Especially because some classes

    // (e.g. startup module) iterate more than once over all modules to get versions.

    $contextHash = $context->getHash();

    if ( !array_key_exists( $contextHash, $this->versionHash ) ) {

     

    $summary = $this->getDefinitionSummary( $context );

    if ( !isset( $summary['_cacheEpoch'] ) ) {

    throw new Exception( 'getDefinitionSummary must call parent method' );

    }

    $str = json_encode( $summary );

     

    $mtime = $this->getModifiedTime( $context );

    if ( $mtime !== null ) {

    // Support: MediaWiki 1.25 and earlier

    $str .= strval( $mtime );

    }

     

    $mhash = $this->getModifiedHash( $context );

    if ( $mhash !== null ) {

    // Support: MediaWiki 1.25 and earlier

    $str .= strval( $mhash );

    }

     

    $this->versionHash[ $contextHash ] = ResourceLoader::makeHash( $str );

    }

    return $this->versionHash[ $contextHash ];

    }

     

    problem code is if ( !array_key_exists( $contextHash, $this->versionHash ) ) {

     

    if I remove ! from if ( !array_key_exists( $contextHash, $this->versionHash ) ) {

    which makes it if ( array_key_exists( $contextHash, $this->versionHash ) ) {

     

    it works.

     

    but I shoulden do that read comment bellow from another user on gerrit.

     

     

    This patch can't possibly fix anything. This method calculates the version hash of a javascript module. To avoid re-computation, it saves the hash after generating it the first time. By removing this "!", it will never compute the version and always returns "null".

    "null" is not a valid version and would never change, and this code will never update once deployed.

  7. Hi please can you enable object cache because i get this error on johnny. stevie has it enabled and doesent show that warning. please fix it.

     

    Warning: Could not find APC, XCache or WinCache.

    Object caching is not enabled.

     

    and a recent update to mediawiki 1.26 wmf 7 in resouceloader requires object caching to enable javascript. I doint get this error on stevie and javascript works for me there because object caching is enabled.

     

    username = pal2015 and website = wikisaur.tk

     

    Hi which cache software do you use on stevie and use that software on johnny please.

  8. Hi i still havent recived my password. Could you change it and give it to me please. it seems it doesewnt want to send password to my email i did delete my account last week and then recreated it using username paladox1.

     

    Yes it was fine you changed my permission I am not saying it wasent but what I mean is it is not sending a password reset email to my email nor is it when you do it.

×
×
  • Create New...