I'm coming to a solution where I need to use PHP + AJAX to automatically upload files to a web server.
I need to use Filesystem Object in Javascript in order to access user local files. The problem is that when it tries to create the object, the browser show me this error:
"Automation server can't create object"
So it can't create the object.
The same script works fine if I access it from the local file, but when I tried to access through apache I get this error.
I've been googling and found that I should have the dll corresponding to FileSystemObject (scrrun.dll) in Apache. I've tried in http.conf without luck.
Anyone knows how I should include this dll in Apache so I can use it?
Thanks in advance