[Zope] Re: [Zope] problem(100) could this make LoginManager misbehave?
Steve Spicklemire
steve@spvi.com
Fri, 30 Nov 2001 05:32:08 -0500
Hi Kamal,
I don't think this is your problem, but here's a patch to get rid
of that annoying error message:
*** LoginMethods.py Fri Nov 30 05:27:21 2001
--- oldLoginMethods.py Fri Nov 30 05:30:52 2001
***************
*** 6,12 ****
from string import split,lower
import Globals, Acquisition
from Products.PlugIns import PlugIn
! from Globals import DTMLFile, HTMLFile, MessageDialog
class LoginMethod(PlugIn):
--- 6,12 ----
from string import split,lower
import Globals, Acquisition
from Products.PlugIns import PlugIn
! from Globals import HTMLFile, MessageDialog
class LoginMethod(PlugIn):
***************
*** 176,183 ****
"""__ac-style cookie logins using basic auth string as cookie"""
! manage_main = manage_propertiesForm =
DTMLFile('www/BasicCookieProps', globals())
! manage_main._setName('manage_main')
def manage_properties(self, title='',
CookieName='__ac', CookiePath='/', CookieDomain='',
SecureCookie=0,
--- 176,182 ----
"""__ac-style cookie logins using basic auth string as cookie"""
! manage_main = manage_propertiesForm =
HTMLFile('www/BasicCookieProps', globals())
def manage_properties(self, title='',
CookieName='__ac', CookiePath='/', CookieDomain='',
SecureCookie=0,
-steve
On Friday, November 30, 2001, at 04:09 AM, <hamzatk@3dresearch.com>
wrote:
> Hello Dieter,
>
> At 11:39 PM 11/29/01 +0100, you wrote:
>> hamzatk@3dresearch.com writes:
>>> After alot trouble passed through to make LoginManager appeared in the
>>> products folder, yet i still experience this error when starting my
>>> zope
>>> server.
>>>
>>> Problem (100) init Ambigous name for method of
>>>
> Products.LoginManager.LoginMethods.BasicCookiesLogin:
> "manager_propertiesFor
>>> m" !="manager_main".
>>>
>>> I can see the LoginManager in the products folder my fear is that can
> this
>>> error cause the LM not to work well.
>> "Problem (100)" indicates "Warning". You can ignore it, unless you
>> get strange authorization problems.
>
> Yes, this is the problem I have been facing for the past few weeks now.
> Despite that I used examples from the zope book. This is the error i
> have
> battling with.
>
>
> Site Error
> An error was encountered while publishing this resource.
>
> Unauthorized
>
> You are not authorized to access this resource.
> Username and password are not correct.
>
> Traceback (innermost last):
> File C:\Program Files\WebSite\lib\python\ZPublisher\Publish.py, line
> 223,
> in publish_module
> File C:\Program Files\WebSite\lib\python\ZPublisher\Publish.py, line
> 187,
> in publish
> File C:\Program Files\WebSite\lib\python\ZPublisher\Publish.py, line
> 162,
> in publish
> File C:\Program Files\WebSite\lib\python\ZPublisher\BaseRequest.py,
> line
> 463, in traverse
> File C:\Program Files\WebSite\lib\python\ZPublisher\HTTPResponse.py,
> line
> 588, in unauthorized
> Unauthorized: (see above)
>
> Please what can I do now?
>
> Regards.
> Kamal.
>
>
>
>
>
> _______________________________________________
> Zope maillist - Zope@zope.org
> http://lists.zope.org/mailman/listinfo/zope
> ** No cross posts or HTML encoding! **
> (Related lists -
> http://lists.zope.org/mailman/listinfo/zope-announce
> http://lists.zope.org/mailman/listinfo/zope-dev )