Hi,
thanks Robin for the new table maintenance features.
Would it be better to offer those features only if the table type supports it? For example, on an ISAM table, the CHECK command is not supported.
Also maybe put the 4 options on the same line, like this:
Table maintenance: check analyse repair optimize
with links (like they are now) or with 4 radio buttons and a GO button?
I am concerned that we are beginning to use much vertical space on the page.
Marc (Lem9)
Hi,
I added bookmark support to the current -devel tree. I worked on a new version, and i tried to support the multi-user / multi-server configurations. But it's not very simple.
So you will see tow new value in the config.inc.php3 file :
$cfgServers[1]['bookmarkdb'] = ''; $cfgServers[1]['bookmarktable'] = '';
First one is the db where the bookmarks were stored. Second one, the table. Leave blank if you don't want to use this features.
The bookmark table structure's is detailed (for the moment) in the config.inc.php3 too.
Finally, there are 3 new strings in lang files (for the moment, in french and english file) :
$strBookmarkQuery = "Bookmarked SQL-query"; $strBookmarkThis = "Bookmark this SQL-query"; $strBookmarkLabel = "Label";
I hope not to have made a silly thing in the devel tree :p
Regards,
Armel.
Oops,
A strange warning in lib.inc.php3 on line 57, during a test :
1 - click on a database 2 - "Browse" one of the table 3 - click on ">>End" 4 - click on "Begin<<"
Warning: Uninitialized variable in lib.inc.php3 on line 57...blah blah
My error_reporting is set to 63 (i.e. 'E_ALL').
Regards,
Armel.
Hi,
stable or devel? Using the version in cvs? Please show us your line 57.
Armel FAUVEAU a écrit :
Oops,
A strange warning in lib.inc.php3 on line 57, during a test :
1 - click on a database 2 - "Browse" one of the table 3 - click on ">>End" 4 - click on "Begin<<"
Warning: Uninitialized variable in lib.inc.php3 on line 57...blah blah
My error_reporting is set to 63 (i.e. 'E_ALL').
stable or devel? Using the version in cvs? Please show us your line 57.
Devel using version in CVS. I think that it's because after the final click on "Begin<<" (in my test), $goto was empty.
I worked on this bug and add : ...(isset($goto) ? $goto : '') in line 57. I think that it's ok now.
Armel.
On Sun, 6 May 2001, Marc Delisle wrote:
Would it be better to offer those features only if the table type supports it? For example, on an ISAM table, the CHECK command is not supported.
Hmm, I'll look into that, and hide some of them if needed.
Also maybe put the 4 options on the same line, like this:
Table maintenance: check analyse repair optimize
with links (like they are now) or with 4 radio buttons and a GO button?
I am concerned that we are beginning to use much vertical space on the page.
What size screen resolution are most people running this at? I use a 17" monitor at 1152x768, and a 21" monitor at 2048x1536.
On Mon, 7 May 2001, Armel FAUVEAU wrote:
I am concerned that we are beginning to use much vertical space on the page.
What size screen resolution are most people running this at? I use a 17" monitor at 1152x768, and a 21" monitor at 2048x1536.
Humm, i think that it's 1024x768.
In that case, I'll re-arrange it to a horizontal set of links. They are links instead of radio buttons to make life easier on us, as they using the sql.php3 file to run.
That was one of the fastest email replies I have ever seen. Less than 10 minutes turn around :-).