2011-01-25, 22:31
I just tried to install it tonight and had the same problems. Mine was because for some reason PHP was trying to include config.php from the PEAR directory rather than from the XBMC remote folder.
This worked for me (well, it did something and got rid of the errors): either edit php.ini (find / -name "*php.ini*" should find it on linux) and check your include path is:
or if your configuration allows it put this on the second line of index.php:
good luck!
This worked for me (well, it did something and got rid of the errors): either edit php.ini (find / -name "*php.ini*" should find it on linux) and check your include path is:
Code:
include_path="."
or if your configuration allows it put this on the second line of index.php:
Code:
set_include_path(".");
good luck!