/Home/scripts/test.sh dosyasını php ile nasıl çalıştırabilirim?
Daha önce / usr / bin içine 'test.sh' dosyasını yerleştirdim ve php dosyama böyle çağırdım.
exec('test.sh ' . escapeshellarg($testString));
Ancak güvenlik nedeniyle / home / scripts dizinine .sh dosyasını taşıdım ve php'imde böyle arıyorum
exec('/home/scripts/test.sh ' . escapeshellarg($testString));
Ama şimdi çalışmıyor.
Lütfen bunu nasıl başaracağımı öner.
/ Home / scripts dir, shell betiği ve hangi user: group'un php ile çalıştığı izinler nelerdir?
—
Paul