I have an Openshift account set up with PHP 5.4.
I have two files that reside in the same directory:
index.php
LoginWebInterface.php
I have in my index.php file:
ini_set('display_errors',1);
ini_set('display_startup_errors',1);
error_reporting(-1);
...
include 'LoginWebInterface.php';
I get an error when visiting index.php that states:
Warning: include(LoginWebInterface.php): failed to open stream: No such file or directory in /var/lib/openshift/55181c105973ca076e000074/app-root/runtime/repo/index.php on line 55 Warning: include(): Failed opening 'LoginWebInterface.php' for inclusion (include_path='.:/var/lib/openshift/55181c105973ca076e000074/app-root/runtime/repo/lib:/var/lib/openshift/55181c105973ca076e000074/app-root/runtime/repo/libs:/var/lib/openshift/55181c105973ca076e000074/app-root/runtime/repo/libraries:/var/lib/openshift/55181c105973ca076e000074/app-root/runtime/repo/src:/var/lib/openshift/55181c105973ca076e000074/app-root/runtime/repo/vendor:/var/lib/openshift/55181c105973ca076e000074/app-root/runtime/repo/vendors:/var/lib/openshift/55181c105973ca076e000074/php/phplib/pear/pear/php:/usr/share/pear') in /var/lib/openshift/55181c105973ca076e000074/app-root/runtime/repo/index.php on line 55
I have read through the documentation/data on the following sites and attempted their solutions to no avail:
- https://developers.openshift.com/en/php-repository-layout.html
- https://developers.openshift.com/en/managing-environment-variables.html
- [Sorry, not enough rep to make the rest links]
- forums.openshift.com/cant-include-any-files-in-php-deployment
- stackoverflow.com/questions/23299277/php-require-once-fatal-error-in-openshift-maybe-a-filepath-issue-but-im-stump
- forums.openshift.com/cant-include-any-files-in-php-deployment
- forums.openshift.com/problems-with-path-of-openshiftinc-cakephp
- stackoverflow.com/questions/21075003/openshift-php-file-not-found-same-syntax-in-localhost
The solutions I have tried include:
- moving anotherCode.php into a folder titled lib in the same directory as index.php and using 'lib/LoginWebInterface.php'
- using $_ENV['OPENSHIFT_HOMEDIR'] . '/app-root/runtime/repo/LoginWebInterface.php'
- using $_ENV['OPENSHIFT_REPO_DIR'] . 'LoginWebInterface.php'
- using multiple levels of nested directory(__FILE__) . 'LoginWebInterface.php'
- many variations of one or more of the above
Try:
include(__DIR__ . '/LoginWebInterface.php');
include('./LoginWebInterface.php');