Written by James McDonald

December 20, 2008

Fail I haven’t been able to install SI on U8.10 there are alot of problems with the Ubuntu 8.10 enviroment. Incorrect mysql_pdo modules etc… Nightmare … SI installs fine on Fedora 10.

Problem: On Ubuntu 8.10 Server I get
“Warning: Smarty::include() [function.include]: Failed opening ‘cache/%%4E^4ED^4ED298BA%%footer.tpl.php’ for inclusion (include_path=’.;c:\php\includes:./include’) in /srv/simpleinvoices/include/smarty/Smarty.class.php on line 1258”

Cause: php.ini has a Microsoft Windows include path in it that shouldn’t be there:

vi /etc/php5/apache2/php.ini
# this is what it looks like before
; UNIX: "/path1:/path2"
include_path = ".:/usr/share/php"
;
; Windows: "\path1;\path2"
include_path = ".;c:\php\includes"

Fix:
Open and comment it out
# this is what it should look like after fixing
; UNIX: "/path1:/path2"
include_path = ".:/usr/share/php"
;
; Windows: "\path1;\path2"
;include_path = ".;c:\php\includes"

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Adding BCC to Divi Contact Form

The Divi contact form allows you to send to multiple email addresses by opening the properties of the form and...