Skip to content

Instantly share code, notes, and snippets.

@chris-at-github
Created August 17, 2019 09:28
Show Gist options
  • Save chris-at-github/2d228b0e58d6eb76d5d0c14d455caa61 to your computer and use it in GitHub Desktop.
Save chris-at-github/2d228b0e58d6eb76d5d0c14d455caa61 to your computer and use it in GitHub Desktop.
Current directory (./) is not within PHP include path include_path = C:\Users\pschorr\Xampp_7.3.7\php\PEAR Normally the current path '.' is included in the include_path of PHP. Although TYPO3 does not rely on this, it is an unusual setting that may i
@see: https://stackoverflow.com/questions/44715589/current-directory-is-not-within-php-include-path-xammp
You need to fix your include_path in php.ini.
In that file you will find a line that says something similar to:
"include_path = C:\xampp7\php\PEAR".
To fix change the line below
From include_path=C:\xampp7\php\PEAR to include_path=".;C:\xampp7\php\PEAR"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment