Troubleshooting PHP Include Failures on SUSE10
Submitted by Aaron Longwell on Mon, 2006-01-09 09:55.
All PHP includes were failing in my Drupal application on a newly configured SUSE box. After verifying all the permissions, I found that the php.ini file had an extra-secure
;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;
; UNIX: "/path1:/path2"
include_path = ".:/php/includes"
The change is subtle. Notice the dot before the colon. That's the relative path include.

Post new comment