![]() |
Operating System: Windows 2000 Windows 98 PHP Version 4.3.1 (module) 4.2.3 (cgi) Web Server Apache 2.0.44 Apache 2.0.43 MySql Version 4.0.10-gamma-max-nt 4.0.4-beta-max-debug Browser Mozilla 1.3a and IE 6.0.2600 Mozilla 1.1
763846 Focus fails on some pages 761369 Shelved books can be checked in 761290 Zero and Negative transactions allowed 758393 report_list.php broken if reportdefs contains directory 555049 Unable to add new member
890988 Edit-Basic: contamination of empty fields 859290 biblio_search.php and apostrophes 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 768408 Edit-Basic duplicates MARC fields 763855 Report search & sort criteria don't work with count() 761213 Checked in books are holdable 758405 "Error running report." after timed out session. 758396 Can place book on hold that a member already has checked out
OpenBiblio uses session data. Therefore, you will need to make sure PHP sessions is 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