A python script works at command line, but when the exact same script is called from php, nothing is returned -


i trying call python script php:

python test_upload.py test.xlsm 

the python command works @ windows command line. script processes 4 rows of data. when called in php not appear processed @ all.

$result = exec($cmd, $output, $status); 

the $result null, , $output has 0 items.


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -