You don’t have permission to access /rpts/apex on this server.
Hi.
I had a problem with expired passwords. We are using APEX 2.2.0 with Oracle 10g. This morning the APEX_PUBLIC_USER accounts passwords expired.
When the passwords expired Now we are unable to access our application.
We get the following error message:
Forbidden
You don’t have permission to access /pls/apex/f on this server.
Solution:
1) You must to change password for user APEX_PUBLIC_USER in database.
ALTER USER APEX_PUBLIC_USER IDENTIFIED BY password;
Refer to the section on setting up a HTTP Server for APEX. Depending on your setup there will be a file that contains the DAD entry for APEX and includes a line for the apex_public_user_password that should have the old password and can be changed to the new password.
In the dads file:
<Location /pls/apex>
Order deny,allow
PlsqlDocumentPath docs
AllowOverride None
PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
PlsqlDatabaseConnectString localhost:1521:orcl SIDFormat
PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
PlsqlAuthenticationMode Basic
SetHandler pls_handler
PlsqlDocumentTablename wwv_flow_file_objects$
PlsqlDatabaseUsername APEX_PUBLIC_USER
PlsqlDefaultPage apex
PlsqlDatabasePassword “password”
Allow from all
</Location>
Regards,
Tom


