I just got YAF 2.2.3 setup and integrated with my site that is hosted on GoDaddy. Everything is working except for two things.
1. Users can upload an avatar just fine, but the forum will not show them. I see a 404 for the following request:
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /forum/resource.ashx
The web.cofig file contains the following entries:
<system.web>
<httpHandlers>
<add verb="GET" path="Resource.ashx" type="YAF.YafResourceHandler, YAF" />
</httpHandlers>
</system.web>
<system.webServer>
<handlers>
<add name="YafHandler" preCondition="integratedMode" verb="GET" path="Resource.ashx" type="YAF.YafResourceHandler,YAF" />
</handlers>
</system.webServer>
2. If I select CKEditor as the editor I get a javascript error:
Uncaught TypeError: Cannot read property '1' of null
at Object.detect (ckeditor.js:228)
at Object.load (ckeditor.js:228)
at w (ckeditor.js:245)
at ckeditor.js:245
at b (ckeditor.js:484)
at Object.loadPart (ckeditor.js:486)
at q (ckeditor.js:245)
at a.
(ckeditor.js:245)
at a.q (ckeditor.js:10)
at a.CKEDITOR.event.CKEDITOR.event.fire (ckeditor.js:12)
I don't really need to use CKEditor, but it is the only editor that I see the option to attach files to a post. So, I either need to get this fixed or figure out how to attach files using a different editor.
Edited by user
6 years ago
|
Reason: Not specified