Linux Memo/mahara
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
**mahara [#t44d99d9]
RIGHT:更新日&lastmod();
maharaはオープンソースのポートフォリオで、日本語化もでき...
**インストール [#c36e9bcb]
以下のサイトから本体をmahara-1.1.2.tar.gzなどをDownload~
http://mahara.org/
以下のサイトから日本語パックja.utf8-refs_heads_1.1_STABLE...
http://wiki.mahara.org/Download_Mahara
***maharaインストール [#h9d1c268]
$ cd ~okada/download/mahara
$ tar zxvf mahara-1.1.2.tar.gz
$ tar zxvf ja.utf8-refs_heads_1.1_STABLE.tar.gz
htdocsが本体なので、それをウェブアクセスフォルダにコピー
$ cd /var/www/html/
$ su
# cp -a ~okada/download/mahara/mahara-1.1.2/htdocs
# mv htdocs mahara-1.1.2
# chown -R apache.apache mahara-1.1.2
# ln -s mahara-1.1.2 mahara
# exit
***日本語パックをインストール [#y39e5e8a]
-htdocs/artefact/blog/lang/xx.utf8/artefact.blog.php
-htdocs/artefact/file/lang/xx.utf8/artefact.file.php
-htdocs/auth/ldap/lang/xx.utf8/auth.ldap.php
-htdocs/interaction/forum/lang/xx.utf8/interaction.forum....
-htdocs/lang/xx.utf8/langconfig.php
のような構造を作成する
$ cd /var/www/html/mahara
$ cp -a ~okada/download/mahara/ja.utf8/* .
これで日本語化はOK
**インストールの続き [#zbdc38de]
書き込み可能なデータディレクトリの作成
&color(red){ただし、webからアクセスできない場所に作成する...
# cd /var/www
# mkdir maharadata
# chown apache.apache maharadata
***DB(Mysql)の設定 [#pcf8c62e]
DBの作成、権限を作成。
mysql> CREATE DATABASE mahara CHARACTER SET utf8;
mysql> grant all on mahara.* to maharauser@localhost ID...
***設定ファイルのの編集 [#hd14eaef]
config-dist.php をconfig.phpに変更して以下の内容を設定
$ cp config-dist.php config.php
DBの種類、DB名、DBユーザ、パスワードの設定と先の書き込み...
''config.php''を編集
// database connection details
// valid values for dbtype are 'postgres8' and 'mysql5'
//$cfg->dbtype = 'postgres8';
$cfg->dbtype = 'mysql5';
$cfg->dbhost = 'localhost';
$cfg->dbport = null;
$cfg->dbname = 'mahara';
$cfg->dbuser = 'maharauser';
$cfg->dbpass = '******';
(略)
// wwwroot - the web-visible path to your Mahara install...
// Normally, this is automatically detected - if it does...
// then try specifying it here
// インストールディレクトリにリンクを使用した場合rootを...
//ありそうだ。
//$cfg->wwwroot = 'http://myhost.com/mahara/';
$cfg->wwwroot = 'http://192.168.10.220/mahara/';
(略)
// This path must be writable by the webserver and outsi...
// place where the Mahara files like index.php have been...
// Mahara will NOT RUN if this is inside your document r...
// this is a big security hole.
//$cfg->dataroot = '/path/to/uploaddir';
$cfg->dataroot = '/var/www/maharadata';
その後以下のcronコマンドを実行
$ php lib/cron.php
問題なければcronの設定
10 * * * * /usr/bin/php /var/www/html/mahara/lib/cron.php
php5.2以降はすでにphp-jsonが含まれているので以下のコマン...
Your server configuration does not include the JSON exte...
this in order to send some data to and from the browser....
is loaded in php.ini, or install it if it is not install...
というエラーが出るので
http://www.aurore.net/projects/php-json/からソースをとっ...
configure, make, make installする必要あり。
上記のcron.phpを動作させるとdatarootにディレクトリができ...
$chmod -R 777 dataroot
ウェブからあとはインストールする。
http//(サーバ)/mahara/
ID admin
pass mahara
パスワード変更後
設定 -> プリファレンスの言語で日本語を選択
サイト設定 -> サイトオプション
言語:日本語
**使用方法 [#q216b8f6]
***プロファイル [#x9e1c425]
プロファイルの中にマイビューを入れるとマイビューが表示さ...
ここでフォルダを指定してアクセス権をグループのメンバーを...
同じことがグループのファイルでもできるが、同じファイル名...
***マイファイル [#uee99113]
作成したフォルダは中にファイルがあるときは削除ボタンが表...
***ファイル名の日本語 [#f82920c8]
Upするときは問題ないがIE7(もしかするとすべてのIE)でDownl...
Operaは問題ないようだ。IEでUPOperaでDownでもOKなようだ。...
特に、他ユーザにまいフォルダを見せてDownloadさせる場合は...
終了行:
**mahara [#t44d99d9]
RIGHT:更新日&lastmod();
maharaはオープンソースのポートフォリオで、日本語化もでき...
**インストール [#c36e9bcb]
以下のサイトから本体をmahara-1.1.2.tar.gzなどをDownload~
http://mahara.org/
以下のサイトから日本語パックja.utf8-refs_heads_1.1_STABLE...
http://wiki.mahara.org/Download_Mahara
***maharaインストール [#h9d1c268]
$ cd ~okada/download/mahara
$ tar zxvf mahara-1.1.2.tar.gz
$ tar zxvf ja.utf8-refs_heads_1.1_STABLE.tar.gz
htdocsが本体なので、それをウェブアクセスフォルダにコピー
$ cd /var/www/html/
$ su
# cp -a ~okada/download/mahara/mahara-1.1.2/htdocs
# mv htdocs mahara-1.1.2
# chown -R apache.apache mahara-1.1.2
# ln -s mahara-1.1.2 mahara
# exit
***日本語パックをインストール [#y39e5e8a]
-htdocs/artefact/blog/lang/xx.utf8/artefact.blog.php
-htdocs/artefact/file/lang/xx.utf8/artefact.file.php
-htdocs/auth/ldap/lang/xx.utf8/auth.ldap.php
-htdocs/interaction/forum/lang/xx.utf8/interaction.forum....
-htdocs/lang/xx.utf8/langconfig.php
のような構造を作成する
$ cd /var/www/html/mahara
$ cp -a ~okada/download/mahara/ja.utf8/* .
これで日本語化はOK
**インストールの続き [#zbdc38de]
書き込み可能なデータディレクトリの作成
&color(red){ただし、webからアクセスできない場所に作成する...
# cd /var/www
# mkdir maharadata
# chown apache.apache maharadata
***DB(Mysql)の設定 [#pcf8c62e]
DBの作成、権限を作成。
mysql> CREATE DATABASE mahara CHARACTER SET utf8;
mysql> grant all on mahara.* to maharauser@localhost ID...
***設定ファイルのの編集 [#hd14eaef]
config-dist.php をconfig.phpに変更して以下の内容を設定
$ cp config-dist.php config.php
DBの種類、DB名、DBユーザ、パスワードの設定と先の書き込み...
''config.php''を編集
// database connection details
// valid values for dbtype are 'postgres8' and 'mysql5'
//$cfg->dbtype = 'postgres8';
$cfg->dbtype = 'mysql5';
$cfg->dbhost = 'localhost';
$cfg->dbport = null;
$cfg->dbname = 'mahara';
$cfg->dbuser = 'maharauser';
$cfg->dbpass = '******';
(略)
// wwwroot - the web-visible path to your Mahara install...
// Normally, this is automatically detected - if it does...
// then try specifying it here
// インストールディレクトリにリンクを使用した場合rootを...
//ありそうだ。
//$cfg->wwwroot = 'http://myhost.com/mahara/';
$cfg->wwwroot = 'http://192.168.10.220/mahara/';
(略)
// This path must be writable by the webserver and outsi...
// place where the Mahara files like index.php have been...
// Mahara will NOT RUN if this is inside your document r...
// this is a big security hole.
//$cfg->dataroot = '/path/to/uploaddir';
$cfg->dataroot = '/var/www/maharadata';
その後以下のcronコマンドを実行
$ php lib/cron.php
問題なければcronの設定
10 * * * * /usr/bin/php /var/www/html/mahara/lib/cron.php
php5.2以降はすでにphp-jsonが含まれているので以下のコマン...
Your server configuration does not include the JSON exte...
this in order to send some data to and from the browser....
is loaded in php.ini, or install it if it is not install...
というエラーが出るので
http://www.aurore.net/projects/php-json/からソースをとっ...
configure, make, make installする必要あり。
上記のcron.phpを動作させるとdatarootにディレクトリができ...
$chmod -R 777 dataroot
ウェブからあとはインストールする。
http//(サーバ)/mahara/
ID admin
pass mahara
パスワード変更後
設定 -> プリファレンスの言語で日本語を選択
サイト設定 -> サイトオプション
言語:日本語
**使用方法 [#q216b8f6]
***プロファイル [#x9e1c425]
プロファイルの中にマイビューを入れるとマイビューが表示さ...
ここでフォルダを指定してアクセス権をグループのメンバーを...
同じことがグループのファイルでもできるが、同じファイル名...
***マイファイル [#uee99113]
作成したフォルダは中にファイルがあるときは削除ボタンが表...
***ファイル名の日本語 [#f82920c8]
Upするときは問題ないがIE7(もしかするとすべてのIE)でDownl...
Operaは問題ないようだ。IEでUPOperaでDownでもOKなようだ。...
特に、他ユーザにまいフォルダを見せてDownloadさせる場合は...
ページ名: