2011-01-12 02:48:30 |
=0yP)F]|L(0YNrv |
bug |
|
|
added bug |
2011-01-12 02:51:10 |
=0yP)F]|L(0YNrv |
description |
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5).
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly. It worked great using the configuration above with php5 (5.3.2-1ubuntu4.5)
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/ |
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5)
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/ |
|
2011-01-12 03:15:05 |
=0yP)F]|L(0YNrv |
description |
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5)
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/ |
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5)
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
Additionally, using a configuration such as this also seems to work as a workaround:
open_basedir = /home:/tmp:/usr/lib/php5:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin
Note: Please read the "open_basedir string" section at http://php.net/manual/en/ini.core.php . Using slashes at the end of the open_basedir paths is perfectly valid. Using no slashes causes a regex wildcard type matching, where /etc/phpmyadmin would also match /etc/phpmyadminanythingelsehere, but /etc/phpmyadmin/ matches ONLY that directory. |
|
2011-01-12 04:53:33 |
=0yP)F]|L(0YNrv |
description |
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5)
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
Additionally, using a configuration such as this also seems to work as a workaround:
open_basedir = /home:/tmp:/usr/lib/php5:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin
Note: Please read the "open_basedir string" section at http://php.net/manual/en/ini.core.php . Using slashes at the end of the open_basedir paths is perfectly valid. Using no slashes causes a regex wildcard type matching, where /etc/phpmyadmin would also match /etc/phpmyadminanythingelsehere, but /etc/phpmyadmin/ matches ONLY that directory. |
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5 5.3.2-1ubuntu4.6). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5) and libapache2-mod-php5 (5.3.2-1ubuntu4.5). This did not seem to affect php on fcgi for me, however this is unconfirmed as I haven't been able to fully test it out.
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
Additionally, using a configuration such as this also seems to work as a workaround:
open_basedir = /home:/tmp:/usr/lib/php5:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin
Note: Please read the "open_basedir string" section at http://php.net/manual/en/ini.core.php . Using slashes at the end of the open_basedir paths is perfectly valid. Using no slashes causes a regex wildcard type matching, where /etc/phpmyadmin would also match /etc/phpmyadminanythingelsehere, but /etc/phpmyadmin/ matches ONLY that directory.
|
|
2011-01-12 04:57:59 |
=0yP)F]|L(0YNrv |
description |
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5 5.3.2-1ubuntu4.6). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5) and libapache2-mod-php5 (5.3.2-1ubuntu4.5). This did not seem to affect php on fcgi for me, however this is unconfirmed as I haven't been able to fully test it out.
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
Additionally, using a configuration such as this also seems to work as a workaround:
open_basedir = /home:/tmp:/usr/lib/php5:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin
Note: Please read the "open_basedir string" section at http://php.net/manual/en/ini.core.php . Using slashes at the end of the open_basedir paths is perfectly valid. Using no slashes causes a regex wildcard type matching, where /etc/phpmyadmin would also match /etc/phpmyadminanythingelsehere, but /etc/phpmyadmin/ matches ONLY that directory.
|
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5 5.3.2-1ubuntu4.6). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5) and libapache2-mod-php5 (5.3.2-1ubuntu4.5). This did not seem to affect php on fcgi for me, however this is unconfirmed as I haven't been able to fully test it out.
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
Alternatively, using a configuration such as this also works as a workaround (removed forward slashes at the end of the paths):
open_basedir = /home:/tmp:/usr/lib/php5:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin
Note: Please read the "open_basedir string" section at http://php.net/manual/en/ini.core.php . Using slashes at the end of the open_basedir paths is perfectly valid. Using no slashes causes a regex wildcard type matching, where /etc/phpmyadmin would also match /etc/phpmyadminanythingelsehere, but /etc/phpmyadmin/ matches ONLY that directory.
|
|
2011-01-12 04:58:32 |
=0yP)F]|L(0YNrv |
description |
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5 5.3.2-1ubuntu4.6). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5) and libapache2-mod-php5 (5.3.2-1ubuntu4.5). This did not seem to affect php on fcgi for me, however this is unconfirmed as I haven't been able to fully test it out.
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
Alternatively, using a configuration such as this also works as a workaround (removed forward slashes at the end of the paths):
open_basedir = /home:/tmp:/usr/lib/php5:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin
Note: Please read the "open_basedir string" section at http://php.net/manual/en/ini.core.php . Using slashes at the end of the open_basedir paths is perfectly valid. Using no slashes causes a regex wildcard type matching, where /etc/phpmyadmin would also match /etc/phpmyadminanythingelsehere, but /etc/phpmyadmin/ matches ONLY that directory.
|
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5 5.3.2-1ubuntu4.6). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5) and libapache2-mod-php5 (5.3.2-1ubuntu4.5). This did not seem to affect php on fcgi for me, however this is unconfirmed as I haven't been able to fully test it out.
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
Alternatively, using a configuration such as this also works as a workaround (removed forward slashes at the end of the paths):
open_basedir = /home:/tmp:/usr/lib/php5:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin
Note: Please read the "open_basedir string" section at http://php.net/manual/en/ini.core.php . Using slashes at the end of the open_basedir paths is perfectly valid. Using no slashes causes a regex wildcard type matching, where /etc/phpmyadmin would also match /etc/phpmyadminasdf, but /etc/phpmyadmin/ matches ONLY that directory.
|
|
2011-01-12 05:02:27 |
=0yP)F]|L(0YNrv |
description |
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5 5.3.2-1ubuntu4.6). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5) and libapache2-mod-php5 (5.3.2-1ubuntu4.5). This did not seem to affect php on fcgi for me, however this is unconfirmed as I haven't been able to fully test it out.
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
Alternatively, using a configuration such as this also works as a workaround (removed forward slashes at the end of the paths):
open_basedir = /home:/tmp:/usr/lib/php5:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin
Note: Please read the "open_basedir string" section at http://php.net/manual/en/ini.core.php . Using slashes at the end of the open_basedir paths is perfectly valid. Using no slashes causes a regex wildcard type matching, where /etc/phpmyadmin would also match /etc/phpmyadminasdf, but /etc/phpmyadmin/ matches ONLY that directory.
|
Binary package hint: php5
In package php5 (5.3.2-1ubuntu4.6) for Ubuntu Server 10.04.1 LTS, I have a bug regarding open_basedir setting in php.ini (using libapache2-mod-php5 5.3.2-1ubuntu4.6). phpmyadmin is within the allowed open_basedir resrictions, yet there is an error anyways saying it's not. It worked great using the configuration below with php5 (5.3.2-1ubuntu4.5) and libapache2-mod-php5 (5.3.2-1ubuntu4.5). This did not seem to affect php on fcgi for me, however this is unconfirmed as I haven't been able to fully test it out.
My configuration::
open_basedir = /home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
What is expected to happen::
No error, it should work seamlessly.
What happens::
I receive an error message (below)::
PHP Warning: Unknown: open_basedir restriction in effect. File(/usr/share/phpmyadmin/index.php) is not within the allowed path(s): (/home/:/tmp/:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/) in Unknown on line 0
PHP Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0
PHP Fatal error: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0
Current workaround::
Add . to the open_basedir restrictions.
open_basedir = /home/:/tmp/:.:/usr/lib/php5/:/usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
Alternatively, removing the forward slashes at the end of the paths also works as a workaround:
open_basedir = /home:/tmp:/usr/lib/php5:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin
Note: Please read the "open_basedir string" section at http://php.net/manual/en/ini.core.php . Using slashes at the end of the open_basedir paths is perfectly valid. Using no slashes causes a regex wildcard type matching, where /etc/phpmyadmin would also match /etc/phpmyadminasdf, but /etc/phpmyadmin/ matches ONLY that directory.
|
|
2011-01-12 08:58:47 |
Yabawock |
bug |
|
|
added subscriber Yabawock |
2011-01-12 09:08:20 |
BlackDex |
bug |
|
|
added subscriber BlackDex |
2011-01-12 09:11:10 |
Stephan Jaensch |
bug |
|
|
added subscriber Stephan Jaensch |
2011-01-12 09:55:47 |
Jan Wagner |
bug |
|
|
added subscriber cyco |
2011-01-12 10:11:51 |
=0yP)F]|L(0YNrv |
summary |
Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0 |
open_basedir breaks with leading slash on paths; Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0 |
|
2011-01-12 10:21:04 |
=0yP)F]|L(0YNrv |
summary |
open_basedir breaks with leading slash on paths; Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0 |
open_basedir breaks by restricting paths to files that should be allowed when you add a leading slash in configuration; Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0 |
|
2011-01-12 11:12:32 |
=0yP)F]|L(0YNrv |
summary |
open_basedir breaks by restricting paths to files that should be allowed when you add a leading slash in configuration; Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0 |
open_basedir breaks by restricting paths to files that should be allowed; Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0 |
|
2011-01-12 11:19:53 |
-=SSD=- |
bug |
|
|
added subscriber -=SSD=- |
2011-01-12 12:44:47 |
Bapf |
bug |
|
|
added subscriber Bapf |
2011-01-12 13:25:24 |
Steve Beattie |
php5 (Ubuntu): status |
New |
Confirmed |
|
2011-01-12 13:25:26 |
Steve Beattie |
php5 (Ubuntu): importance |
Undecided |
High |
|
2011-01-12 13:25:31 |
Steve Beattie |
php5 (Ubuntu): assignee |
|
Steve Beattie (sbeattie) |
|
2011-01-12 16:07:13 |
Steve Beattie |
bug watch added |
|
http://bugs.php.net/bug.php?id=53352 |
|
2011-01-12 16:40:40 |
Ondřej Surý |
bug watch added |
|
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605391 |
|
2011-01-12 16:40:40 |
Ondřej Surý |
bug task added |
|
php |
|
2011-01-13 01:13:54 |
kapsi |
bug |
|
|
added subscriber kapsi |
2011-01-13 08:09:41 |
Bapf |
removed subscriber Bapf |
|
|
|
2011-01-13 12:44:15 |
kapsi |
removed subscriber kapsi |
|
|
|
2011-01-13 13:48:02 |
B.Schmidt |
removed subscriber B.Schmidt |
|
|
|
2011-01-13 20:24:53 |
Andrea Azzini |
removed subscriber Andrea Azzini |
|
|
|
2011-01-16 11:47:44 |
BlackDex |
removed subscriber BlackDex |
|
|
|
2011-01-20 21:10:46 |
Steve Beattie |
bug watch added |
|
http://bugs.php.net/bug.php?id=53597 |
|
2011-01-20 21:11:55 |
Steve Beattie |
bug watch added |
|
http://bugs.php.net/bug.php?id=53597 |
|
2011-01-20 21:11:55 |
Steve Beattie |
php: remote watch |
Debian Bug tracker #605391 |
bugs.php.net/ #53597 |
|
2011-01-25 14:05:08 |
Dave Walker |
cve linked |
|
2010-3436 |
|
2011-01-25 14:05:08 |
Dave Walker |
php5 (Ubuntu): status |
Confirmed |
Fix Released |
|