Arc Forumnew | comments | leaders | submitlogin
1 point by massim 5108 days ago | link | parent

It stock hn install I already change httpd port to 8887 [ error talk me that 8080 buse]. Forum work, login form not

1005 stroke ac.scm

  (define (ar-coerce x type . args)
    (let ((x-type (ar-type x)))
      (if (eqv? type x-type) x
          (let* ((fail        (lambda () (err "Can't coerce " x type)))
                 (conversions (hash-table-get coercions type fail))
                 (converter   (hash-table-get conversions x-type fail)))
            (ar-apply converter (cons x args))))))


2 points by akkartik 5107 days ago | link

That's where in the compiler the error is raised, but there's no fnform there. Based on the error message, can you show us the definition of login-form in your codebase? Have you made any changes to it?

Did you get it from http://github.com/nex3/arc?

-----