尝试通过 Windows XP 同步 Symfony 项目时 Rsync 挂起/冻结

发布于 2024-10-17 11:33:42 字数 203 浏览 4 评论 0原文

我的 Symfony 1.3 项目无法与我的 SSH 服务器正确同步。

我安装了 cygWin 和 cwRsync,我的 PHP 本地版本是 5.2.11

我在 Symfony 1.0 的任何早期版本上都没有任何问题,但现在我的命令行工具要么挂起而没有响应,要么关闭而不让我查看输出脚本的。

还有其他人遇到过这个问题吗?

谢谢!

My Symfony 1.3 project does not sync correctly with my SSH server.

I have cygWin and cwRsync installed and my local version of PHP is 5.2.11

I did not have any issues on any early versions of Symfony 1.0 but now my command line tools either hang with no response, or they close without letting me review the output of the script.

Has anyone else had this issue?

Thanks!

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

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

发布评论

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

评论(1

勿忘初心 2024-10-24 11:33:42

在 PEAR 文件夹中找到 sfProjectDeployTask.class.php 文件

对我来说它在这里:

\php5.2.11\PEAR\symfony13\task\project

在第 162 行找到如下代码:

$command = "rsync $dryRun $parameters -e $ssh ./ $user$host:$dir";

并将其更改为:

$command = "start cmd /k rsync $dryRun $parameters -e $ssh ./ $user$host:$dir";

Find the sfProjectDeployTask.class.php file in your PEAR folder

For me it was here:

\php5.2.11\PEAR\symfony13\task\project

On line 162 find the code like this:

$command = "rsync $dryRun $parameters -e $ssh ./ $user$host:$dir";

and change it to read:

$command = "start cmd /k rsync $dryRun $parameters -e $ssh ./ $user$host:$dir";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文