> Please update to trac-wiki.el ver. 1.8 first, then try again.

thanks. i just tried it and still get "ERROR: The site seems not
support XML-RPC."

my guess is that xml_rpc really is not working on my site. i will try
reverting to an earlier version of trac to see if i can get the
xml_rpc plugin to work.

> (eval-after-load "url-auth"
>   '(let ((auth (base64-encode-string (format "%s:%s" "yourname"
> "yourpassword"))))
>      (set (symbol-value 'url-basic-auth-storage)
>           `(("www.some.org:80" ("realm string for the site" . ,auth))))))

I see that the code above sets the value of "url-basic-auth-storage"
However, your web page says to set the value of "url-HTTP-REAL-basic-
auth-storage". shouldn't these be the same?

And what should one use for digest authorization? Evaluating
expressions of either form below generates an "wrong-type-argument
symbolp" error:

(eval-after-load "url-auth"
  '(let ((auth (base64-encode-string (format "%s:%s" "yourname"
"yourpassword"))))
     (set (symbol-value 'url-digest-auth-storage)
          `(("www.some.org:80" ("realm string for the site" . ,auth))))))

or:

(eval-after-load "url-auth"
  '(let ((auth (base64-encode-string (format "%s:%s" "yourname"
"yourpassword"))))
     (set (symbol-value 'url-http-real-digest-auth-storage)
          `(("www.some.org:80" ("realm string for the site" . ,auth))))))
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to