Please Help

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • Please Help

      After regist this error


      REQUEST ERROR

      Dear player, your request could not be completed due to a connection error or a game issue. This information is sent to our admins via Support Ticket and you will be contacted shortly so we can help you.

      This issue happened to Administrator

      Information: Message: Trying to access array offset on value of type bool

      File: /includes/pages/game/ShowOverviewPage.class.php [Line: 296]
      URL: war-universe.space/uni1/game.php
      PHP: 8.0.15 cgi-fcgi
      MySQL: mysqlnd 8.0.15
      Game Version: 2.0.1

      Debug Backtrace:
      #0 /includes/pages/game/ShowOverviewPage.class.php(296): errorHandler(2, 'Trying to acces...', 'FILEPATH ...', 296)
      #1 /game.php(57): ShowOverviewPage->show()
      #2 {main}

      The post was edited 2 times, last by Nykus ().

    • you are tring to acces array offset like $array['something'] at line 296 of ShowOverviewPage.class.php, in other words you get boolean ( true or false instead of an array )
      ogniter.net

      for a slightly better version of steemnova

      github.com/koraykarakus/steemnova-1.8-x
    • REQUEST ERROR

      Dear player, your request could not be completed due to a connection error or a game issue. This information is sent to our admins via Support Ticket and you will be contacted shortly so we can help you.

      This issue happened to Administrator

      Information: Message: Trying to access array offset on value of type bool

      File: /includes/pages/game/ShowOverviewPage.class.php [Line: 296]
      URL: war-universe.space/uni1/game.php
      PHP: 8.0.15 cgi-fcgi
      MySQL: mysqlnd 8.0.15
      Game Version: 2.0.git

      Debug Backtrace:
      #0 /includes/pages/game/ShowOverviewPage.class.php(296): errorHandler(2, 'Trying to acces...', 'FILEPATH ...', 296)
      #1 /game.php(57): ShowOverviewPage->show()
      #2 {main}
    • $this->assign(array(
      ############### 1.17.6 Mothership vars
      'VerifyMothership' => $USER['mothership'],
      'FlyingMothership' => $FlyingMothership,
      'MothershipCount' => $MothershipCount,

      'locationID' => $MothershipLocation['id'], is this line 296

      'locationName' => $MothershipLocation['name'],
      'locationG' => $MothershipLocation['galaxy'],
      'locationS' => $MothershipLocation['system'],
      'locationP' => $MothershipLocation['planet'],
    • you need to find first line that starts with this variable $MothershipLocation, the problem is probably you cannot get this variable from database so you get 'false' instead of this variable.
      ogniter.net

      for a slightly better version of steemnova

      github.com/koraykarakus/steemnova-1.8-x
    • There is no false involved. That variable ( $MothershipLocation ) returns null because it could not be set, and when it tries to get ['id'] of null , throws that error. Try to debug and see why that variable can't be set.