On Thu, 19 Oct 2000, Rodney Broom wrote:

> Good evening all,
> 
> I've got this happy little access handler that works just fine. Now I need for
> it to accept parameters through import(). The catch is that MyClass::import()
> isn't being called. I've done all of the obvious stuff, like including lots of
> debugging messages, reading the docs, reading the Apache modules book, and even
> searching the archives for this list, no help. Does anybody know what's
> happening here?

Show us some code! import won't be called if you go:

use MyClass ();
           ^^^^

Because that's a way to stop import being called. And it won't be called
for:

require MyClass;

-- 
<Matt/>

    /||    ** Director and CTO **
   //||    **  AxKit.com Ltd   **  ** XML Application Serving **
  // ||    ** http://axkit.org **  ** XSLT, XPathScript, XSP  **
 // \\| // **     Personal Web Site: http://sergeant.org/     **
     \\//
     //\\
    //  \\

Reply via email to