For the most part, YABook seems to work well. Users can add postings. As administrator, I can do all the normal features under "User Administration" and "Home." I am having a small trouble with the use of the administrative interface related to "Settings".
I am receiving the following errors when I attempt to access the administrative functions under "settings." The error messages follow:
- Code: Select all
[Notice: Undefined variable: outp in /Root/Directory/Apache/virtual_host/book/private/lib/common.inc.php on line 108
Warning: reset() [function.reset]: Passed variable is not an array or object in /Root/Directory/Apache/virtual_host/book/private/lib/sourdough/Sd_Html/Sd_Forms.class.php on line 261
Part of the problem may be related to my customized template. When I tried to customize the template (copying the original and simply modifying the header and footer file by echoing ' MY PHP AND HTML CODE HERE';), i got an error that the template could not be found. I checked my template name (dexter) and noted that the error message indicated that the script was looking for a template named "dexterdefault"
I renamed the custom template to dexterdefault and all worked until I attemped to access the "Settings" feature. When I did, the script reported it could not find the template "dexter." I copyied dexterdefault, creating a second template "dexter" and eliminated most of the error messages.
To eliminate the possibility that my template was the source of the error I changed the config-inc.php
from:
define('YABO_TPL_PATH' , YABO_ROOT_PATH.'templates/dexter);
to:
define('YABO_TPL_PATH' , YABO_ROOT_PATH.'templates/default');
Using the default template, I got this error message:
- Code: Select all
Sd-Error: Could not load templates from ./templates/default/default//global.tpl.html. in //Root/Directory/Apache/virtual_host/book/private/lib/sourdough/thirdparty/patTemplate/patTemplate/Reader/File.php [patTemplate_Reader_File::_getFileContents] on line 127
I attempted to turn on debugging mode but that only resulted in an empty file in:
/private/log/.cvsignore
I searched Google and the forums and found only this related thread (search term "outp") but could not apply it to my issues. See:
http://forum.phpee.com/viewtopic.php?t= ... light=outp
Thanks in advance for any help you may offer.