|
From: Steffen S. <ste...@lo...> - 2003-11-02 12:58:39
|
[Note: I'm resending this post since the first one didn't seem to come
through. If you receive it twice, I apologize]
Hi,
I've done some bugfixing and development on the server-php-minimal 0.2.0
release:
- more extensive and more user friendly debugging via new debug.php page.
After authentification (please change the current password 'secret' to
something really secret) the current debug.log is displayed together
with the current logging state (logging enabled or disabled).
A button toggles the logging state, another button refreshes the page
(to show new log entries) and with the truncate button it is possible
(after confirmation) to flush all log entries.
- Fixed SF bugs 830173 and 823312 (URLs containing quotes couldn't
inserted into the database.
- Fixed reg.php:SF Bug 817537 (REGEDIT4 and no trailing slash for root)
Blank line after copyright block broke header modification.
- All unnecessary tables and fields of the remaining tables in
bookmarksync.sql were removed (to make it minimal).
- Added new database table syncit_config which stores configuration
params. (currently used for debug output only, but other params like
master password etc. should be stored here)
Due to the bad performance and anonymous cvs problems of sourceforge
combined with mostly absent project administrators, I've decided to setup my
own project called 'mybookmarksync' on berlios.de (a site similar to
Sourceforge but without the problems ;)
On http://developer.berlios.de/projects/mybookmarksync/ you can download my
(unoffical) 0.2.1 release.
The diffs are available by anonymous cvs:
cvs -d:pserver:ano...@cv...:/cvsroot/mybookmarksync login
(use empty password)
cvs -d:pserver:ano...@cv...:/cvsroot/mybookmarksync co
server-php-minimal
cvs -d:pserver:ano...@cv...:/cvsroot/mybookmarksync diff -r
release_0_2_0 -r my_release_0_2_1
If you want to update a 0.2.0 installation, please execute the following sql
statement (also found in bookmarksync.sql) on your mysql database:
CREATE TABLE syncit_config (
param varchar(50) NOT NULL,
value varchar(50) default NULL,
PRIMARY KEY (param)
) TYPE=MyISAM;
Ciao,
Steffen
|