Im trying to require some php files into my main index.php but I get the following error:
Warning: require(/opt/lampp/htdocs/steamauth/userinfo.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/index.php on line 4
Fatal error: require(): Failed opening required '/opt/lampp/htdocs/steamauth/userinfo.php' (include_path='/opt/lampp/htdocs/') in /opt/lampp/htdocs/index.php on line 4
I tried the adding the following code:
set_include_path('/opt/lampp/htdocs/');
require dirname(__FILE__).'/steamauth/steamauth.php';
My include files steamauth.php and userinfo.php are at /opt/lampp/htdocs/steamauth/
I also tried setting the include_path in the php.ini file as well as adding it to my .htaccess file . And yes, I am sure that this is the correct path that I want to include. Any ideas?