I just downloaded and installed this release.
Using my old config file 2.8.0
This message came at the begining:
Warning: main(libraries/Theme.class.php): failed to
open stream: No such file or directory in
C:\Webs\phpMyAdmin-2.8.0-rc2\libraries\Theme_Manager.class.php
on line 5
Fatal error: main(): Failed opening required
'libraries/Theme.class.php'
(include_path='C:\Server\PhpIncludes') in
C:\Webs\phpMyAdmin-2.8.0-rc2\libraries\Theme_Manager.class.php
on line 5
I edited Theme_Manager.class.php and changed line 5 from:
require_once('libraries/Theme.class.php');
TO require_once('Theme.class.php');
Tried again and worked.
Logged In: YES
user_id=210714
Did you change your include_path setting on the server?
Because this code has not changed since 2.8.0-rc1.
Logged In: YES
user_id=1204910
NO I'm still running my standard configuration.
I have not changed anything.
I went back to my old 2.6.4 version.
Since the release of version 2.7 I have not been able to set
the PhpMyAdmin version to anyone of the new releases.
Logged In: YES
user_id=1204910
After a little more investigation I found this:
In release 2.6.4 the Theme_ManagerClass.php script does not
exist in phpMyAdmin/libraries.
In release 2.8.0.beta the the Theme_ManagerClass.php script
DOES exist BUT the line 5 reads:
require_once('./libraries/Theme.class.php');
NOT
require_once('libraries/Theme.class.php');
so your comment:
Did you change your include_path setting on the server?
Because this code has not changed since 2.8.0-rc1.
Furthermore It enphasizes the comment mail I sent to Marc
Delisle <Marc.Delisle@cegepsherbrooke.qc.ca> asking politely
about the way phpmyadmin is being tested, which he answered
back quite in a nasty way.
Also for lem9 your comment means that you even didn't read
the code of the script before ansewring back.
Logged In: YES
user_id=1204910
After a little more investigation I found this:
In release 2.6.4 the Theme_ManagerClass.php script does not
exist in phpMyAdmin/libraries.
In release 2.8.0.beta the the Theme_ManagerClass.php script
DOES exist BUT the line 5 reads:
require_once('./libraries/Theme.class.php');
NOT
require_once('libraries/Theme.class.php');
so your comment:
Did you change your include_path setting on the server?
Because this code has not changed since 2.8.0-rc1.
Furthermore It enphasizes the comment mail I sent to Marc
Delisle <Marc.Delisle@cegepsherbrooke.qc.ca> asking politely
about the way phpmyadmin is being tested, which he answered
back quite in a nasty way.
Also for lem9 your comment means that you even didn't read
the code of the script before ansewring back.
Logged In: YES
user_id=192186
There should be
require_once('./libraries/Theme.class.php');, I will change it.
Logged In: YES
user_id=192186
Fixed in CVS, thanks for reporting.
Logged In: YES
user_id=192186
However there was NO change since this file has been created
(see
http://cvs.sourceforge.net/viewcvs.py/phpmyadmin/phpMyAdmin/libraries/Theme_Manager.class.php\).
Logged In: YES
user_id=1204910
I just saw the file, checked my download and they are both
the same, the file in the CVS has the error, is pointing to
a lower level of folders not to the same folder in which
theme_class.php is
Logged In: YES
user_id=210714
Mr Pérez is wrong when writing:
"In release 2.8.0.beta the the Theme_ManagerClass.php script
DOES exist BUT the line 5 reads:
require_once('./libraries/Theme.class.php');
NOT
require_once('libraries/Theme.class.php');"
Doing a checkout of the RELEASE_2_8_0BETA1 version clearly
shows that line 5 was
require_once('libraries/Theme.class.php');
Mr Pérez must have modified his copy at this time, and did
not remember about it. This happens. He also forgot to tell
us about this problem in beta1. This happens too.
Logged In: YES
user_id=1204910
I don't Know and I don't want to get into a useless
discussion here but, these are the 7 first lines that came
with the version 2.8.0.beta
----------------------------------------------------------
<?php
/* $Id: Theme_Manager.class.php,v 1.5 2006/01/17 17:02:30
cybot_tm Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:
require_once('./libraries/Theme.class.php');
class PMA_Theme_Manager {
----------------------------------------------------------
ANd these are the very same first seven line in the version
2.8.1.rc1 that I also downloaded:
----------------------------------------------------------
<?php
/* $Id: Theme_Manager.class.php,v 1.5 2006/01/17 17:02:30
cybot_tm Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:
require_once('libraries/Theme.class.php');
class PMA_Theme_Manager {
----------------------------------------------------------
furthermore these is the version that runs in my
installation (as a test)
----------------------------------------------------------
<?php
/* $Id: Theme_Manager.class.php,v 1.5 2006/01/17 17:02:30
cybot_tm Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:
require_once('Theme.class.php');
class PMA_Theme_Manager {
----------------------------------------------------------
As anyone can see, the first and third versions of the
script points to the same directory/folder.
I have not changed (I NEVER DO) anything EVER to any of the
PMA except for this very simple change.
I KEEP MY POINT, MR. Marc Delisle, YOU ARE VERY RUDE AND ARE
ASSUMING SOMETHING THA I HAVE NOT DONE.
If needed I can upload BOTH versions Beta and RC1 as the
were downloaded originally to my computer from your servers.
Logged In: YES
user_id=210714
Mr Pérez,
CVS keeps track of our changes. Here is what CVS shows for
this file (version 1.5) in 2.8.0-beta1:
http://cvs.sourceforge.net/viewcvs.py/phpmyadmin/phpMyAdmin/libraries/Theme_Manager.class.php?rev=1.5&only_with_tag=RELEASE_2_8_0BETA1&view=markup
The dot slash appeared magically in your copy of the file.