Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Chad Rosenthal 272 posts 474 karma points
    Nov 20, 2012 @ 14:51
    Chad Rosenthal
    0

    Trying to build the Belle Solution

    I'm experiencing issues building the belle solution. It builds successfully, and I'm able to go through the full install process. The website works but when I go to the /umbraco/login.aspx it looks like all of the javascript/css/images are gone. 

    ideas?

  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Nov 20, 2012 @ 14:54
    Dirk De Grave
    1

    Chad,

    Create a new .config file based on convention: web.Template.COMPUTERNAME.Debug.config (obviously replace COMPUTERNAME with name of your... yup pc).

    Add following info in this new config

    <?xml version="1.0"?>
    <!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->
    <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
      <!--
        In the example below, the "SetAttributes" transform will change the value of
        "connectionString" to use "ReleaseSQLServer" only when the "Match" locator
        finds an atrribute "name" that has a value of "MyDB".
       
        <connectionStrings>
          <add name="MyDB"
            connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
            xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
        </connectionStrings>
      -->
      <appSettings>
        <add xdt:Transform="Replace" xdt:Locator="Match(key)" key="umbracoDbDSN" 
             value="datalayer=SQLCE4Umbraco.SqlCEHelper,SQLCE4Umbraco;data source=|DataDirectory|\Umbraco.sdf"/>
        <add xdt:Transform="Insert" key="umbracoClientPath"
             value="~/umbraco/client"/>
       
        <add xdt:Transform="Replace" xdt:Locator="Match(key)" key="umbracoConfigurationStatus"
             value=""/>
      </appSettings>
      <system.web>
        <compilation debug="true" xdt:Transform="SetAttributes(debug)" />
        <!--
          In the example below, the "Replace" transform will replace the entire
          <customErrors> section of your web.config file.
          Note that because there is only one customErrors section under the
          <system.web> node, there is no need to use the "xdt:Locator" attribute.
         
          <customErrors defaultRedirect="GenericError.htm"
            mode="RemoteOnly" xdt:Transform="Replace">
            <error statusCode="500" redirect="InternalError.htm"/>
          </customErrors>
        -->
      </system.web>
    </configuration>

    and build the solution in Debug mode and you're good to go...

     

    Hpoe this helps.

    Cheers,

    /Dirk

     

  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Nov 20, 2012 @ 14:57
    Dirk De Grave
    1

    Forgot to mention that config should go into Umbraco.Web.UI folder

     

    /Dirk

  • Chad Rosenthal 272 posts 474 karma points
    Nov 20, 2012 @ 14:58
    Chad Rosenthal
    0

    Do I add this before I run build.bat? Also, exactly where should I put this file?

  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Nov 20, 2012 @ 15:03
    Dirk De Grave
    1

    File has to go into /src/Umbraco.Web.UI folder (you'll find lots of config files there). I didn't use build.bat, but juist build the solution in Debug configuration mode. (Hence the need for .Debug. in your config's filename)

     

    /Dirk

  • Chad Rosenthal 272 posts 474 karma points
    Nov 20, 2012 @ 15:12
    Chad Rosenthal
    0

    do you know the default username/password?

    -C

  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Nov 20, 2012 @ 15:21
    Dirk De Grave
    0

    I ran from vs.net which took me to the installer, so I could choose the username/password combo myself (I might not have chosen the right path here... so would be nice to hear from others how they run their "Belle")

     

    /Dirk

  • Chad Rosenthal 272 posts 474 karma points
    Nov 20, 2012 @ 15:24
    Chad Rosenthal
    0

    Hmm...I'm getting the 'You're seeing the wonderful page because your website doesn't contain any published content yet. So get rid of this page by starting umbraco and publishing some content. You can do this by clicking the "set up your new website" button below." page. When I click it asks me to login, but i never went through the installer.

    Looks like maybe a database was saved in the solution?

    -C

  • Chad Rosenthal 272 posts 474 karma points
    Nov 20, 2012 @ 15:33
    Chad Rosenthal
    0

    Never mind. Grr....I copied and pasted one of the others and it had 4.10 for the umbracoConfigurationStatus already added. I removed that, and now I get the installer.

Please Sign in or register to post replies

Write your reply to:

Draft