2007/01/30 14:32
tar zxvf Smarty-x.x.x.tar.gz
cd /usr/local/src/Smarty-x.x.x
mv /usr/local/src/Smarty-x.x.x/libs /usr/local/lib/php/Smarty
require_once ("Smarty/Smarty.class.php");chown nobody:nogroup templates_c chown nobody:nogroup cache
chmod 770 templates_c chmod 770 cache
<?php
//Smartyクラス読み込み
require_once ("Smarty/Smarty.class.php");
//Smartyオブジェクト作成
$objSmarty = new Smarty();
//Smartyディレクトリの指定
$objSmarty->template_dir = "/home/(UserName)/Smarty/(ApplicationName)/templates";
$objSmarty->compile_dir = "/home/(UserName)/Smarty/(ApplicationName)/templates_c";
$objSmarty->config_dir = "/home/(UserName)/Smarty/(ApplicationName)/configs";
$objSmarty->cache_dir = "/home/(UserName)/Smarty/(ApplicationName)/cache";
?>
関連記事