![]() |
Operating System: Windows 2000 Windows XP Debian GNU/Linux (sarge) PHP Version 5.0.3 4.3.3 4.3.4 Web Server Apache 2.0.52 Apache 1.3.27 Apache 2.0.52 MySql Version 4.0.10-gamma-max-nt 4.0.15 Unknown Browser Mozilla 1.3a and IE 6.0.2600 IE 6.0.2900 Mozilla Firefox 1.0
Patch 758400: Links for biblios & members in report results Patch 758409: Multiple output types for reports (HTML & CSV) Patch 766275: 'New Like' functionality
Made OpenBiblio independent of the setting of magic_quotes_gpc Replaced HTTP_*_VARS with superglobals Fixed 758396: Can place book on hold that a member already has checked out Patch 767734: Sort order of checked out & on Hold bibliographies Partly Fixed 1006634: Localization: Hardcoded frontend words. Fixed 1010625: Title doesn't show on delete confirm or after delete Fixed 1075370: German Install 0.5 is erreanous Fixed 1152881: Undefined variable on catalog/biblio_marc_list.php Fixed 1152756: Report List shows PHP warning Fixed bug that forced call numbers to be actual numbers Converted all queries to use new mkSQL function Fixed couple compatibility bugs with PHP 4.2.0 and 5.0.0 Fixed small copy-and-paste error in BiblioSearchQuery.php Fixed escaping bug Copyright message updated to 2005
1162262 Image files for new material types 1162255 Inconsistent account balances 1162251 Editing checked-out copies broken 1162155 Stray '1' in single-page search results 1157668 German Locales and AmountFunctions 1118538 Install - Problems with MySQL 4.1.x 1114244 Holds and mbr_checkout stats 1114189 Hardcoded abbreviations for status 1082973 SQL inserts need column names 1082970 Security: check_out.php uses classification from url 1013037 BiblioQuery improper error handling 1010620 Repeated Escaping of characters in title 1006634 Localization: Hardcoded frontend words 974720 Reports: Date '=' comparisions require exact time 890988 Edit-Basic: contamination of empty fields 844825 Broken Database Format 777883 Double quotes not shown on Biblio - Edit-BASIC 774560 staff.pwd field not big enough for MySQL 4.1.0 763855 Report search & sort criteria don't work with count() 761213 Checked in books are holdable 758405 "Error running report." after timed out session.
OpenBiblio uses session data. Therefore, you will need to make sure PHP sessions are turned on. Be sure to create a directory for your session data on your server and specify the session.save_path in your php.ini file. The default php.ini sets session.save_path to "/tmp". Therefore, you have to create a directory called c:/tmp (for Windows) users. However, I usually create a more descriptive name inside my PHP directory and then change my php.ini file to match it.
Example php.ini directive:
session.save_path = d:\PHP\sessiondata
See section XCIII. Session handling functions in the PHP manual for more details on PHP sessions.
C:\>c:\mysql\bin\mysql -uroot mysql Enter password: ********* Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 to server version: 3.23.26-beta Type 'help;' or '\h' for help. Type '\c' to clear the buffer mysql> show databases; +--------------+ | Database | +--------------+ | mysql | +--------------+ 6 rows in set (0.00 sec) mysql> exit Bye C:\>
mysql> create database OpenBiblio;To check to make sure the OpenBiblio database was created properly, run the following command.mysql> show databases; +--------------+ | Database | +--------------+ | mysql | | OpenBiblio | +--------------+
mysql> grant all privileges on OpenBiblio.* to obiblio_user@localhost -> identified by 'obiblio_password';
C:\mysql\bin\mysql -uobiblio_user -pobiblio_password OpenBiblio