gpt4 book ai didi

ffmpeg的PHP Shell执行未读取Bash_profile

转载 作者:行者123 更新时间:2023-12-04 22:56:13 31 4
gpt4 key购买 nike

我知道这是一个奇怪的问题,可能非常具体,但我最近安装了 ffmpeg在共享托管服务上。虽然我可以从 SSH 控制台执行所有任务,但在 PHP 中进行完全相同的调用时,我会收到此错误。

error while loading shared libraries: libavdevice.so.56: cannot open shared object file: No such file or directory



它在 PuTTY 中做了同样的事情,直到我更新了 ~/.bash_profile用这条线:
export LD_LIBRARY_PATH=/home/searay330/ffmpeg/lib

PHP 不使用 ~/.bash_profile ,或者是否有其他文件需要更新?非常感谢有关此主题的任何信息,谢谢。

最佳答案

你需要把它放在.bashrc反而。 .bash_profile仅在使用交互式登录 shell 时读取,但 .bashrc当 Bash 以交互方式启动但不是登录 shell 时读取。见 here了解更多信息。所以,你不能真正使用 .bashrc.bash_profile .在调用 shell_exec() 之前,您需要在 PHP 中设置环境变量。 .

<?php
putenv('LD_LIBRARY_PATH=/home/searay330/ffmpeg/lib');
shell_exec('...');

关于ffmpeg的PHP Shell执行未读取Bash_profile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31600289/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com