Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have installed webp package in my server and i want to use "dwebp" command in my PHP application.

My command is simple, it is like

dwebp "/full/path/test.webp" -o "/full/path/test.png"

If i run it from SSH terminal, it is 100% succesful.

But that command can't be run from PHP.

I have tried to use system(), passthru(), exec(). All failed which means the PNG file is not created.

However these commands succesfully called from PHP :

  • touch. If i use this, the created file is under "apache" owner.
  • ls -la

I have tried to change the directory permission from 777 / 775 / 755.

Using passthru, the result from calling from PHP is empty string.

  • In php.ini, disable_functions is empty
  • No error message, error_reporting is on.
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
343 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...