Admin panel not working || 2.0

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

    • mimikri wrote:

      the code you sended is fine, i didn't found a mistake and tested it in version 1.8 and it's running flawlessly.
      Si pero eso error pasa cuando tienes versión del php alto...

      Carlos wrote:

      mano como puedo poner la pagina de mods
      No entiendo
      VERY SAD :/ :/ :/ :/
    • i tryed it with php 7.2.28, you use 7.2.31.
      try different php versions.
      find out in wich version the code broke first.
      look for the patchnotes of php to find out, what has changed in this version.

      due to it is an syntaxerror im not sure if it is versionbased.
      but if you think it is caused by the version of php you can find it out like described aboth.
    • LA PAGINA DE MODS ESA ES LA QUE QUIERO AGREGARLE A MI XNOVA PERO NO SE COMO
      Images
      • Screenshot_2020-05-24 Visión general - OGame - 2Moons(1).png

        21.17 kB, 270×283, viewed 298 times
    • mimikri wrote:

      i tryed it with php 7.2.28, you use 7.2.31.
      try different php versions.
      find out in wich version the code broke first.
      look for the patchnotes of php to find out, what has changed in this version.

      due to it is an syntaxerror im not sure if it is versionbased.
      but if you think it is caused by the version of php you can find it out like described aboth.
      Es que ya tu me distes esta solución anteriormente en un mensaje creado por mi...
      VERY SAD :/ :/ :/ :/
    • If the issue is the php version just add this code to the end of the .htaccess to use any php version you want to 5.2, 5.4, 5.6 etc up to the latest (this is valid for any project) just change the settings in the lines and save the .htaccess

      Options -Indexes

      # Use PHP52 as default

      AddHandler application/x-httpd-php56 .php

      <IfModule mod_suphp.c>

      suPHP_ConfigPath /opt/php56/lib

      </IfModule>

      or just with

      AddHandler application/x-httpd-ea-php73 .php (whatever version u need to use as long as u have it installed of course)


      works fine for me on every directory i can use whatever php version i want separated

      [Blocked Image: https://snipboard.io/uMIh7S.jpg]

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

    • hey im not sure were to place it.. i get 500 error
      where would i place it on the code below...thank you

      Brainfuck Source Code

      1. ----------------------------------------------------------------------
      2. # Better website experience for IE users
      3. # ----------------------------------------------------------------------
      4. # Force the latest IE version, in various cases when it may fall back to IE7 mode
      5. # github.com/rails/rails/commit/123eb25#commitcomment-118920
      6. # Use ChromeFrame if it's installed for a better experience for the poor IE folk
      7. <IfModule mod_headers.c>
      8. Header set X-UA-Compatible "IE=Edge,chrome=1"
      9. # mod_headers can't match by content-type, but we don't want to send this header on *everything*...
      10. <FilesMatch "\.(js|css|gif|png|jpe?g|pdf|xml|oga|ogg|m4a|ogv|mp4|m4v|webm|svg|svgz|eot|ttf|otf|woff|ico|webp|appcache|manifest|htc|crx|oex|xpi|safariextz|vcf)$" >
      11. Header unset X-UA-Compatible
      12. </FilesMatch>
      13. </IfModule>
      14. # ----------------------------------------------------------------------
      15. # UTF-8 encoding
      16. # ----------------------------------------------------------------------
      17. # Use UTF-8 encoding for anything served text/plain or text/html
      18. AddDefaultCharset utf-8
      19. # Force UTF-8 for a number of file formats
      20. AddCharset utf-8 .css .js .xml .json .rss .atom
      21. <IfModule mod_autoindex.c>
      22. Options -Indexes
      23. </IfModule>
      24. <IfModule mod_rewrite.c>
      25. RewriteCond %{SCRIPT_FILENAME} -d
      26. RewriteCond %{SCRIPT_FILENAME} -f
      27. RewriteRule "(^|/)\." - [F]
      28. </IfModule>
      29. <FilesMatch "(\.(bak|config|sql|fla|psd|ini|log|sh|inc|swp|dist)|~)$">
      30. Order allow,deny
      31. Deny from all
      32. Satisfy All
      33. </FilesMatch>
      34. # ----------------------------------------------------------------------
      35. # 2Moons: MultiUniverse support
      36. # ----------------------------------------------------------------------
      37. <IfModule mod_rewrite.c>
      38. RewriteEngine on
      39. RewriteRule uni([0-9]+)/?(.*)?$ $2 [L,QSA,E=UNI:$1]
      40. </IfModule>
      Display All