hello.
basically i have a php page that has an include() in it. in this include starts my session variables and requires() a few other pages. under an unsecure page (http) all works fine.
When securing the page (https) i get errors like "Warning: main(): stream does not support seeking in /www/......" I have learned that this is a bug in PHP and to remove this error just make my include like @include().
Error goes away, great. All files load properly, great. But when I call to a function within one of the required pages the functions come back "Fatal error: Call to undefined function:". this is not so great.
I have ran echo""; tests within the required pages and they all work correctly, just not the functions.
I really need these functions to work can anyone help.
C.