0

我做了以下步骤在我的 cakephp2.0 中配置 kaching-php 购物车插件。将插件放在 app/plugin 文件夹中并导入数据库。之后将 app/config/routes.php 中的数据替换为

<?php
include (APP . ‘plugins’ . DS . ‘kaching’ . DS . ‘config’ . DS . ‘routes.php’);
Router::connect(‘/’, array(‘plugin’=>’kaching’, ‘controller’ => ‘carts’, ‘action’ => ‘category’, ‘1’));
?>

在这些配置之后,我得到了这个错误,无法打开流:没有这样的文件或目录然后我将上面的代码更改为

include (APP . 'Plugin' . DS . 'kaching' . DS . 'config' . DS . 'routes.php');
Router::connect('/', array('Plugin'=>'kaching', 'controller' => 'carts', 'action' => 'category', '1')); 

现在我收到此错误错误:找不到 CartsController。

请让我知道我们可以将这些插件与 cakephp2.0 一起使用,或者是否有任何其他购物车插件可以与我们的 cakephp2.0 网站集成。

谢谢

4

1 回答 1

0

这是“插件”而不是“插件”,数组键区分大小写

尝试 :

include (APP . 'Plugin' . DS . 'kaching' . DS . 'config' . DS . 'routes.php');
Router::connect('/', array('plugin'=>'kaching', 'controller' => 'carts', 'action' => 'category', '1'));

希望这可以帮助!

于 2012-05-25T07:49:51.477 回答