Integrating YAF 1.9.5.5 with Azure

336 Views Asked by At

I have a problem with integrating YAF 1.9.5.5 to azure 'web role'.

I successfully added forum to my page and configured config as recommended.

  <%@ Page MasterPageFile="~/Views/Shared/Site.Master" AutoEventWireup="true" ValidateRequest="false" Inherits="System.Web.Mvc.ViewPage<dynamic>"%>

<%@ Register TagPrefix="YAF" Assembly="YAF" Namespace="YAF" %>

<asp:Content ID="SupportTitle" ContentPlaceHolderID="TitleContent" runat="server">
Support
</asp:Content>
<asp:Content ID="SupportContent" ContentPlaceHolderID="MainContent" runat="server">

<form id="form1" runat="server" enctype="multipart/form-data">
<YAF:Forum runat="server" ID="forum" BoardID="1" />
</form>
</asp:Content>

When I run 'web role' the forum successfully displayed, but all actions is not working. For example when I click "collapsible , new topic, post response" buttons I have no result, just refreshes page

Can anyone help me with this??

Best regards, Stepan.

2

There are 2 best solutions below

0
On

Out-of-box yaf.net doesn't support SQL Azure.

Follow this detailed guide on how to install yaf.net on Windows Azure in my blog.

0
On

It sounds like the script files are not downloading correctly or something like that. Have you looked at the html that gets downloaded to see if it looks correct? Maybe compare your site to another YAF site to see what is missing.