0

我正在尝试修改以前的开发人员的应用程序,并且我相信我在模仿以前的控制器,但不断收到此错误。阅读后,看来我的代码是正确的,但显然不是。这是我的文件代码 .../public_html/protected/controllers/ProcessRawDataController.php

<?php
class ProcessRawData extends Controller {
   public function actionIndex()
   {
      echo 'bla';
      exit;
   }
}
?>

当我转到此 URL:mydomain.com/index.php?r=processRawData/index 或 mydomain.com/index.php?r=processRawData 时,我收到错误消息。我也尝试更改为所有小写字母,结果相同。

4

1 回答 1

0

发布此问题后,我才意识到错误。类声明缺少“控制器”一词。它应该读

class ProcessRawDataController extends Controller {

于 2013-08-02T15:53:24.513 回答