phpBB on FreeBSD
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
CONTENTS
#contents
----
Lastmodified &lastmod;
----
* phpbb3 と php56-mysql [#v8da7081]
phpbb3.2.2をクリーンインストールしたら、php56-mysqlがイン...
# portinstall databases/php56-mysql
【Solved!】
*font-familyの変更 [#wee16f41]
font-family は、
/usr/local/www/XPJ/styles/prosilver/theme/stylesheet.css
@import url("normalize.css?v=3.2");
@import url("base.css?v=3.2");
@import url("utilities.css?v=3.2");
@import url("common.css?v=3.2");
@import url("links.css?v=3.2");
@import url("content.css?v=3.2");
@import url("buttons.css?v=3.2");
@import url("cp.css?v=3.2");
@import url("forms.css?v=3.2");
@import url("icons.css?v=3.2");
@import url("colours.css?v=3.2");
@import url("responsive.css?v=3.2");
【参考サイト】
http://dev.activebasic.com/egtra/2017/04/08/964/
なお、実際には、phpBB3/styles/subsilver2/theme/jaに日本...
https://www.activebasic.com/forum/styles/subsilver2/theme...
body {
font-family: "Lucida Grande", Verdana, Helvetica, Arial...
}
.forumrules, .copyright, input, textarea, select, .btnbb...
font-family: inherit;
}
h1, .postbody, .quotecontent, .attachcontent {
font-family: "Lucida Grande", "Trebuchet MS", HiraginoS...
}
h2, h3 {
font-family: Helvetica, Arial, HiraginoSans, "Hiragino ...
}
.titles, a.forumlink, a.topictitle, input {
font-family: "Lucida Grande", Helvetica, Arial, Hiragin...
}
.codecontent, pre {
font-family: Monaco, Consolas, monospace;
}
*phpBB3 Japanese LP のインストールメモ [#p864329b]
https://www.phpbb.com/downloads/
https://www.phpbb.com/languages/index.php?first_char=j#pa...
https://www.phpbb.com/customise/db/translation/japanese/
/usr/local/www/phpBB3/.htaccess: RewriteEngine not allow...
http://hig3.hatenadiary.com/entry/20091115/1258238075
phpBB3.conf
Alias /phpBB3 "/usr/local/www/phpBB3/"
<Directory "/usr/local/www/phpBB3/">
RewriteEngine On
Options +SymLinksIfOwnerMatch +ExecCGI
AllowOverride FileInfo AuthConfig
Require all granted
</Directory>
/usr/local/www/phpBB3/language/ja/acp/common.php
/usr/local/www/phpBB3/language/ja/common.php
'COLON' => ':',
**Data Backup [#l0a15afd]
+CP上のバックアップはDB(MySQL)のデータ。
+画像などは、FQDN:/usr/local/www/phpBB3/files 以下にある。
----
*---- [#hfbf5241]
*Installing phpbb-2.0.23... [#gaa6750e]
--------------------------------------------------------...
phpBB2 has been installed, but is not quite ready to be ...
You have to ensure that you have a database server (or O...
remote database) installed and configured, and you have ...
PHP installation has been compiled with support for your...
database access method. You have to create a database f...
and ensure that this database may be accessed and change...
under which your web server executes. Further informati...
installation procedures may be found in:
/usr/local/share/doc/phpbb/README.html
Once these steps have been taken, you may connect to the...
configure your installation of phpBB2:
http://localhost/phpBB2/
After configuring phpBB2 and ensuring that it is operati...
delete the following files manually for security purpose...
/usr/local/www/phpBB2:
/usr/local/www/phpBB2/install/install.php /usr/local/w...
Duplicates of these files have been installed to /usr/lo...
/usr/local/share/phpbb/contrib contains contributed soft...
--------------------------------------------------------...
*phpBB のインストールメモ [#g1527531]
http://sourceforge.jp/projects/phpbb2i18n/releases/
/usr/home/tfc/public_html/ へ phpBB2-0-23eucjp_full_rev1...
# cd /usr/home/tfc/public_html/
# unzip phpBB2-0-23eucjp_full_rev1-0-0.zip
# chown -R www:www forum/
# chmod -R 775 forum/
# chmod -R 777 forum/images/avatars/
**MySQLでデータベースを作る [#ze4bc2df]
% mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 202
Server version: 5.1.28-rc-log FreeBSD port: mysql-server...
Type 'help;' or '\h' for help. Type '\c' to clear the bu...
mysql> create database TFC;
Query OK, 1 row affected (0.00 sec)
mysql> use TFC
Database changed
mysql> grant all privileges on TFC.*
-> to tfc@localhost identified by 'tasaka';
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
**phpBB の初期設定 [#jc4ce3c3]
http://www.thousand-winds.net/~tfc/forum/install/install....
***削除・? [#b76a03ea]
% cd /usr/home/tfc/public_html/forum
% mv install/ install-dist
% mv contrib/ contrib-dist
http://www.kozupon.com/db/mysql.html
**database の削除 [#ldd3ea1e]
piano:root {117} % mysqladmin -u root -p drop TFC
Enter password:
Dropping the database is potentially a very bad thing to...
Any data stored in the database will be destroyed.
Do you really want to drop the 'TFC' database [y/N] y
Database "TFC" dropped
#vote([[Mew>portsの活用#mew]][14], [[Mutt>portsの活用#mut...
----
Total access &counter(total);:本日 &counter(today);:昨...
#counter([total|today|yesterday]);
終了行:
CONTENTS
#contents
----
Lastmodified &lastmod;
----
* phpbb3 と php56-mysql [#v8da7081]
phpbb3.2.2をクリーンインストールしたら、php56-mysqlがイン...
# portinstall databases/php56-mysql
【Solved!】
*font-familyの変更 [#wee16f41]
font-family は、
/usr/local/www/XPJ/styles/prosilver/theme/stylesheet.css
@import url("normalize.css?v=3.2");
@import url("base.css?v=3.2");
@import url("utilities.css?v=3.2");
@import url("common.css?v=3.2");
@import url("links.css?v=3.2");
@import url("content.css?v=3.2");
@import url("buttons.css?v=3.2");
@import url("cp.css?v=3.2");
@import url("forms.css?v=3.2");
@import url("icons.css?v=3.2");
@import url("colours.css?v=3.2");
@import url("responsive.css?v=3.2");
【参考サイト】
http://dev.activebasic.com/egtra/2017/04/08/964/
なお、実際には、phpBB3/styles/subsilver2/theme/jaに日本...
https://www.activebasic.com/forum/styles/subsilver2/theme...
body {
font-family: "Lucida Grande", Verdana, Helvetica, Arial...
}
.forumrules, .copyright, input, textarea, select, .btnbb...
font-family: inherit;
}
h1, .postbody, .quotecontent, .attachcontent {
font-family: "Lucida Grande", "Trebuchet MS", HiraginoS...
}
h2, h3 {
font-family: Helvetica, Arial, HiraginoSans, "Hiragino ...
}
.titles, a.forumlink, a.topictitle, input {
font-family: "Lucida Grande", Helvetica, Arial, Hiragin...
}
.codecontent, pre {
font-family: Monaco, Consolas, monospace;
}
*phpBB3 Japanese LP のインストールメモ [#p864329b]
https://www.phpbb.com/downloads/
https://www.phpbb.com/languages/index.php?first_char=j#pa...
https://www.phpbb.com/customise/db/translation/japanese/
/usr/local/www/phpBB3/.htaccess: RewriteEngine not allow...
http://hig3.hatenadiary.com/entry/20091115/1258238075
phpBB3.conf
Alias /phpBB3 "/usr/local/www/phpBB3/"
<Directory "/usr/local/www/phpBB3/">
RewriteEngine On
Options +SymLinksIfOwnerMatch +ExecCGI
AllowOverride FileInfo AuthConfig
Require all granted
</Directory>
/usr/local/www/phpBB3/language/ja/acp/common.php
/usr/local/www/phpBB3/language/ja/common.php
'COLON' => ':',
**Data Backup [#l0a15afd]
+CP上のバックアップはDB(MySQL)のデータ。
+画像などは、FQDN:/usr/local/www/phpBB3/files 以下にある。
----
*---- [#hfbf5241]
*Installing phpbb-2.0.23... [#gaa6750e]
--------------------------------------------------------...
phpBB2 has been installed, but is not quite ready to be ...
You have to ensure that you have a database server (or O...
remote database) installed and configured, and you have ...
PHP installation has been compiled with support for your...
database access method. You have to create a database f...
and ensure that this database may be accessed and change...
under which your web server executes. Further informati...
installation procedures may be found in:
/usr/local/share/doc/phpbb/README.html
Once these steps have been taken, you may connect to the...
configure your installation of phpBB2:
http://localhost/phpBB2/
After configuring phpBB2 and ensuring that it is operati...
delete the following files manually for security purpose...
/usr/local/www/phpBB2:
/usr/local/www/phpBB2/install/install.php /usr/local/w...
Duplicates of these files have been installed to /usr/lo...
/usr/local/share/phpbb/contrib contains contributed soft...
--------------------------------------------------------...
*phpBB のインストールメモ [#g1527531]
http://sourceforge.jp/projects/phpbb2i18n/releases/
/usr/home/tfc/public_html/ へ phpBB2-0-23eucjp_full_rev1...
# cd /usr/home/tfc/public_html/
# unzip phpBB2-0-23eucjp_full_rev1-0-0.zip
# chown -R www:www forum/
# chmod -R 775 forum/
# chmod -R 777 forum/images/avatars/
**MySQLでデータベースを作る [#ze4bc2df]
% mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 202
Server version: 5.1.28-rc-log FreeBSD port: mysql-server...
Type 'help;' or '\h' for help. Type '\c' to clear the bu...
mysql> create database TFC;
Query OK, 1 row affected (0.00 sec)
mysql> use TFC
Database changed
mysql> grant all privileges on TFC.*
-> to tfc@localhost identified by 'tasaka';
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
**phpBB の初期設定 [#jc4ce3c3]
http://www.thousand-winds.net/~tfc/forum/install/install....
***削除・? [#b76a03ea]
% cd /usr/home/tfc/public_html/forum
% mv install/ install-dist
% mv contrib/ contrib-dist
http://www.kozupon.com/db/mysql.html
**database の削除 [#ldd3ea1e]
piano:root {117} % mysqladmin -u root -p drop TFC
Enter password:
Dropping the database is potentially a very bad thing to...
Any data stored in the database will be destroyed.
Do you really want to drop the 'TFC' database [y/N] y
Database "TFC" dropped
#vote([[Mew>portsの活用#mew]][14], [[Mutt>portsの活用#mut...
----
Total access &counter(total);:本日 &counter(today);:昨...
#counter([total|today|yesterday]);
ページ名: