[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-12 Thread Yabawock
Can confirm this on lucid as well (libapache2-mod-php5)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-12 Thread Stephan Jaensch
I can confirm this on hardy as well as karmic. Perfectly valid
open_basedir restrictions stopped working. Removing the trailing slash
might be a workaround, but it actually weakens the restriction.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-12 Thread James78
Agreed. This is a pretty big security risk to have weakened restrictions
because it stopped working (with the only workaround being removing the
trailing slash), and should be fixed asap.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-12 Thread Yabawock
Can confirm this on lucid as well (libapache2-mod-php5)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-12 Thread Stephan Jaensch
I can confirm this on hardy as well as karmic. Perfectly valid
open_basedir restrictions stopped working. Removing the trailing slash
might be a workaround, but it actually weakens the restriction.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-12 Thread James78
Agreed. This is a pretty big security risk to have weakened restrictions
because it stopped working (with the only workaround being removing the
trailing slash), and should be fixed asap.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-11 Thread James Roe
** Description changed:

  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.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-11 Thread Rocco
Same problem with Hardy and php 5.2, libapache2-mod-php5
5.2.4-2ubuntu5.13. Problem started just now after security upgrade.
Affected all my sites. Had to remove trailing slash to get it working
again, even if that will include more directories potentially. BIG
problem.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-11 Thread James78
** Description changed:

  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)
+ 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.

** Description changed:

  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:
+ 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.

** Description changed:

  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 

[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-11 Thread BlackDex
Same problem here, it started working after removing the trailing /.
This should be fixed asap.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-11 Thread James Roe
** Description changed:

  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.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-11 Thread Rocco
Same problem with Hardy and php 5.2, libapache2-mod-php5
5.2.4-2ubuntu5.13. Problem started just now after security upgrade.
Affected all my sites. Had to remove trailing slash to get it working
again, even if that will include more directories potentially. BIG
problem.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-11 Thread James78
** Description changed:

  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)
+ 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.

** Description changed:

  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:
+ 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.

** Description changed:

  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 

[Bug 701765] Re: Unknown: Failed opening required '/usr/share/phpmyadmin/index.php' (include_path='.') in Unknown on line 0

2011-01-11 Thread BlackDex
Same problem here, it started working after removing the trailing /.
This should be fixed asap.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/701765

Title:
  Unknown: Failed opening required '/usr/share/phpmyadmin/index.php'
  (include_path='.') in Unknown on line 0

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs