a-blog cmsをxampp for macos xに入れてみるには
a-blog cms が、どんどんよくなってきています。 とりあえず、ペパボの3つのサービスについて動作確認が取れました! ここでは、 xampp for macos x の環境にインストールするメモを書き残しておきます。
ioncubeローダーが必要になりますので、以下のリンクからダウンロードします。
/Applications/xampp/etc/httpd.conf
デフォルトの状態だと .htaccess が利用できないようなので httpd.conf の以下の部分を修正します。
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride AuthConfig
を、下のように AuthConfig -> All に変更して下さい。
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
/Applications/xampp/etc/php.ini
ioncubeローダーが動作するように ioncubeローダーの設置先を書きます。この行は存在してないので一番最後くらいに書いて下さい。
zend_extension = /Applications/xampp/xamppfiles/htdocs/ioncube/ioncube_loader_dar_5.2.so
また、画像をアップロードした際に一時的に置くディレクトリの設定が最初されていませんでしたので、upload_tmp_dir を探して追記下さい。
upload_tmp_dir = /Applications/xampp/xamppfiles/temp
これで、あとはインストーラーに従っていけば、Mac OS X の環境下で a-blog cms をインストールできるようになるんじゃないかと思います。