deys
deys

Reputation: 141

Oracle Apex or ORDS not recognizing images folder

I've installed Oracle Apex 5 and configured ORDS through Tomcat however I'm getting the error as below:

There is a problem with your environment because the Application Express files have not been loaded. Please verify that you have copied the images directory to your application server as instructed in the Installation Guide. In addition, please verify that your image prefix path is correct. Your current path is /i/ (it should contain both starting and ending forward slashes, such as the default /i/). Use the SQL script reset_image_prefix.sql if you need to change it.

Upvotes: 2

Views: 15912

Answers (2)

deys
deys

Reputation: 141

Guys I have finally managed to resolve it by changing the default images folder from /i/ to /images/ using reset_image_prefix.sql and copying images folder from apex folder to webapps

Upvotes: 4

rpilkey
rpilkey

Reputation: 995

Did you copy the images to the Tomcat directory?

•Copy the contents of the <apex directory>/images folder to <Tomcat directory>/webapps/i/.

Where:

•<apex directory> is the directory location of the Oracle Application Express distribution.

•<Tomcat directory> is the folder where Apache Tomcat is installed.

Oracle documentation link: 1.8.4 Configuring Oracle Application Express Images

Upvotes: 1

Related Questions