After fussing for too many hours trying to make the images working with the dynamic navigation, I've decided I'm spending too much time with these side issues and not enough keeping up with class work. I'll revisit the image issue later (maybe after the quarter is over) and go with mundane side navigation.
After making this decision, I made a couple of quick changes to the css and a quick change to the hnavINC page that I thought would make the appearance more palatable.
The change to hnavINC was just a change to the value of a string. I thought it would be innocuous. As soon as I dropped it into the website file structure, however, I came up with the following error:
Fatal error: Cannot redeclare checklink() (previously declared in /home/classes/dwelle01/public_html/itc280/radiant/hNavINC.php:56) in /home/classes/dwelle01/public_html/itc280/radiant/hNavINC.php on line 67
At this time I am not able to work at fixing this. It will have to wait a few hours at least.
I didn't change the checklink function, and certainly didn't declare it twice.
Friday, May 16, 2008
Subscribe to:
Post Comments (Atom)
2 comments:
Dave,
Make sure all of your include references use the 'once' version. For example:
include_once("myINC.php");
The _once guarantees an INC file is not included in another file, and get the error message you were seeing.
Let me know if this helps!
Bill
Thanks, Bill. I don't know what the problem was, but it seems to have fixed itself.
Post a Comment