在 Netbeans 中为 Symfony Php 框架启用 propel 插件

发布于 2024-09-29 02:46:17 字数 408 浏览 0 评论 0原文

我是 Symfony 框架的新手。我在 Netbeans 6.8 上安装了 Symfony (v1.4.8),并且还获得了初始成功页面。

现在,我想使用 Propel ORM 工具配置数据库。但在 Netbeans 中,我将 Doctrine 作为默认工具启用。我什至没有在“运行命令”窗口中获取 PROPEL 命令。我按照以下说明为 Symfony 配置了 Netbeans: http://netbeans.org/kb/docs/php/symfony-screencast.html

我尝试编辑“ProjectConfiguration.class”但没有成功。有人能帮我解决这个问题吗?

I am new to Symfony framework. I got Symfony (v1.4.8) on my Netbeans 6.8 and also got the initial success page.

Now, I want to Configure a database using Propel ORM Tool. But in Netbeans I am getting Doctrine as the default tool enabled. I am not even getting the PROPEL commands in my Run Commands window. I configured Netbeans for Symfony as per the instructions at:
http://netbeans.org/kb/docs/php/symfony-screencast.html

I tried editing "ProjectConfiguration.class" but of no success. Can anyone help me on this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

懵少女 2024-10-06 02:46:17

伙计们……我似乎用愚蠢的方式解决了这个问题。我修复了项目 Config 文件夹中的 Properties.ini 和 ProjectConfiguration.class.php(我已经这样做了很长时间),然后重新启动了 NetBeans。

我已经加载了所有 Propel 模块...

Guys... I seemed to have solved it the stupid way. I fixed the Properties.ini and ProjectConfiguration.class.php in the Config folder of my project (which I was doing for a long time) and then restarted my NetBeans.

I had all the Propel Modules loaded up...

顾冷 2024-10-06 02:46:17

在 /config/ProjectConfiguration.class.php 中编辑行

$this->enablePlugins('sfDoctrinePlugin');

以加载 Propel 插件:

$this->enablePlugins('sfPropelPlugin');

也在 /config/properties.ini 集中

orm=Propel

In the /config/ProjectConfiguration.class.php edit the line

$this->enablePlugins('sfDoctrinePlugin');

to load the Propel plugin instead:

$this->enablePlugins('sfPropelPlugin');

Also in the /config/properties.ini set

orm=Propel
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文