Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> [HTML][PHP]PHPBYPRZEMO - błąd z panelem admina., Panel admina nie działa, po przeniesieniu forum.
miras
post
Post #1





Grupa: Zarejestrowani
Postów: 1 004
Pomógł: 9
Dołączył: 18.01.2011
Skąd: Siedlce

Ostrzeżenie: (30%)
XX---


Witam, mam problem - przenosiłem ostatnio forum phpbyprzemo na inny serwer, wszystko jest ok, wsztstko działa poza panelem admina, po zalogowaniu do panelu admina wywala taki błąd: http://ss-host.pl/images/ss.gif
Go to the top of the page
+Quote Post
 
Start new topic
Odpowiedzi (1 - 2)
jaslanin
post
Post #2





Grupa: Zarejestrowani
Postów: 511
Pomógł: 143
Dołączył: 13.03.2010
Skąd: Jasło

Ostrzeżenie: (0%)
-----


sprawdź czy pliki htaccess są poprawnie ustawione

sprawdź logi błędów apache, tam powinno być info dlaczego wystąpił wewnętrzny błąd serwera
Go to the top of the page
+Quote Post
miras
post
Post #3





Grupa: Zarejestrowani
Postów: 1 004
Pomógł: 9
Dołączył: 18.01.2011
Skąd: Siedlce

Ostrzeżenie: (30%)
XX---


htaccess:

[APACHE] pobierz, plaintext
  1. RewriteEngine on
  2.  
  3. #RewriteBase /forum
  4.  
  5. RewriteRule ^cat([0-9]*)\.htm$ ./index.php?c=$1 [L,QSA]
  6. #
  7. RewriteRule ^(forum|.*-vf)([0-9]+)-([0-9]+),([0-9]+)\.htm$ ./viewforum.php?f=$2&topicdays=$3&start=$4 [L,QSA]
  8. RewriteRule ^(forum|.*-vf)([0-9]+),([0-9]+)\.htm$ ./viewforum.php?f=$2&start=$3 [L,QSA]
  9. RewriteRule ^(forum|.*-vf)([0-9]+)\.htm$ ./viewforum.php?f=$2 [L,QSA]
  10.  
  11. RewriteRule ^prev_topic/([0-9]+)\.htm$ ./viewtopic.php?t=$1&view=previous [L,QSA]
  12. RewriteRule ^next_topic/([0-9]+)\.htm$ ./viewtopic.php?t=$1&view=next [L,QSA]
  13. #
  14. #
  15. RewriteRule ^(topics[0-9]*/)?(.*-vt)?([0-9]+)-([0-9]+)-([a-zA-Z]+),([0-9]+)\.htm$ ./viewtopic.php?t=$3&postdays=$4&postorder=$5&start=$6 [L,QSA]
  16. RewriteRule ^(topics[0-9]*/)?(.*-vt)?([0-9]+)-([0-9]+)-([a-zA-Z]+)-([a-zA-Z0-9]+),([0-9]+)\.htm$ ./viewtopic.php?t=$3&start=$7&postdays=$4&postorder=$5&highlight=$6 [L,QSA]
  17. #
  18. RewriteRule ^(topics[0-9]*/)?(.*-vt)?([0-9]+),([0-9]+)\.htm$ ./viewtopic.php?t=$3&start=$4 [L,QSA]
  19. RewriteRule ^(topics[0-9]*/)?(.*-vt)?([0-9]+)\.htm$ ./viewtopic.php?t=$3 [L,QSA]
  20. RewriteRule ^postlink/([0-9]+)\.htm$ ./viewtopic.php?p=$1 [L,QSA]
  21.  
  22. RewriteRule ^search\.htm/authors/(.+),([0-9]+)$ ./search.php?search_author=$1&start=$2 [L,QSA]
  23. #
  24. RewriteRule ^search\.htm/([0-9a-z]+),([0-9]+)$ ./search.php?search_id=$1&start=$2 [L,QSA]
  25. RewriteRule ^search\.htm/([0-9a-z]+)$ ./search.php?search_id=$1 [L,QSA]
  26.  
  27. #
  28. #
  29. RewriteRule ^members/([a-z]+)_([a-z]*)-([A-Za-z]+),([0-9]+)\.htm$ ./memberlist.php?letter=$2&mode=$1&order=$3&start=$4 [L,QSA]
  30. RewriteRule ^members(\.htm|/?)$ ./memberlist.php [L,QSA]
  31.  
  32. RewriteRule ^profiles/([0-9]+)\.htm$ ./profile.php?mode=viewprofile&u=$1 [L,QSA]
  33.  
  34. RewriteRule ^groups/?([0-9]*)(\.htm)?$ ./groupcp.php?g=$1 [L,QSA]
  35. RewriteRule ^groups/?$ ./groupcp.php [L,QSA]
  36.  
  37. #
  38. RewriteRule ^sitemap,([0-9]+)\.htm$ ./sitemap.php?offset=$1 [L,QSA]
  39.  
  40. RewriteRule ^topics([0-9]+)/?$ ./viewforum.php?f=$1.htm [L,QSA]
  41. RewriteRule ^(topics|postlink|prev_topic|next_topic)/?$ ./index.php [L,QSA]
  42. RewriteRule ^profiles/?$ ./memberlist.php [L,QSA]
  43.  
  44. #htm to php
  45. RewriteCond %{REQUEST_FILENAME} !-f
  46. RewriteCond %{REQUEST_FILENAME} (.*)\.htm
  47. RewriteRule ^(.+)\.htm(\?.*)? $1.php$2 [E=WasHTML:yes]
  48. RewriteCond %{ENV:WasHTML} ^yes$
  49. RewriteCond %{REQUEST_FILENAME} !-f
  50. RewriteRule ^(.+)\.php(\?.*)? $1.htm$2
  51. <ifModule mod_gzip.c>
  52. mod_gzip_on Yes
  53. mod_gzip_dechunk Yes
  54. mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
  55. mod_gzip_item_include handler ^cgi-script$
  56. mod_gzip_item_include mime ^text/.*
  57. mod_gzip_item_include mime ^application/x-javascript.*
  58. mod_gzip_item_exclude mime ^image/.*
  59. mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
  60. </ifModule>
[APACHE] pobierz, plaintext



Wie ktoś moze w czym lezy problem?
Powód edycji: [Ociu]: bbcode
Go to the top of the page
+Quote Post

Reply to this topicStart new topic
2 Użytkowników czyta ten temat (2 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Aktualny czas: 23.08.2025 - 07:02