> 1 <
| Author | Message |
AliBug
5 posts
Location: France Occupation: Age: |
#224 2008-02-28 14:44 GMT |
|
Hello,
i moved host... but i have error with rewrite Fatal error: Call to undefined function: stripos() in /home/sites/klyo.net/public_html/system/rewrite.php on line 421 i don't understand what problem it ? |
|
Kilandor
118 posts
http://www.seditioforge.com/ Location: United States TN Occupation: Web Coder - Gamer - Game Devloper(working on it) Age: 26 |
#225 2008-02-28 19:08 GMT |
|
Hmm? dunno some special plugin or file or something? Thats not a core Seditio file
|
|
Trustmaster
48 posts
http://www.politehnik.info Location: Russia Nizhny Novgorod Occupation: University Student, Engineer/Programmer, IT Expert Age: 23 |
#226 2008-02-29 08:47 GMT |
|
stripos() doesn't exist in PHP4, that's your problem. You could do it by replacing
PHP Code: if(stripos($string, 'location') === 0) $loc = true; elseif(stripos($hdrs[$i], 'refresh') === 0) $ref = true; with PHP Code: if(strpos(strtolower($string), 'location') === 0) $loc = true;
elseif(strpos(strtolower($hdrs[$i]), 'refresh') === 0) $ref = true; |
|
AliBug
5 posts
Location: France Occupation: Age: |
#231 2008-03-01 09:29 GMT |
|
Oki, thanks now my host change to PHP5
|
|
Wappp
6 posts
Location: Russia Occupation: Age: |
#333 2008-06-19 17:53 GMT |
|
decided not to start a new topic
anyway I've got some probs with advanced Seditio Rewrite extension and plugin Redirector (which is very useful for me, it redirects users to location were before the login procedure) is there any suggestion to fix this prob? and thanx a lot for this rewrite engine! ))) PS I've uploaded the Redirecter plugin, but recieved an error with My Files down in Textboxer form. so here's the link |
|
Wappp
6 posts
Location: Russia Occupation: Age: |
#334 2008-06-19 20:29 GMT |
|
i realised i got another problem - when enabling extraSeo i'm loosing all pages starting from index: main page (index), all list pages(categories) exept categories with group enabled (!), but still got plugins and admin workin' links... help help SOS ))
only thing what i got is Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=windows-1251"></HEAD> <BODY></BODY></HTML> This post was edited by Wappp (2008-06-19 21:12 GMT, ago) |
|
Trustmaster
48 posts
http://www.politehnik.info Location: Russia Nizhny Novgorod Occupation: University Student, Engineer/Programmer, IT Expert Age: 23 |
#335 2008-06-20 07:43 GMT |
|
I know about Redirecter problem but haven't fixed it so far.
Can you show example of your index problem? |
|
Wappp
6 posts
Location: Russia Occupation: Age: |
#336 2008-06-21 17:40 GMT |
|
sure
finely when I was trying to set extraSEO on, I lost any ability to reach the site at all now the Question - how to disable this plug from PHPMyAdm or FTP or ...? PS not exactly understand about "example of index..." here's this site (<-link) BTW thx for quick reply )) |
|
Wappp
6 posts
Location: Russia Occupation: Age: |
#337 2008-06-21 18:09 GMT |
|
PPS in server logs i found this "Too many levels of symbolic links"
This post was edited by Wappp (2008-06-21 19:01 GMT, ago) |
|
Trustmaster
48 posts
http://www.politehnik.info Location: Russia Nizhny Novgorod Occupation: University Student, Engineer/Programmer, IT Expert Age: 23 |
#338 2008-06-22 09:40 GMT |
|
To disable the plugin quickly, comment one line in system/common.php:
Code: // ob_start('rewrite_output'); Quote That means you need to set symlinks off in .htaccess: Code: Options FollowSymLinks -Indexes
|
|
Wappp
6 posts
Location: Russia Occupation: Age: |
#339 2008-06-22 19:53 GMT |
|
this line is first in htaccess text that brought to me ExtModRewr.Tool )))
it's a pitty but I had to disable the plug, it totally freeze my site (( that's very bad for me. Another my site is OK, but this one on the different hosting and I realy upset and don't knows what to do. It's very essential plug for me. M.b. you can give me some suggestion - every info you need will follow. thanks at all PS if it'll be more comfortable - we can use native language |
|
Trustmaster
48 posts
http://www.politehnik.info Location: Russia Nizhny Novgorod Occupation: University Student, Engineer/Programmer, IT Expert Age: 23 |
#340 2008-06-23 06:59 GMT |
|
On some hosts commenting that line helps
Code: Options -FollowSymLinks -Indexes The language has no difference for me, that's nice you speak English |
|
Wappp
6 posts
Location: Russia Occupation: Age: |
#341 2008-06-23 13:01 GMT |
|
ok
i'll try thx |
|
> 1 <





