Windows
Apache PHP MriaDB(MySQL)
① Apacheの設定
1.httpd.confを修正 ServerAdmin postmaster@xxxxxx.com ServerName xxxxxx.com:80 2.httpd-ssl.confを修正 <VirtualHost _default_:443> # General setup for the virtual host DocumentRoot "C:/xampp/htdocs/xxxxxxx" ServerName xxxxxx.com ServerAlias www.xxxxxx.com ServerAdmin admin@xxxxxxt.com ErrorLog "C:/xampp/apache/logs/error.log" TransferLog "C:/xampp/apache/logs/access.log"
② PHPの設定
1.Dynamic Extensions ; extension=gd 2.[mbstring] mbstring.internal_encoding = UTF-8 mbstring.http_input = pass mbstring.http_output = pass mbstring.encoding_translation = Off mbstring.detect_order = UTF-8,SJIS,EUC-JP,JIS,ASCII mbstring.substitute_character = none mbstring.strict_detection = Off 3.[Date] date.timezone = Asia/Tokyo #最終行近くの[Date]も修正 ;date.timezone=Europe/Berlin→Asia/Tokyo
③ MariaDB(MySQL)の設定を確認
Xampp ControlPanel右側から三番目のコマンドプロンプトオープン
1.[
2.root アカウントに設定するパスワードを入力して Enter。
3.確認のためにもう一度同じパスワードを入力し Enter キー。
確認のために「
MariaDB への接続を終了する場合は 「
④ my.ini(MySQL)ファイルを開く
/* Authentication type and info */ $cfg['Servers'][$i]['auth_type'] = 'cookie';←修正 $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'xxxxxxxxxx';←入力 $cfg['Servers'][$i]['extension'] = 'mysqli'; $cfg['Servers'][$i]['AllowNoPassword'] = true; $cfg['Lang'] = '';
以上が整った段階でWordpressのインストールの準備、WordPressのインストール後、ただちに