FTP – chyba Internal Server Error

Vyřešeno788 zhlédnutíWebhosting
0

Dobrý den,

prosím o info jestli je vše v pořádku nainstalováno, či je potřeba ( a jak opravit ).

Jedná se mi o to že chci mít forum na své doméně s webhostingem a po tomto nainstalování mi píše po otevření www. stránek v prohlížeči toto:
Internal Server Error
Pri zpracovani pozadavku doslo k vnitrni chybe. Pravdepodobne se jedna o chybu v .htaccess souboru.

Ctete instrukce v nasi znalostni bazi: Chyba 500 – Internal Server Error

Prosím o radu jak vše zprovoznit.

Jsem absolutní laik a dělám to poprvé, tak prosím k přihlédnutí k této skutečnosti.

Trlica F.

Role: Zákazník
Otázka je uzamčena pro nové odpovědi.
RM130195 Vybral nejlepší odpověď 19. 11. 2020
0

Dobrý den,

zakomentujte v .htaccess (dejte před znak #)

Options -MultiViews

Toto pravidlo je u u wedos zakázané.

RM130195 Vybral nejlepší odpověď 19. 11. 2020
0

Ještě zasílám druhé foto, které se nějak nevložilo

Role: Zákazník
MV270050 Změnil status na publikováno 30. 10. 2020
0

u druhé fotky se jedná o adresář WWW

Role: Zákazník
MV270050 Změnil status na publikováno 30. 10. 2020
0

Dobrý den,

o jakou doménu se prosím jedná? O jakou platformu se jedná? Můžete sem prosím vložit váš obsah souboru .htaccess pro případnou kontrolu?

MV270050 Změnil status na publikováno 30. 10. 2020
0

Dobrý den jedná se o doménu: covidforum.cz

phpBB – stažena nejnovější verze

Obsah .htaccess

  1. <IfModule mod_rewrite.c>
  2. RewriteEngine on
  3. #
  4. # Uncomment the statement below if URL rewriting doesn’t
  5. # work properly. If you installed phpBB in a subdirectory
  6. # of your site, properly set the argument for the statement.
  7. # e.g.: if your domain is test.com and you installed phpBB
  8. # in http://www.test.com/phpBB/index.php you have to set
  9. # the statement RewriteBase /phpBB/
  10. #
  11. #RewriteBase /
  12. #
  13. # Uncomment the statement below if you want to make use of
  14. # HTTP authentication and it does not already work.
  15. # This could be required if you are for example using PHP via Apache CGI.
  16. #
  17. #RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
  18. #
  19. # The following 3 lines will rewrite URLs passed through the front controller
  20. # to not require app.php in the actual URL. In other words, a controller is
  21. # by default accessed at /app.php/my/controller, but can also be accessed at
  22. # /my/controller
  23. #
  24. RewriteCond %{REQUEST_FILENAME} !-f
  25. RewriteCond %{REQUEST_FILENAME} !-d
  26. RewriteRule ^(.*)$ app.php [QSA,L]
  27. #
  28. # If symbolic links are not already being followed,
  29. # uncomment the line below.
  30. # http://anothersysadmin.wordpress.com/2008/06/10/mod_rewrite-forbidden-403-with-apache-228/
  31. #
  32. #Options +FollowSymLinks
  33. </IfModule>
  34. # Apache content negotation tries to interpret non-existent paths as files if
  35. # MultiViews is enabled. This will however cause issues with paths containg
  36. # dots, e.g. for the cron tasks
  37. <IfModule mod_negotiation.c>
  38. Options -MultiViews
  39. </IfModule>
  40. # With Apache 2.4 the „Order, Deny“ syntax has been deprecated and moved from
  41. # module mod_authz_host to a new module called mod_access_compat (which may be
  42. # disabled) and a new „Require“ syntax has been introduced to mod_authz_host.
  43. # We could just conditionally provide both versions, but unfortunately Apache
  44. # does not explicitly tell us its version if the module mod_version is not
  45. # available. In this case, we check for the availability of module
  46. # mod_authz_core (which should be on 2.4 or higher only) as a best guess.
  47. <IfModule mod_version.c>
  48. <IfVersion < 2.4>
  49. <Files „config.php“>
  50. Order Allow,Deny
  51. Deny from All
  52. </Files>
  53. <Files „common.php“>
  54. Order Allow,Deny
  55. Deny from All
  56. </Files>
  57. </IfVersion>
  58. <IfVersion >= 2.4>
  59. <Files „config.php“>
  60. Require all denied
  61. </Files>
  62. <Files „common.php“>
  63. Require all denied
  64. </Files>
  65. </IfVersion>
  66. </IfModule>
  67. <IfModule !mod_version.c>
  68. <IfModule !mod_authz_core.c>
  69. <Files „config.php“>
  70. Order Allow,Deny
  71. Deny from All
  72. </Files>
  73. <Files „common.php“>
  74. Order Allow,Deny
  75. Deny from All
  76. </Files>
  77. </IfModule>
  78. <IfModule mod_authz_core.c>
  79. <Files „config.php“>
  80. Require all denied
  81. </Files>
  82. <Files „common.php“>
  83. Require all denied
  84. </Files>
  85. </IfModule>
  86. </IfModule>
Role: Zákazník
MV270050 Změnil status na publikováno 30. 10. 2020