12/08/05 22:28:47.42 R26XMbHJ
いろいろと試してみたところ、ログイン認証以前の問題が発生している様です。
コントローラ+アクションを作成したにも関わらずブラウザにURLを指定するとInternal Server Errorが起きてます。
助けてぇええええ
★関連する各種ソース
【Config/routes.php】
Router::connect('/', array('controller' => 'tops', 'action' => 'index'));
【TopsController.php】
<?php
class TopsController extends AppController
{
public function index()
{
//デフォルトレイアウト
$this->layout = "ps-default";
}
}
?>
★アクセスパターン①
URLリンク(hogehoge.com)
→正常にアクセス出来てます。
★アクセスパターン②
URLリンク(hogehoge.com)
→ Internal Serve Error が表示されてしまいます。