<Directory "/path/to/my/www-root"> php_admin_value safe_mode 0 php_admin_value open_base_dir /path/to/my/www-root/</Directory>
Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.More information about this error may be available in the server error log.
1: function smarty_core_get_include_path(&$params, &$smarty)2: {3: static $_path_array = null;4: 5: if(!isset($_path_array)) {6: $_ini_include_path = ini_get('include_path');7: 8: 9: if(strstr($_ini_include_path,';')) {10: // windows pathnames11: $_path_array = explode(';',$_ini_include_path);12: } else {13: $_path_array = explode(':',$_ini_include_path);14: }15: }16: foreach ($_path_array as $_include_path) {17: if (@is_readable($_include_path . DIRECTORY_SEPARATOR . $params['file_path'])) {18: $params['new_file_path'] = $_include_path . DIRECTORY_SEPARATOR . $params['file_path'];19: return true;20: }21: }22: return false;}