Notes |
(0000706)
nikrou (developer)
2006.03.28 09:23
|
The variable $_SERVER['QUERY_STRING'] doesn't exist in when PHP is running inside IIS.
That variable is only use in the index.php and in the function get_query_string_diff() define in include/functions.inc.php
I think the modifications are quite easy to do. We should parse the $_GET tab instead of $_SERVER['QUERY_STRING'] |
|
(0000824)
solivier (reporter)
2006.04.21 05:38
|
Could you give me the alternative statement using $GET_ ? Maybe I can do the fix in themean time. Thank. |
|
(0000846)
nikrou (developer)
2006.04.24 14:29
|
> Could you give me the alternative statement using $GET_ ? Maybe I can do the fix in themean time. Thank.
A possible fix:
In the get_query_string_diff() function (in include/functions.inc.php) aroud line 563) replace the two lines:
$str = $_SERVER['QUERY_STRING'];
parse_str($str, $vars);
by
if (isset($_SERVER['QUERY_STRING'])) {
$str = $_SERVER['QUERY_STRING'];
parse_str($str, $vars);
} else {
$vars = $_GET;
} |
|
(0000980)
solivier (reporter)
2006.05.26 04:49
|
I turned off display_errors in php.ini to hide this repeting messages. For now i'm good. |
|
(0002252)
mathiasm (manager)
2008.07.01 00:31
|
Lots of fixes has been done with url rewriting.
Could solivier report if problem still occurs with IIS and Phpwebgallery 1.7 ? |
|
(0002771)
ddtddt (administrator)
2009.07.30 14:08
|
No new since 2006 is closed ?
We find another person to test? |
|
(0002777)
mathiasm (manager)
2009.07.30 23:52
|
I think it was fixed when we managed the SERVER_PATH problem. |
|
(0002778)
mathiasm (manager)
2009.07.30 23:53
|
Fixed, IMO: see last note. |
|