I'm trying to integrate yaf into an existing web application. Unfortunately I'm running into a wide variety of issues.
The primary issue that I think other issues are stemming from, is pathing. Everything is pathed wrong. Even though I have
many (but not all) things still search the root directory.
Look at this:
<link href="/RubyWebs/Themes/soclean/theme.css" rel="stylesheet" type="text/css" />
Why is it searching in the root directory for themes? Especially when the icons/images are all loaded from the correct directory:
<img id="MainContent_forum_ctl03_ForumCategoryList_CategoryList_forumList_0_ForumList1_0_ThemeForumIcon_0" src="/RubyWebs/yaf/Themes/soclean/topic.png" alt="No New Posts" title="No New Posts">
To get themes functional I had to have a complete copy of the themes directory in two locations!
elsewhere
jQuery.PageMethod('/RubyWebs/YafAjax.asmx', 'RefreshShoutBox', refreshShoutBoxPanel, refreshShoutBoxFailed, 'boardId', 1);
Why is it searching under the root directory again? I'm not sure but it creates this issue:
Error refreshing chat: [object Object]
And copying YafAjax.asmx to my root directory fixed nothing unfortunately. I still get the same error.
So anyway, is there some other location setting I'm missing? Why is half the site loading from yaf/ and half from the root?