|
|
phpBB2 by Przemo
Support forów phpBB2 modified by Przemo
|
|
[General] Spider Friendly and new hosting |
Autor |
Wiadomość |
evilmc

Posty: 289
|
Wysłany: 11-11-2010, 14:51 [General] Spider Friendly and new hosting
|
|
|
My forum is transferred to a new server, and now I can not login to the forum because they throw this error:
Cytat: | Not Found
The requested URL /login.htm was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. |
When I delete a SF, again the same error...how fix this error?
http://www.serbian-fm.net/
Thanx |
_________________ Looptroop - Bandit Queen |
|
|
|
 |
Gadatliwa Kasia
|
|
|
|
Bucu

Pomógł: 487 razy Posty: 2127
|
Wysłany: 11-11-2010, 15:03
|
|
|
my mistake |
_________________ Zanim napiszesz głupi temat, zapoznaj sie z FAQ
Pisanie / Instalacja Modyfikacji / For / CMS , przenoszenie For / CMS / Baz Danych (odpłatnie) - Osoby zainteresowane Proszę o kontakt GG.
Przez GG Pomagam tylko odpłatnie! |
Ostatnio zmieniony przez Bucu 11-11-2010, 15:06, w całości zmieniany 2 razy |
|
|
|
 |
NineX


Pomógł: 546 razy Posty: 1983
|
Wysłany: 11-11-2010, 15:03
|
|
|
evilmc napisał/a: | When I delete a SF, again the same error...how fix this error? |
Entries from .htaccess deleted? |
|
|
|
 |
Matteo


Pomógł: 1932 razy Posty: 5714
|
Wysłany: 11-11-2010, 15:05
|
|
|
evilmc napisał/a: | When I delete a SF | You forgot edit a .htaccess I think. |
_________________
Fora, strony, sklepy internetowe i wiele więcej...
matteo.fcb(at)gmail.com |
|
|
|
 |
evilmc

Posty: 289
|
Wysłany: 11-11-2010, 15:13
|
|
|
this is my .htaccess, and what should I change?
Kod: | RewriteEngine on
RewriteRule ^ip,([0-9]{1,}).html$ infopage.php?id=$1
DirectoryIndex portal.php index.php
#RewriteBase /forum
RewriteRule ^cat([0-9]*)\.htm$ ./index.php?c=$1 [L,QSA]
#
RewriteRule ^(forum|.*-vf)([0-9]+)-([0-9]+),([0-9]+)\.htm$ ./viewforum.php?f=$2&topicdays=$3&start=$4 [L,QSA]
RewriteRule ^(forum|.*-vf)([0-9]+),([0-9]+)\.htm$ ./viewforum.php?f=$2&start=$3 [L,QSA]
RewriteRule ^(forum|.*-vf)([0-9]+)\.htm$ ./viewforum.php?f=$2 [L,QSA]
RewriteRule ^prev_topic/([0-9]+)\.htm$ ./viewtopic.php?t=$1&view=previous [L,QSA]
RewriteRule ^next_topic/([0-9]+)\.htm$ ./viewtopic.php?t=$1&view=next [L,QSA]
#
#
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]
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]
#
RewriteRule ^(topics[0-9]*/)?(.*-vt)?([0-9]+),([0-9]+)\.htm$ ./viewtopic.php?t=$3&start=$4 [L,QSA]
RewriteRule ^(topics[0-9]*/)?(.*-vt)?([0-9]+)\.htm$ ./viewtopic.php?t=$3 [L,QSA]
RewriteRule ^postlink/([0-9]+)\.htm$ ./viewtopic.php?p=$1 [L,QSA]
RewriteRule ^search\.htm/authors/(.+),([0-9]+)$ ./search.php?search_author=$1&start=$2 [L,QSA]
#
RewriteRule ^search\.htm/([0-9a-z]+),([0-9]+)$ ./search.php?search_id=$1&start=$2 [L,QSA]
RewriteRule ^search\.htm/([0-9a-z]+)$ ./search.php?search_id=$1 [L,QSA]
#
#
RewriteRule ^members/([a-z]+)_([a-z]*)-([A-Za-z]+),([0-9]+)\.htm$ ./memberlist.php?letter=$2&mode=$1&order=$3&start=$4 [L,QSA]
RewriteRule ^members(\.htm|/?)$ ./memberlist.php [L,QSA]
RewriteRule ^profiles/([0-9]+)\.htm$ ./profile.php?mode=viewprofile&u=$1 [L,QSA]
RewriteRule ^groups/?([0-9]*)(\.htm)?$ ./groupcp.php?g=$1 [L,QSA]
RewriteRule ^groups/?$ ./groupcp.php [L,QSA]
#
RewriteRule ^sitemap,([0-9]+)\.htm$ ./sitemap.php?offset=$1 [L,QSA]
RewriteRule ^topics([0-9]+)/?$ ./viewforum.php?f=$1.htm [L,QSA]
RewriteRule ^(topics|postlink|prev_topic|next_topic)/?$ ./index.php [L,QSA]
RewriteRule ^profiles/?$ ./memberlist.php [L,QSA]
#htm to php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} (.*)\.htm
RewriteRule ^(.+)\.htm(\?.*)? $1.php$2 [E=WasHTML:yes]
RewriteCond %{ENV:WasHTML} ^yes$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)\.php(\?.*)? $1.htm$2 |
|
_________________ Looptroop - Bandit Queen |
|
|
|
 |
