Jump to content
  • 0

RewriteOptions: MaxRedirects option has been removed in favor of the global LimitIn..


clgs
 Share

Question

Всем привет.

Вот тут сталкнулся с такой проблемой:

RewriteOptions: MaxRedirects option has been removed in favor of the global LimitInternalRecursion directive and will be ignored. (из логов апача)

вызвана промлема следующим кодом

file.php


...
return $array; // array(2) { ["list_cnt"]=> string(1) "4" ["list_res"]=> object(mysqli_result)#7 (0) { } }

file2.php


$name='qwerty';
$$name=(array)include 'file.php';

Собственно пустая страница, а в логах то что привел выше.

Если сделать

file2.php


$name=(array)include 'file.php';

то всё гуд. но мне надо именно $$name. И еще, если из массива в файле file.php убрать объект, то всё гуд.

Есть идеи? В рунете не нашел ответа, а в буржунете что-то не то, или я не понял.

На засыпку)


$t=(array)include 'file.php';
var_dump($t); // array(2) { ["list_cnt"]=> string(1) "4" ["list_res"]=> object(mysqli_result)#7 (0) { } }
$$p=array();
$$p[$p]=$t;
var_dump($$p); // array(0) { }

Мистика) Или я что-то не до понимаю?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Ну если ошибка в php, то в php.ini нужно включить вывод ошибок и поглядеть на них. Я не думаю, что апач будет записывать в свой лог ошибки php.

Вывод ошибок и предупреждений включен, ситуация в том что даже если что-то попытаться распечатать до этого места, то оно всё равно не печатается, и тупо белый лист. Вообще ситуация странная. Создается такое впечатление, что я наткнулся на ошибку интерпретатора php.

Link to comment
Share on other sites

  • 0

Вернёмся к моему первому сообщению

http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html

Почему бы не предположить, что дело не в php?

Потому что простые манипуляции в php решают эту проблему. Подробнее тут.

Спасибо за ссылку, почитаю завтра.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy