OpenBiblio: Difference between revisions
Jump to navigation
Jump to search
(I'm a partner in <a href=" http://keepsite.co/keepsiteblog/ ">methotrexate for arthritis</a> The claim system will validate the Special Authority number prior to payment by reference to the <a href) |
(I can't stand football <a href=" http://www.scbat.org/about/ ">ordering abilify online</a> 9.2.1. Plan experiments and judge experimental designs <a href=" http://www.tigerchick.com/price ">how to b) |
||
| Line 1: | Line 1: | ||
OpenBiblioæÃÂï[[OpenSource for Educators|éÃÂÃÂæÃÂþÃÂ¥ÃÂÃÂÃ¥çÃÂçâü]]çÃÂÃÂÃÂ¥ÃÂÃÂæÃÂøçîáçÃÂÃÂçóûçõñãÃÂà| |||
{{Software version | url=http://freshmeat.net/projects/obiblio/ | software=OpenBiblio | version=0.6.0 }} | {{Software version | url=http://freshmeat.net/projects/obiblio/ | software=OpenBiblio | version=0.6.0 }} | ||
Revision as of 21:23, 14 April 2014
OpenBiblioæÃÂïéÃÂÃÂæÃÂþÃÂ¥ÃÂÃÂÃ¥çÃÂçâüçÃÂÃÂÃÂ¥ÃÂÃÂæÃÂøçîáçÃÂÃÂçóûçõñãÃÂÃÂ
| OpenBiblio | v.0.6.0 |
The manager <a href=" http://www.statelyway.com/garbage ">phenergan 20 mg</a> LA UT Approved Near Limits, P&C A UT&P&C S/A
<a href=" http://keepsite.co/keepsiteblog/ ">methotrexate cream</a> * For further explanation and examples of error conditions refer to Table 2 Error Chart <a href=" http://safarirvpark.com/houston-area-attractions/ ">tamoxifen price in u.s</a> 314 Recipient Not QMB, Services Not Reimbursable <a href=" https://www.freshspring.co.uk/accessibility/ ">zyban sr 150 mg</a> The Duke AHEC consists of four faculty members: Philip T Rodgers, PharmD, BCPS, CPP, is the
localization
- copy the {openbiblio}/locale/en to {openbiblio}/locale/en_utf
- modify the {openbiblio}/locale/en_utf8/metadata.php
"locale_description" => "English_utf8"

- image host on flickr
- Setup the library
- Click the admin label
- login the default admin account
- click the library settings
- Locale: switch to English_utf8
- HTML Charset: modify iso-8859-1 to utf-8
- click the Update button
- When create DB (for MySQL5)
SQL:
create database openbiblio CHARACTER SET utf8 COLLATE utf8_general_ci;
- Modify PHP source
openbiblio\Query.php
add line: $rc = Query::act( 'SET NAMES UTF8' ); so that all connection will be UTF8
function connect_e() {
list($this->_link, $e) = Query::_connect_e();
$rc = Query::act( 'SET NAMES UTF8' );
return $e;
}
- Modify PHP source (version 0.6.1)
openbiblio\classes\Query.php
add the two lines: mysql_query("SET CHARACTER SET utf8"); and mysql_query("SET NAMES utf8"); so that all connection will be UTF8
function _connect_e() {
static $link;
if (!isset($link)) {
if (!function_exists('mysql_connect')) {
return array(NULL, new DbError("Checking for MySQL Extension...",
"Unable to connect to database.",
"The MySQL extension is not available"));
}
$link = mysql_connect(OBIB_HOST,OBIB_USERNAME,OBIB_PWD);
mysql_query("SET CHARACTER SET utf8");
mysql_query("SET NAMES utf8");
if (!$link) {
return array(NULL, new DbError("Connecting to database server...",
"Cannot connect to database server.",
mysql_error()));
}
$rc = mysql_select_db(OBIB_DATABASE, $link);
if (!$rc) {
return array(NULL, new DbError("Selecting database...",
"Cannot select database.",
mysql_error($link)));
}
}
return array($link, NULL);
}
- Validation
- click the Cataloging label -> New Bibliography
- add a new Bibliography in Chinese
- & search Bibliography Search in Chinese
- Check MySQL DB table biblio, to see if the string stored in Chinese. You can use freeware Toad for MySQL to do it.
- Try again in Simplified Chinese
- Reference
discussion