Polaczek

Pomógł: 351 razy Posty: 2297
|
Wysłany: 11-11-2010, 15:20
|
|
|
Please delete this lines:
Kod: | RewriteRule ^ip,([0-9]{1,}).html$ infopage.php?id=$1 |
and
Kod: | #RewriteBase /forum
RewriteRule ^cat([0-9]*)\.htm$ ./index.php?c=$1 [L,QSA]
#
RewriteRule ^(forum|.*-vf)([0-9]+)-([0-9]+),([0-9]+)\.htm$ ./viewforum.php?f=$2&topicdays=$3&start=$4 [L,QSA]
RewriteRule ^(forum|.*-vf)([0-9]+),([0-9]+)\.htm$ ./viewforum.php?f=$2&start=$3 [L,QSA]
RewriteRule ^(forum|.*-vf)([0-9]+)\.htm$ ./viewforum.php?f=$2 [L,QSA]
RewriteRule ^prev_topic/([0-9]+)\.htm$ ./viewtopic.php?t=$1&view=previous [L,QSA]
RewriteRule ^next_topic/([0-9]+)\.htm$ ./viewtopic.php?t=$1&view=next [L,QSA]
#
#
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]
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]
#
RewriteRule ^(topics[0-9]*/)?(.*-vt)?([0-9]+),([0-9]+)\.htm$ ./viewtopic.php?t=$3&start=$4 [L,QSA]
RewriteRule ^(topics[0-9]*/)?(.*-vt)?([0-9]+)\.htm$ ./viewtopic.php?t=$3 [L,QSA]
RewriteRule ^postlink/([0-9]+)\.htm$ ./viewtopic.php?p=$1 [L,QSA]
RewriteRule ^search\.htm/authors/(.+),([0-9]+)$ ./search.php?search_author=$1&start=$2 [L,QSA]
#
RewriteRule ^search\.htm/([0-9a-z]+),([0-9]+)$ ./search.php?search_id=$1&start=$2 [L,QSA]
RewriteRule ^search\.htm/([0-9a-z]+)$ ./search.php?search_id=$1 [L,QSA]
#
#
RewriteRule ^members/([a-z]+)_([a-z]*)-([A-Za-z]+),([0-9]+)\.htm$ ./memberlist.php?letter=$2&mode=$1&order=$3&start=$4 [L,QSA]
RewriteRule ^members(\.htm|/?)$ ./memberlist.php [L,QSA]
RewriteRule ^profiles/([0-9]+)\.htm$ ./profile.php?mode=viewprofile&u=$1 [L,QSA]
RewriteRule ^groups/?([0-9]*)(\.htm)?$ ./groupcp.php?g=$1 [L,QSA]
RewriteRule ^groups/?$ ./groupcp.php [L,QSA]
#
RewriteRule ^sitemap,([0-9]+)\.htm$ ./sitemap.php?offset=$1 [L,QSA]
RewriteRule ^topics([0-9]+)/?$ ./viewforum.php?f=$1.htm [L,QSA]
RewriteRule ^(topics|postlink|prev_topic|next_topic)/?$ ./index.php [L,QSA]
RewriteRule ^profiles/?$ ./memberlist.php [L,QSA]
#htm to php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} (.*)\.htm
RewriteRule ^(.+)\.htm(\?.*)? $1.php$2 [E=WasHTML:yes]
RewriteCond %{ENV:WasHTML} ^yes$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)\.php(\?.*)? $1.htm$2 |
|
_________________ The Cephei Family
stuff 'n' stuff |
|
|
|
 |
