symfony: “干净模型文件”对于推进?

发布于 2024-09-30 17:56:34 字数 356 浏览 0 评论 0原文

当我尝试 build-all-load 时,我收到有关模型的错误 我的架构中不再存在。我知道在教义上我可以使用 clean-model-files 但在 propel 中?

这是错误:

PHP Warning:  require(lib/model/om/BaseSedii18n.php): failed to open stream: No such file or directory in /home/javier/Aptana_Studio_Workspace/cashgold/lib/model/Sedii18n.php on line 3

哈维尔

when i try build-all-load i'm getting errors about models that
doesn't exist any more in my schema. I know in doctrine i can use
clean-model-files but in propel?

This is the error:

PHP Warning:  require(lib/model/om/BaseSedii18n.php): failed to open stream: No such file or directory in /home/javier/Aptana_Studio_Workspace/cashgold/lib/model/Sedii18n.php on line 3

Javier

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

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

发布评论

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

评论(1

离旧人 2024-10-07 17:56:34

我想在propel中没有类似的任务。

您可以尝试下面的 bash 脚本。 首先备份您的代码。我假设你是某种版本控制系统。

这应该列出导致您的问题的文件:

./symfony s 2>&1 | grep "failed to open stream" | sed -e 's/.*directory in \([^ ]\+\/lib\/model\/[^ ]\+\).*/\1/' | sort -u

删除所有这些文件(在删除每个文件之前系统会询问您):

rm -i $(./symfony s 2>&1 | grep "failed to open stream" | sed -e 's/.*directory in \([^ ]\+\/lib\/model\/[^ ]\+\).*/\1/' | sort -u)

I guess there's no similar task in propel.

You could try a bash script below. Backup your code first. I assume you're some kind of version control system.

This should list files causing your problems:

./symfony s 2>&1 | grep "failed to open stream" | sed -e 's/.*directory in \([^ ]\+\/lib\/model\/[^ ]\+\).*/\1/' | sort -u

Remove all those files with (you'll be asked before deleting each file):

rm -i $(./symfony s 2>&1 | grep "failed to open stream" | sed -e 's/.*directory in \([^ ]\+\/lib\/model\/[^ ]\+\).*/\1/' | sort -u)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文