i have phplib install installed
i have include_path and auto_prepend_file directives in .htaccess
now i made some scripts, which have a class "auth"
but i have already this class declared (cause it's part of phplib)
and it raises an error "Cannot redeclare class auth..."
to summarize: i dont need phplib's "auth" but i need my "auth".
what's the solution?
can i "undeclare" the class somehow?
or how to disable auto_prepend_file for my script?
thanx