Hallo!
Ich versuche derzeit das Forum "Near Forums" auf einem Windows Webspace zu installieren. Allerdings scheitere ich an der Installation.
Der Entwickler verweist immer bei einer Anfrage auf die Dokumentation die allerdings ziemlich dürftig ist wie ich finde.
Das Forum soll unter MySQL laufen weshalb eine Installation per WebPlatformInstaller nicht in betracht kommt bzw. kein Lösungsvorschlag sein kann.
Die MySQL Datenbank wurde bereits mit den entsprechenden Daten versehen. Die Web.config Datei hat auch die entsprechenden Zugangsdaten bekommen:
Laut Dokumentation soll noch die Datei /Config/Site.config angepasst werden. Da liegt aber glaube ich mein Problem.
Dort soll das "parameterPrefix" angegeben werden. Als Beispiel wird folgendes genannt:
Das "@" soll bei Nutzung einer MySQL Datenbank mit "param_" ausgetauscht werden.
Soweit ist eigentlich alles klar allerdings weis ich nicht wo genau diese Zeile hin soll. In dieser Datei werden Templateinformationen sowie Authentification Provider angegeben.
Egal wo ich diese Zeile einsetze bekomme ich einen Fehler ausgegeben:
"You must specify a SQL Connection string in the configuration file, with the key Forums.
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below."
Setze ich diesem parameterPrefix garnicht wird nur gesagt das in der Site.config etwas nicht stimmt. Allerdings nicht was genau.
Die /Config/Site.config:
(vielleicht übersehe ich nur etwas. Der von mir selbst eingefügte Parameter befindet sich in Zeile 3)
- <?xml version="1.0" encoding="utf-8" ?>
- <site timeZoneOffset="-5" dateFormat="MMM d ’yy 'at' hh:mm" >
- <dataAccess parameterPrefix="param_" />
- <forums topicsPerPage="20" tagsCloudCount="30" />
- <topics messagesPerPage="10" />
- <template
- useTemplates="false"
- path="/content/templates/">
- <mobile
- regex="(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone|windows ce|pda|mobile|mini|palm|ipad|android)" />
- </template>
- <!-- if you use templates, you need to grant write access to asp.net account to the path you specify in this element-->
- <spamPrevention timeToRepost="5">
- <htmlInput
- fixErrors="true"
- allowedElements="b(lockquote)?|code|d(d|t|l|el)|em|h(2|3|4)|i|kbd|li|ol|p(re)?|s(ub|up|trong|trike)?|ul|a|img" />
- </spamPrevention>
- <authorizationProviders fakeProvider="false">
- <formsAuth
- defined="true" />
- </authorizationProviders>
- <replacements>
- <add pattern="(?<=^|\s|>)(#(\d+))"
- replacement="<a href="#msg$2" class="fastQuote">[$1]</a>" />
- <add pattern=":\)"
- replacement="<img src="http://mail.google.com/mail/help/images/whatsnew/emoji_smile.gif" alt="smile" />" />
- </replacements>
- <notifications>
- <subscription>
- <body>
- <![CDATA[
- <div style="font-family:arial,helvetica;font-size:12px;color:#333333;">
- <h3>Hi <!--!USERNAME!--></h3>
- <p>There is a new post on the thread <a href="<!--!URL!-->"><!--!TITLE!--></a>.</p>
- <p>To see the post go to: <a href="<!--!URL!-->"><!--!URL!--></a>.</p>
- <br />
- <p>
- Best regards,<br />
- nearforums team.
- </p>
- <br />
- <hr />
- <p><em>If you don't want to receive emails from this thread, just click on the following link: <a href="<!--!UNSUBSCRIBEURL!-->"><!--!UNSUBSCRIBEURL!--></a></em></p>
- </div>
- ]]>
- </body>
- </subscription>
- <membershipPasswordReset>
- <body>
- <![CDATA[
- <div style="font-family:arial,helvetica;font-size:12px;color:#333333;">
- <h3>Hi <!--!USERNAME!--></h3>
- <p>Follow the following link to reset your password: <a href="<!--!URL!-->"><!--!URL!--></a>.</p>
- <br />
- <p>This link will expire in 48 hours.</p>
- <br />
- <p>
- Best regards,<br />
- nearforums team.
- </p>
- </div>
- ]]>
- </body>
- </membershipPasswordReset>
- </notifications>
- </site>