I have a legacy project, where all PHP files connect to the database through the file "oracle_ado.php"
This file is in the "../inc/" folder and the rest in the folder "../ prod /".
I'm setting up another server for this application, where the files in the "../prod/" folder can not find the "oracle_ado.php" file
Require is as follows ...
require_once ('oracle_ado.php');
being changed to ...
require_once ('../inc/oracle_ado.php');
The application runs seamlessly.
On the current server runs without the need to enter the path "../inc/", can anyone tell me what it can be? What is missing on the new server?
Both Linux servers