通过 PHP 在 Plesk 控制面板中创建 FTP 用户

发布于 2024-12-14 19:21:30 字数 62 浏览 0 评论 0原文

可以这样做吗?我已经看过命令行指令,但似乎 passwd 是一个交互式命令,我们无法通过 PHP 响应。 谢谢

is it possible to do that? I've seen the commandline instructions but it seems that passwd is an interactive command and we can't respond via PHP.
thanks

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

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

发布评论

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

评论(2

找个人就嫁了吧 2024-12-21 19:21:30

最简单的解决方案是使用 popenchpasswd

$handle = popen('/usr/sbin/chpasswd', 'w');
fputs($handle, "user:password");
fclose($handle);

The simplest solution is to use popen and chpasswd.

$handle = popen('/usr/sbin/chpasswd', 'w');
fputs($handle, "user:password");
fclose($handle);
心碎的声音 2024-12-21 19:21:30

或者尝试用 CURL 来模拟人类。
登录+创建帐户。一种形式的简单示例 http://curl.haxx.se/mail/ curlphp-2004-04/0013.html

Or try to emulating human with CURL.
Login + Create Account. Simple example with one form http://curl.haxx.se/mail/curlphp-2004-04/0013.html

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