evilmc

Posty: 289
|
Wysłany: 11-11-2010, 15:29
|
|
|
I deleted, but now forum have this error:
Kod: | phpBB by Przemo : Kritična greška
Error creating new session
DEBUG MODE
SQL Error : 1054 Unknown column 'session_bot' in 'field list'
INSERT INTO phpbb_sessions (session_id, session_user_id, session_start, session_time, session_ip, session_page, session_logged_in, session_bot, session_admin) VALUES ('3a42489353601b2b8dbaee41b56db649', -1, 1289485759, 1289485759, '5d566871', 0, 0, '', 0)
Line : 461
File : sessions.php |
|
_________________ Looptroop - Bandit Queen |
|
|
|
 |
Polaczek

Pomógł: 351 razy Posty: 2297
|
Wysłany: 11-11-2010, 15:30
|
|
|
You are deleted SQL columns/tables?
my english is bad |
_________________ The Cephei Family
stuff 'n' stuff |
|
|
|
 |
evilmc

Posty: 289
|
Wysłany: 11-11-2010, 15:38
|
|
|
Polaczek napisał/a: | You are deleted SQL columns/tables? |
for SF or? If SF, I deleted SQL from sf_install.php |
_________________ Looptroop - Bandit Queen |
|
|
|
 |
Woytec

Pomógł: 2596 razy Posty: 7676
|
Wysłany: 11-11-2010, 15:47
|
|
|
Did you restore contents of files from in front of the installation? |
|
|
|
 |
evilmc

Posty: 289
|
Wysłany: 11-11-2010, 15:53
|
|
|
Of course, I returned everything. And when I wanted to run a forum I get this error.
Also, when I install SF forum up and running as soon as I delete SF again an error occurs... |
_________________ Looptroop - Bandit Queen |
|
|
|
 |
Woytec

Pomógł: 2596 razy Posty: 7676
|
Wysłany: 11-11-2010, 15:56
|
|
|
Undo changes in sessions.php |
|
|
|
 |
Gadatliwa Kasia
|
|
|
|
evilmc

Posty: 289
|
Wysłany: 11-11-2010, 16:01
|
|
|
Now I get this error :S
Kod: | Could not obtain user/online information
DEBUG MODE
SQL Error : 1054 Unknown column 's.session_bot' in 'field list'
SELECT u.username, u.user_id, u.user_allow_viewonline, u.user_level, u.user_jr, u.user_session_time, u.user_session_start, s.session_logged_in, s.session_ip, s.session_bot, s.session_start, s.session_page FROM (phpbb_users u, phpbb_sessions s) WHERE u.user_id = s.session_user_id AND s.session_time >= 1289487491 ORDER BY u.user_level = 1 DESC, u.user_jr DESC, u.user_level = 2 DESC, u.user_level = 0 DESC, s.session_bot ASC, u.username, s.session_start ASC
Line : 475
File : functions_add.php |
[ Added: 11-11-2010, 16:13 ]
I replace functions_add.php and sessions.php and forum now worikng! thanx a lot! cheers! |
_________________ Looptroop - Bandit Queen |
|
|
|
 |
|
Nie możesz pisać nowych tematów Nie możesz odpowiadać w tematach Nie możesz zmieniać swoich postów Nie możesz usuwać swoich postów Nie możesz głosować w ankietach Możesz załączać pliki na tym forum Możesz ściągać załączniki na tym forum
|
Dodaj temat do Ulubionych Wersja do druku
|
Kopiowanie wszelkich treści zawartych na forum, modyfikacji oraz instrukcji bez zgody administracji i autorów tematów/postów zabronione!
Powered by phpBB modified by Przemo © 2003 phpBB
| Strona wygenerowana w 0,1 sekundy. Zapytań do SQL: 11 | |
 |
|