如何从 sfPropelORMPlugin 加载 sfPropelPager?
symfony 已经有 sfPropelPager 并且它似乎优先于插件中的一个。 而且它与插件 ORM 不兼容,从而导致 SQL 中出现严重错误。 更改自动加载来解决此问题的正确方法是什么?
<?php
require_once '/usr/share/php/symfony/autoload/sfCoreAutoload.class.php';
sfCoreAutoload::register();
class ProjectConfiguration extends sfProjectConfiguration
{
public function setup()
{
$this->enableAllPluginsExcept(array('sfDoctrinePlugin', 'sfPropelPlugin'));
$this->enablePlugins(array('sfPropelORMPlugin'));
}
}
symfony already has sfPropelPager and it seems to take precedence of one from plugin.
And it is incompatible with plugin ORM thus causing nasty errors in SQL.
What's the right way to change autoload to fix this problem?
<?php
require_once '/usr/share/php/symfony/autoload/sfCoreAutoload.class.php';
sfCoreAutoload::register();
class ProjectConfiguration extends sfProjectConfiguration
{
public function setup()
{
$this->enableAllPluginsExcept(array('sfDoctrinePlugin', 'sfPropelPlugin'));
$this->enablePlugins(array('sfPropelORMPlugin'));
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须禁用普通的旧sfPropelPlugin:
You have to disable the plain old sfPropelPlugin: