Using NuSoap works on local machine but not server Using NuSoap works on local machine but not server php php

Using NuSoap works on local machine but not server


If you're out of troubleshooting ideas, and assuming you are running on Linux, you can watch the system calls by using strace. The calls can look pretty cryptic, but sometimes you can see what system call its hanging on, then Google that call for more info.

strace -p processid

Or if you want to trace your script from start of execution to finish and dump to an output file:

strace -o trace.txt myscript.php

Here is a good strace tutorial.


Can you make sure that www-data has (permission to) access to

DOCROOT.'modules/nbn_species_dict_sync/lib/nusoap.php' ?

Or can you try to copy nusoap to another directory?

Or can you try to run it from command prompt as root user?

By the way, what kind of error/warning are you getting?