Home > database >  What is the server path for standalone ORDS running Oracle APEX?
What is the server path for standalone ORDS running Oracle APEX?

Time:08-11

I am trying to put a php file on a folder and call it using UTL_HTTP.REQUEST from SQL and in APEX. I used xampp software to host it and it works. So I was wondering if there is a way to put in a file "somewhere" in ORDS or Database directory so I could access it in the same way? Or is there any way to access a file from URL like "localhost:8080/ords/[my folder and file name]"

My Config:

Database 19c

APEX 22.1

ORDS 21.4

CodePudding user response:

You can configure basic file access by configuring a document root, but this is file access not Web CGI style components like PHP, Pything, Perl etc etc.

If it is just file access you control that via the standalone.properties file

standalone.doc.root=/u01/files/standalone/doc_root
  • Related