DotProject
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
* [[DotProject]]
フリーのプロジェクト管理ツールです。
#contents
** インストール 1.0
http://www.dotproject.net/からダウンロードします。また日...
tar xzvf loc_japanese_040127.tgz
ではDBとユーザを作っておきましょう。
mysql -u root -p
mysql>create database dotproject;
mysql>grant select,insert,update,delete on dotproject.* ...
mysql>update mysql.user set Password=OLD_PASSWORD('hogep...
mysql>FLUSH PRIVILEGES;
updateの行はMySQL4.1で必要です。ではコンソールからsqlを実...
mysql -u dotproject -phogepass dotproject <dotproject_10...
次はincludeにあるconfig-dist.phpをconfig.phpにコピーしま...
chown -R nobody:nobody dotproject/
では自分の環境に合わせて、config.phpを編集します。
$dPconfig['dbhost'] = "localhost";
$dPconfig['dbname'] = "dotproject"; // Change to match ...
$dPconfig['dbuser'] = "dotproject"; // Change to match ...
$dPconfig['dbpass'] = "hogepass"; // Change to match yo...
$dPconfig['host_locale'] = "ja"
$dPconfig['root_dir'] = "/usr/local/dotproject"; // No ...
$dPconfig['company_name'] = "hoge Co";
$dPconfig['page_title'] = "dotProject";
$dPconfig['base_url'] = "http://localhost/dotproject";
$dPconfig['site_domain'] = "dotproject.net";
では、http://localhost/dotproject/index.phpを開きましょう...
あれ?エラーが出てます。
Table 'dotproject.tasks_sum' doesn't exist
どうも、このtasks_sumはtemporary tableみたいです。ユーザ...
grant ALL PRIVILEGES on dotproject.* to dotproject@local...
もしくは、CREATE TEMPORARY TABLESを指定しておきましょう。...
find . -name '*.inc' | xargs nkf -e -Lu --overwrite
としてやります。
** インストール 2.0
しばらく見ないうちに2.0が出ておりました。あれ?2.0.1があ...
grant ALL PRIVILEGES on dotproject2.* to dotproject2@loc...
FLUSH PRIVILEGES;
DBは作りません。インストーラーが作ってくれます。では
http://localhost/dotproject2/install/index.php
で指示に従っていってインストールしていきます。MySQLの設定...
インストール後、うまくいけば、
Database Installation Feedback: Database successfully ...
Config File Creation Feedback: Config file written succ...
と表示され、
Login and Configure the dotProject System Environment
をクリックします。するとログイン画面がでますので、デフォ...
http://sourceforge.net/projects/dotmods
のJapanese localesは使えるものなのでしょうか。とりあえず...
<?php
$dir = basename(dirname(__FILE__));
$LANGUAGES['ja_JP'] = array ( $dir, 'Japanese', '日本語'...
?>
といったものを作ればいいそうです。
$LANGUAGE['aa_BB'] = array($dir, 'Language Name (in Engli...
で
aa_BB is the iso 2 character language code 'aa', followe...
The first instance of the language name should be in Eng...
The second should be in the native language.
The last field 'xxx' is the Microsoft language code
詳細は[[こちら>http://docs.dotproject.net/tiki-index.php?...
***カレンダー
曜日が化けちゃってます。そこで、インストールフォルダのlib...
//return substr(Date_Calc::getMonthFullname($month), 0, ...
return sprintf("%02d",$month); //追加
modules/calendar/calendar.class.phpの262行目あたりを
//$s .= "\n\t\t<th width=\"14%\">" . htmlentities(utf8_...
$s .= "\n\t\t<th width=\"14%\">" . htmlentities($day, E...
***ガントチャート日本語化
まず[[PHP]]のjpgraphを参考にjpgraphをインストールしておき...
//include ("{$dPconfig['root_dir']}/lib/jpgraph/src/jpgr...
//include ("{$dPconfig['root_dir']}/lib/jpgraph/src/jpgr...
を
include ("jpgraph/jpgraph.php");
include ("jpgraph/jpgraph_gantt.php");
また
$name = $a["task_name"];
if ( $locale_char_set=='utf-8' && function_exists("utf8_...
$name = utf8_decode($name);
}
を
$name = mb_convert_encoding($a["task_name"],"UTF-8","EUC...
/*
$name = $a["task_name"];
if ( $locale_char_set=='utf-8' && function_exists("utf8_...
$name = utf8_decode($name);
}
*/
に変更します。まだ途中....
http://www.gadgety.net/shin/tips/unix/php-gd.html~
http://www.kunitake.org/xoops/modules/weblog/print.php?bl...
http://blade.mars.homeunix.org/modules/wordpress/index.php~
http://www.kalium.net/image/archives/2004/05/dotproject.h...
** リンク
http://shrine.no-ip.info/mt/archives/000143.html~
http://jn-p.com/bchro/Dotproject.html~
http://d.hatena.ne.jp/k05ke/searchdiary?word=*[PHP]~
http://gackn.cocolog-nifty.com/diary/~
** 参考書籍
** コメント
-こんにちは。日本ユーザーコミュニティというのを作ってみま...
-http://shrine.no-ip.info/dp/ -- [[NAO]] &new{2005-05-27 ...
--ありがとうございます!
--#comment
終了行:
* [[DotProject]]
フリーのプロジェクト管理ツールです。
#contents
** インストール 1.0
http://www.dotproject.net/からダウンロードします。また日...
tar xzvf loc_japanese_040127.tgz
ではDBとユーザを作っておきましょう。
mysql -u root -p
mysql>create database dotproject;
mysql>grant select,insert,update,delete on dotproject.* ...
mysql>update mysql.user set Password=OLD_PASSWORD('hogep...
mysql>FLUSH PRIVILEGES;
updateの行はMySQL4.1で必要です。ではコンソールからsqlを実...
mysql -u dotproject -phogepass dotproject <dotproject_10...
次はincludeにあるconfig-dist.phpをconfig.phpにコピーしま...
chown -R nobody:nobody dotproject/
では自分の環境に合わせて、config.phpを編集します。
$dPconfig['dbhost'] = "localhost";
$dPconfig['dbname'] = "dotproject"; // Change to match ...
$dPconfig['dbuser'] = "dotproject"; // Change to match ...
$dPconfig['dbpass'] = "hogepass"; // Change to match yo...
$dPconfig['host_locale'] = "ja"
$dPconfig['root_dir'] = "/usr/local/dotproject"; // No ...
$dPconfig['company_name'] = "hoge Co";
$dPconfig['page_title'] = "dotProject";
$dPconfig['base_url'] = "http://localhost/dotproject";
$dPconfig['site_domain'] = "dotproject.net";
では、http://localhost/dotproject/index.phpを開きましょう...
あれ?エラーが出てます。
Table 'dotproject.tasks_sum' doesn't exist
どうも、このtasks_sumはtemporary tableみたいです。ユーザ...
grant ALL PRIVILEGES on dotproject.* to dotproject@local...
もしくは、CREATE TEMPORARY TABLESを指定しておきましょう。...
find . -name '*.inc' | xargs nkf -e -Lu --overwrite
としてやります。
** インストール 2.0
しばらく見ないうちに2.0が出ておりました。あれ?2.0.1があ...
grant ALL PRIVILEGES on dotproject2.* to dotproject2@loc...
FLUSH PRIVILEGES;
DBは作りません。インストーラーが作ってくれます。では
http://localhost/dotproject2/install/index.php
で指示に従っていってインストールしていきます。MySQLの設定...
インストール後、うまくいけば、
Database Installation Feedback: Database successfully ...
Config File Creation Feedback: Config file written succ...
と表示され、
Login and Configure the dotProject System Environment
をクリックします。するとログイン画面がでますので、デフォ...
http://sourceforge.net/projects/dotmods
のJapanese localesは使えるものなのでしょうか。とりあえず...
<?php
$dir = basename(dirname(__FILE__));
$LANGUAGES['ja_JP'] = array ( $dir, 'Japanese', '日本語'...
?>
といったものを作ればいいそうです。
$LANGUAGE['aa_BB'] = array($dir, 'Language Name (in Engli...
で
aa_BB is the iso 2 character language code 'aa', followe...
The first instance of the language name should be in Eng...
The second should be in the native language.
The last field 'xxx' is the Microsoft language code
詳細は[[こちら>http://docs.dotproject.net/tiki-index.php?...
***カレンダー
曜日が化けちゃってます。そこで、インストールフォルダのlib...
//return substr(Date_Calc::getMonthFullname($month), 0, ...
return sprintf("%02d",$month); //追加
modules/calendar/calendar.class.phpの262行目あたりを
//$s .= "\n\t\t<th width=\"14%\">" . htmlentities(utf8_...
$s .= "\n\t\t<th width=\"14%\">" . htmlentities($day, E...
***ガントチャート日本語化
まず[[PHP]]のjpgraphを参考にjpgraphをインストールしておき...
//include ("{$dPconfig['root_dir']}/lib/jpgraph/src/jpgr...
//include ("{$dPconfig['root_dir']}/lib/jpgraph/src/jpgr...
を
include ("jpgraph/jpgraph.php");
include ("jpgraph/jpgraph_gantt.php");
また
$name = $a["task_name"];
if ( $locale_char_set=='utf-8' && function_exists("utf8_...
$name = utf8_decode($name);
}
を
$name = mb_convert_encoding($a["task_name"],"UTF-8","EUC...
/*
$name = $a["task_name"];
if ( $locale_char_set=='utf-8' && function_exists("utf8_...
$name = utf8_decode($name);
}
*/
に変更します。まだ途中....
http://www.gadgety.net/shin/tips/unix/php-gd.html~
http://www.kunitake.org/xoops/modules/weblog/print.php?bl...
http://blade.mars.homeunix.org/modules/wordpress/index.php~
http://www.kalium.net/image/archives/2004/05/dotproject.h...
** リンク
http://shrine.no-ip.info/mt/archives/000143.html~
http://jn-p.com/bchro/Dotproject.html~
http://d.hatena.ne.jp/k05ke/searchdiary?word=*[PHP]~
http://gackn.cocolog-nifty.com/diary/~
** 参考書籍
** コメント
-こんにちは。日本ユーザーコミュニティというのを作ってみま...
-http://shrine.no-ip.info/dp/ -- [[NAO]] &new{2005-05-27 ...
--ありがとうございます!
--#comment
ページ名: