Yetanotherforum бросает ошибки сборки - PullRequest
0 голосов
/ 08 марта 2011

Когда я пытаюсь создать свой сайт с установленным YAF, я получаю;

Error   77  The file 'MySite/forum/themes/Yafmobile/MobilePages/editusersavatar.ascx.cs' does not exist.    C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\editusersavatar.ascx   1   
Error   78  The file 'MySite/forum/themes/Yafmobile/MobilePages/edituserssignature.ascx.cs' does not exist. C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\edituserssignature.ascx    1   
Error   79  The file 'MySite/forum/themes/Yafmobile/MobilePages/forumwelcome.ascx.cs' does not exist.   C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\forumwelcome.ascx  1   
Error   80  The file 'MySite/forum/themes/Yafmobile/MobilePages/buddylist.ascx.cs' does not exist.  C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\buddylist.ascx 1   
Error   81  Type 'YAF.Controls.UserLink' does not have a public property named 'UserName'.  C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\buddylist.ascx 19  
Error   82  The file 'MySite/forum/themes/Yafmobile/MobilePages/forumList.ascx.cs' does not exist.  C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\forumList.ascx 1   
Error   83  The file 'MySite/forum/themes/Yafmobile/MobilePages/cp_subscriptions.ascx.cs' does not exist.   C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\cp_subscriptions.ascx  1   
Error   84  The file 'MySite/forum/themes/Yafmobile/MobilePages/cp_profile.ascx.cs' does not exist. C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\cp_profile.ascx    1   
Error   85  Unknown server tag 'YAF:ProfileMenuMobile'. C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\cp_profile.ascx    11  
Error   86  The file 'MySite/forum/themes/Yafmobile/MobilePages/editusersprofile.ascx.cs' does not exist.   C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\editusersprofile.ascx  1   
Error   87  The file 'MySite/forum/themes/Yafmobile/MobilePages/emailtopic.ascx.cs' does not exist. C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\emailtopic.ascx    1   
Error   88  The file 'MySite/forum/themes/Yafmobile/MobilePages/postmessage.ascx.cs' does not exist.    C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\postmessage.ascx   1   
Error   89  The file 'MySite/forum/themes/Yafmobile/MobilePages/pmessage.ascx.cs' does not exist.   C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\pmessage.ascx  1   
Error   90  The file 'MySite/forum/themes/Yafmobile/MobilePages/TopicLineMobile.ascx.cs' does not exist.    C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\TopicLineMobile.ascx   1   
Error   91  The file 'MySite/forum/themes/Yafmobile/MobilePages/cp_changepassword.ascx.cs' does not exist.  C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\cp_changepassword.ascx 1   
Error   92  The file 'MySite/forum/themes/Yafmobile/MobilePages/admin.ascx.cs' does not exist.  C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\admin.ascx 1 

Я помещаю свой форум в другой каталог, работает нормально, но когда я пытаюсь создать свой сайт, он выдает этиошибки, я предполагаю, что где-то отсутствует ссылка на правильный каталог?

Я объединил все конфиги в web.config, и, насколько я могу судить, все мои строки верны:

<add key="YAF.BoardID" value="1"/>
<add key="YAF.EnableURLRewriting" value="true"/>
<add key="YAF.UseSMTPSSL" value="false"/>
<add key="YAF.DatabaseObjectQualifier" value="yaf_"/>
<add key="YAF.DatabaseOwner" value="dbo"/>
<add key="YAF.ConnectionStringName" value="yafnet"/>
<add key="YAF.ProviderExceptionXML" value="ProviderExceptions.xml"/>
<add key="YAF.FileRoot" value="~/forum/"/>
<add key="YAF.AppRoot" value="~/forum/"/>
<add key="YAF.ProviderKeyType" value="System.Guid"/>
<add key="YAF.ShowToolBar" value="true"/>
<add key="YAF.RadEditorSkin" value="Black"/>
<add key="YAF.UseRadEditorToolsFile" value="true"/>
<add key="YAF.RadEditorToolsFile" value="~/forum/editors/radEditor/toolsFile.xml"/>

Я не изменял ни один из файлов в каталоге yaf.

Все файлы присутствуют и физически находятся в:

C:\inetpub\wwwroot\MySite\forum\themes\Yafmobile\MobilePages\

I'mдействительно застрял, я пропустил какой-то тег или что-то?

...