Last active
August 19, 2016 23:57
-
-
Save kazumich/6d15a6eefff2da60b240 to your computer and use it in GitHub Desktop.
XSERVER 用の a-blog cms 2.6.1.3 インストーラーです。phpのバージョンに合わせて a-blog cms のダウンロードや、ioncubeローダーのダウンロードも自動化しています。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// -------------------------- | |
// | |
// XSERVER用 a-blog cms 2.6.1.3 インストーラー | |
// | |
// -------------------------- | |
# インストーラー の | |
# MySQL の設定を事前に行う場合に | |
# ここを設定してください。 | |
$dbHost = 'mysql@@@@.xserver.jp'; | |
$dbName = ''; | |
$dbUser = ''; | |
$dbPass = ''; | |
// -------------------------- | |
// a-blog cms Ver. 2.6.1.3 設定 | |
// -------------------------- | |
# ダウンロード元 URL | |
$download55 = "http://www.a-blogcms.jp/_download/2613/php53x/acms2613_install_53x.zip"; | |
$download56 = "http://www.a-blogcms.jp/_download/2613/php56x/acms2613_install_56x.zip"; | |
# ダウンロード後のZipファイル名 | |
$zipFile = "./acms2613_install.zip"; | |
# 解凍後の全体フォルダ名 | |
$zipAfterDirName55 = "acms2613_install_53x"; | |
$zipAfterDirName56 = "acms2613_install_56x"; | |
# 解凍後の a-blog cms のフォルダ名 | |
$cmsDirName = "ablogcms"; | |
# ioncube Loader ダウンロード元 URL | |
$downloadIoncube = "http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.zip"; | |
# ioncube Loader ダウンロード後のZipファイル名 | |
$zipFileIoncube ="ioncube.zip"; | |
$installPath = realpath('.'); | |
$phpName = basename($_SERVER['PHP_SELF']); | |
// -------------------------- | |
// バージョンのチェック | |
// -------------------------- | |
$versionArray = explode(".", phpversion()); | |
$version = $versionArray[0].".".$versionArray[1]; | |
if ($versionArray[1] == 7) { | |
echo "php ".phpversion()." Not Supported."; | |
exit; | |
} elseif ($versionArray[1] >= 6) { | |
$download = $download56; | |
$zipAfterDirName = $zipAfterDirName56; | |
} elseif ($versionArray[1] == 5) { | |
$download = $download55; | |
$zipAfterDirName = $zipAfterDirName55; | |
} else { | |
echo "Please use the php 5.5 or 5.6."; | |
exit; | |
} | |
$ablogcmsDir = $installPath."/".$zipAfterDirName."/".$cmsDirName."/"; | |
// -------------------------- | |
// a-blog cms ファイルをダウンロード | |
// -------------------------- | |
$fp = fopen($download, "r"); | |
if ($fp !== FALSE) { | |
file_put_contents($zipFile, ""); | |
while(!feof($fp)) { | |
$buffer = fread($fp, 4096); | |
if ($buffer !== FALSE) { | |
file_put_contents($zipFile, $buffer, FILE_APPEND); | |
} | |
} | |
fclose($fp); | |
} else { | |
echo 'a-blog cms download Error ! : '.$download; | |
exit; | |
} | |
// -------------------------- | |
// a-blog cms ファイルを解凍 | |
// -------------------------- | |
$zip = new ZipArchive(); | |
$res = $zip->open($zipFile); | |
if($res === true){ | |
$zip->extractTo($installPath); | |
$zip->close(); | |
} else { | |
echo 'a-blog cms unZip Error ! : '. $zipFile; | |
exit; | |
} | |
// -------------------------- | |
// a-blog cms ディレクトリを移動 | |
// -------------------------- | |
if ($handle = opendir($ablogcmsDir)) { | |
while(false !== ($entry = readdir($handle))) { | |
if ($entry != "." && $entry != "..") { | |
rename($ablogcmsDir.$entry, $installPath ."/". $entry); | |
} | |
} | |
closedir($handle); | |
} else { | |
echo 'a-blog cms move Error ! :'.$ablogcmsDir; | |
exit; | |
} | |
// -------------------------- | |
// ioncube ファイルをダウンロード | |
// -------------------------- | |
$fp = fopen($downloadIoncube, "r"); | |
if ($fp !== FALSE) { | |
file_put_contents($zipFileIoncube, ""); | |
while(!feof($fp)) { | |
$buffer = fread($fp, 4096); | |
if ($buffer !== FALSE) { | |
file_put_contents($zipFileIoncube, $buffer, FILE_APPEND); | |
} | |
} | |
fclose($fp); | |
} else { | |
echo 'ioncube loader download Error ! : '.$download; | |
exit; | |
} | |
// -------------------------- | |
// ioncube ファイルを解凍 | |
// -------------------------- | |
$zip = new ZipArchive(); | |
$res = $zip->open($zipFileIoncube); | |
if($res === true){ | |
$zip->extractTo($installPath); | |
$zip->close(); | |
} else { | |
echo 'ioncube loader unZip Error ! : '. $zipFileIoncube; | |
exit; | |
} | |
// -------------------------- | |
// php.ini の設定 | |
// -------------------------- | |
$iniFile = php_ini_loaded_file(); | |
if (preg_match("/xserver_php/i", $iniFile)) { | |
# 既存の php.ini に ioncube の設定があるかをチェック | |
$file = file_get_contents($iniFile); | |
if (preg_match("/ioncube_loader/i", $file)) { | |
#設定済み | |
} else { | |
$pattern = '/\[Zend Optimizer\]/'; | |
$ioncube = sprintf("zend_extension = \"%s/ioncube/ioncube_loader_lin_%s.so\"",$installPath,$version); | |
$replacement = '[Zend Optimizer]'."\n".$ioncube; | |
$file = preg_replace($pattern, $replacement, $file); | |
file_put_contents($iniFile, $file); | |
} | |
} else { | |
if (preg_match("/public_html/i", $iniFile)) { | |
# 既に php.ini が存在しているのでバックアップ。 | |
rename("./php.ini", './php.ini_backup_'.date("YmdHis")); | |
} | |
# php.ini を新規作成 | |
$iniFileName = "php.ini"; | |
$iniData = sprintf("date.timezone = 'Asia/Tokyo'\nzend_extension = \"%s/ioncube/ioncube_loader_lin_5.%d.so\"",$installPath,$versionArray[1]); | |
file_put_contents($installPath."/".$iniFileName, $iniData, FILE_APPEND | LOCK_EX); | |
# setupディレクトリにも php.ini が必要な時のために | |
copy($installPath."/php.ini", $installPath."/setup/php.ini"); | |
} | |
// -------------------------- | |
// .htaccess の設定 | |
// -------------------------- | |
$moto_htaccessFile = ".htaccess"; | |
if (is_file($moto_htaccessFile)) { | |
$htaccessData = file_get_contents($moto_htaccessFile); | |
$cms_htaccessData = file_get_contents("htaccess.txt"); | |
$file = fopen( "./.htaccess", "w+" ); | |
fwrite( $file, $htaccessData ); | |
fwrite( $file, "\n\n".$cms_htaccessData ); | |
fclose( $file ); | |
} else { | |
rename($installPath."/htaccess.txt", $installPath.'/.htaccess'); | |
} | |
rename($installPath."/archives/htaccess.txt", $installPath.'/archives/.htaccess'); | |
rename($installPath."/archives_rev/htaccess.txt", $installPath.'/archives_rev/.htaccess'); | |
rename($installPath."/media/htaccess.txt", $installPath.'/media/.htaccess'); | |
rename($installPath."/private/htaccess.txt", $installPath.'/private/.htaccess'); | |
rename($installPath."/themes/htaccess.txt", $installPath.'/themes/.htaccess'); | |
// -------------------------- | |
// ファイルの削除 | |
// -------------------------- | |
unlink($zipFile); | |
unlink($zipFileIoncube); | |
unlink($phpName); | |
# index.html があった時にリネームしておく | |
if (is_file("./index.html")) { | |
rename("./index.html", "_index.html"); | |
} | |
unlink($installPath."/ioncube/loader-wizard.php"); | |
# プログラム以外のディレクトリを削除 | |
dir_shori("delete", $zipAfterDirName); | |
// -------------------------- | |
// インストーラーに飛ぶ | |
// -------------------------- | |
if (preg_match("/public_html/i", $iniFile)) { | |
$jump = str_replace($phpName, "", $_SERVER['SCRIPT_NAME']); | |
header("Location: " . $jump); | |
} else { | |
?> | |
<!DOCTYPE HTML> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>a-blog cms インストーラー (XSERVER版)</title> | |
</head> | |
<body> | |
<?php | |
$jump = "http://".$_SERVER['HTTP_HOST'].str_replace($phpName, "", $_SERVER['SCRIPT_NAME']); | |
echo sprintf('<p style="text-align:center; margin-top:100px"><a href="%s">%s</a> にアクセスしてエラーが出る場合には、<br>設定した php.ini の設定が有効になっていません。</p>',$jump,$jump); | |
?> | |
<p style="text-align:center;">コントロールパネルの「php.ini設定のphp.ini直接編集」にアクセスし何も変更せずに保存するか、<br>しばらく時間をおいてアクセスしてみてください。<br>設定した php.ini が有効になりインストーラーが起動します。</p> | |
</body> | |
</html> | |
<?php | |
} | |
// -------------------------- | |
// ディレクトリを操作 function ( move / copy / delete ) | |
// -------------------------- | |
function dir_shori ($shori, $nowDir , $newDir="") { | |
if ($shori != "delete") { | |
if (!is_dir($newDir)) { | |
mkdir($newDir); | |
} | |
} | |
if (is_dir($nowDir)) { | |
if ($handle = opendir($nowDir)) { | |
while (($file = readdir($handle)) !== false) { | |
if ($file != "." && $file != "..") { | |
if ($shori == "copy") { | |
if (is_dir($nowDir."/".$file)) { | |
dir_shori("copy", $nowDir."/".$file, $newDir."/".$file); | |
} else { | |
copy($nowDir."/".$file, $newDir."/".$file); | |
} | |
} elseif ($shori == "move") { | |
rename($nowDir."/".$file, $newDir."/".$file); | |
} elseif ($shori == "delete") { | |
if (filetype($nowDir."/".$file) == "dir") { | |
dir_shori("delete", $nowDir."/".$file, ""); | |
} else { | |
unlink($nowDir."/".$file); | |
} | |
} | |
} | |
} | |
closedir($handle); | |
} | |
} | |
if ($shori == "move" || $shori == "delete") { | |
rmdir($nowDir); | |
} | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment