Base solution for your next web application

Activities of "cmthomps"

@ismcagdas - It would be a nice feature!

Just downloaded a new 7.1 Core MVC/jquery project and having an issue with the create-bundles script on my Mac. For some reason, some URLs are getting replaced by the full UNC local path on my machine. It doesn't seem to happen on a Windows box that I have. Here is an example of what is happening:

In core.less there is the following:

/* Social Login Icons */
.kt-login__options form a i.fa-openidconnect {
    background: url(../Images/Social/openid.png) no-repeat;
    width: 16px;
    height: 16px;
}

After running npm run create-bundles, I get the following in common-styles.min.css:

/* Social Login Icons */
.kt-login__options form a i.fa-openidconnect {
  background: url(/dist/img//Users/cthompson/Projects/SmcProject/SmcServerProject/src/Smc.SmcProject.Web.Mvc/wwwroot/Common/Images/Social/openid.png) no-repeat;
  width: 16px;
  height: 16px;
}

I get similar results whereever the "url(" function is used in css. Thoughts?

Thanks, Craig

Ok. So I figured out what the issue is. I'm not sure if there is a way to make this line of code conditional based on the operating system.

On line 191 of gulpfile.js, there is this line of code:

 var fileName = asset.absolutePath.substring(asset.absolutePath.lastIndexOf('\\') + 1);

My issue is resolved if I change it to this (notice the difference in back slashes vs forward slashes):

var fileName = asset.absolutePath.substring(asset.absolutePath.lastIndexOf('/') + 1);

I think the solution is to use:

var fileName = path.basename(asset.absolutePath);

This makes it work on both windows and mac.

Craig

Trying to login to the main aspnetzero site to download the latest code. Getting invalid user name or password even after resetting my password.

Can confirm that I can now login, but cannot download RC10.

Just looking for some historical documentation for version 1.9... Is that available somewhere?

Per email echange with Ismail, opening this ticket just to confirm that Volosoft's banking information has changed.

Thanks, Craig

Showing 81 to 88 of 88 entries