Home
Packages
Forums
Wiki
GitLab
Security
AUR
Download
コンテンツにスキップ
メインメニュー
メインメニュー
サイドバーに移動
非表示
案内
メインページ
目次
コミュニティに貢献
最近の出来事
おまかせ表示
特別ページ
交流
ヘルプ
貢献
最近の更新
最近の議論
新しいページ
統計
リクエスト
ArchWiki
検索
検索
表示
アカウント作成
ログイン
個人用ツール
アカウント作成
ログイン
InvoicePlaneのソースを表示
ページ
議論
日本語
閲覧
ソースを閲覧
履歴を表示
ツール
ツール
サイドバーに移動
非表示
操作
閲覧
ソースを閲覧
履歴を表示
全般
リンク元
関連ページの更新状況
ページ情報
表示
サイドバーに移動
非表示
←
InvoicePlane
あなたには「このページの編集」を行う権限がありません。理由は以下の通りです:
この操作は、次のグループに属する利用者のみが実行できます:
登録利用者
。
このページのソースの閲覧やコピーができます。
[[Category:オフィス]] [[en:Invoiceplane]] [http://invoiceplane.com InvoicePlane] は見積書・請求書・顧客・入金を管理するセルフホスト型のオープンソースアプリケーションです。 == インストール == {{AUR|invoiceplane}} パッケージをインストールしてください。 == 設定 == === データベース === 以下は [[MariaDB]] を使って Invoiceplane のデータベースをセットアップする例です。データベースの名前は {{ic|invoiceplane}}、ユーザー名は {{ic|invoiceplane}}、パスワードは {{ic|password}} としています: {{bc| CREATE DATABASE invoiceplane; GRANT ALL PRIVILEGES ON invoiceplane.* TO invoiceplane@'localhost' IDENTIFIED BY 'password'; FLUSH PRIVILEGES; }} === PHPの設定 === 公式リポジトリの {{Pkg|php-mcrypt}} を[[インストール]]してください。 そして、{{ic|/etc/php/php.ini}} の mcrypt.so を有効にします。デフォルトのタイムゾーンも設定します。設定しない場合UTCが使われます。 extension=mcrypt.so [Date] ; Defines the default timezone used by the date functions ; http://php.net /date.timezone date.timezone = "Asia/Tokyo" === ウェブサーバー === ==== Apache ==== [[Apache]] の設定ファイルを作成: {{hc|/etc/httpd/conf/extra/invoiceplane.conf|<nowiki> Alias /invoiceplane "/usr/share/webapps/invoiceplane" <Directory "/usr/share/webapps/invoiceplane"> DirectoryIndex index.php AllowOverride All Options FollowSymlinks Require all granted </Directory> </nowiki>}} そして {{ic|/etc/httpd/conf/httpd.conf}} にファイルを記述: # InvoicePlane configuration Include conf/extra/invoiceplane.conf ==== Lighttpd ==== [[Lighttpd]] の設定に invoiceplane のエイリアスを作成: alias.url = ( "/invoiceplane" => "/usr/share/webapps/invoiceplane/") それから設定で mod_alias, mod_fastcgi, mod_cgi を有効にしてください (server.modules セクション)。 ==== Nginx ==== [[nginx]] で invoiceplane を使用するには、まず使用したいサーバーのルートディレクトリを確認してください。ルートディレクトリが {{ic|/srv/http}} の場合、以下のようにシンボリックリンクを作成: # ln -s /usr/share/webapps/invoiceplane/ /srv/http/invoiceplane [[nginx]]の設定ファイルを作成します。 {{hc|/etc/nginx/invoiceplane.conf|<nowiki> server { listen 80; root /srv/http/invoiceplane; index index.php index.html index.htm; server_name invoiceplane.example.com; location / { try_files $uri $uri/ /index.php?q=$uri&$args; } location ~ .php$ { try_files $uri = 404; fastcgi_pass unix:/run/php-fpm/php-fpm.sock; fastcgi_index index.php; include fastcgi.conf; } location = /favicon.ico { log_not_found off; access_log off; } access_log /var/log/nginx/invoiceplane_access.log main; error_log /var/log/nginx/invoiceplane_error.log; } </nowiki>}} そして {{ic|/etc/nginx/nginx.conf}} にファイルを記述: # InvoicePlane configuration include invoiceplane.conf; === インストールウィザード === データベースとウェブサーバーを設定したら、http://yourdomain/invoiceplane/setup からインストールウィザードのページを開いて指示に従ってください。 == ローカリゼーション == 英語以外の言語を使いたい場合は [https://wiki.invoiceplane.com/en/1.0/system/translation-localization Translation / Localization] を参照してください。 == 参照 == * [http://invoiceplane.com 公式ウェブページ] * [https://github.com/InvoicePlane/InvoicePlane/wiki ドキュメント]
このページで使用されているテンプレート:
テンプレート:AUR
(
ソースを閲覧
)
テンプレート:Bc
(
ソースを閲覧
)
テンプレート:Hc
(
ソースを閲覧
)
テンプレート:Ic
(
ソースを閲覧
)
テンプレート:TranslationStatus
(
ソースを閲覧
)
InvoicePlane
に戻る。
検索
検索
InvoicePlaneのソースを表示
話題を追加