Base solution for your next web application

Activities of "drenton"

This page, <a class="postlink" href="http://aspnetzero.com/Documents/Development-Guide#introduction">http://aspnetzero.com/Documents/Develop ... troduction</a> under the header SENDING EMAILS makes reference to two modes: DEBUG and RELEASE. Where is the mode set?

In addition, this page <a class="postlink" href="http://docs.asp.net/en/latest/fundamentals/environments.html">http://docs.asp.net/en/latest/fundament ... ments.html</a> makes reference to the use of more than two environments; DEVELOPMENT, STAGING, and PRODUCTION. What would you suggest to implement multiple environments with Zero?

Hi,

We want to use multi tenancy with only one role configuration.

e.g. All tenancy will have the same roles, and each role will have the same permissions.

If there is accounting manager role, this role will have the same permission in all tenancy.

Is it possible?

I see there are a number of files in the Zero project that are missing. They are found at <Project>.Web\Scripts.

While I am checking the project to see if these are referenced, is there any reason that I would not delete them from the project list, as they are causing the VS Publish task to fail?

I published 2 AspNetZero project and had no problem before.

When I publish new project that I downloaded last week, there is no option for "Execute code first migrations" only I can see "update database"

New project create a newproject.pubmxl like below.

<Object Type="DbDacFx">
            <PreSource Path="localhost" includeData="False" />
            <Source Path="$(IntermediateOutputPath)AutoScripts\Abp.Redis.Cache_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
          </Object>
          <UpdateFrom Type="Web.Config">
            <Source MatchValue="localhost" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
          </UpdateFrom>
        </ObjectGroup>

below is from my previous project (I use * for sensitive info)

<ObjectGroup Name="Default" Order="3" Enabled="True">
          <Destination Path="Data Source=***;Initial Catalog=***;Persist Security Info=True;User ID=***;Password=****" />
          <Object Type="DbCodeFirst">
            <Source Path="DBMigration" DbContext="****.EntityFramework.****, HGIntranet.EntityFramework" MigrationConfiguration="***.Migrations.Configuration, ***.EntityFramework" Origin="Configuration" />
          </Object>
        </ObjectGroup>
      </Objects>

Both project are used in the same computer and the same visual studio 2015 sp3.

I copy the old one to new one, it does not work.

It seems the project.web project could not find entity framework in project.entityframework project.

I'm using Angular & Core version.

I published the Project.Web.Host first then used "NG Build -prod" command which creates dist folder, then I copy the folder to the server. now I can connect and log in the web site, but menu icons and other icons are displayed like this ㅁ

Which file do I need to add to '.angular-cli.json' file?

Thanks

Hi,

I'm using V4.5.0(.Net core 2.0 and angular 4)

When a notification is sent, the notification is not displayed until the page is reloaded.

Is there a way to update the notification icon count and message without reloading the page?

I think it works with ASP.NET MVC with jquery version before.

Hi,

Below codes runs under Hangfire task scheduler. it runs without an exception while someone is using the site, but if no one uses the site for a while, it throws an exception "Cannot access a disposed object. Object name: 'UserManagerProxy"

var isRankingPermissionGranted = await _permissionChecker.IsGrantedAsync(AppPermissions.Pages_Vehicles_Reporting_FinanceAndInsurance_Ranking);

I tried below code too but it does't work either.

using (_abpSession.Use(ui.TenantId, ui.UserId))
{
    var isRankingPermissionGranted = 
    await _permissionChecker.IsGrantedAsync(AppPermissions.Pages_Vehicles_Reporting_FinanceAndInsurance_Ranking);
}

Hi,

I know that this problem is not related to ASP.NET Zero, but I hope someone could help me out with this.

With ASP.NET MVC version, recurring jobs run even after the site is not used for a while but with .Net core, recurring jobs are not fired if the site is not used for a while.

I changed idle time to 0, start mode to "Always running" and Start Automatically to "True" as I did to ASP.NET MVC version.

Anyone solved this issue?

Hi,

I'm using asp.net zero V4.5 with angular.

I face the login issue with IE. after I enter ID and Password, it comes back to log in page without any error message.(no error message in logs.txt too)

The site works well with Chrome, Edge and FF. it only happens in IE.

After I deleting cookies server times, I could manage to log in, but if I retry to login after closing the browser, the same thing happens.

Developer tools\network in IE it calls "GetExternalAuthenticationProviders" which is not called in Chrome, Edge and FF.

I'm using Zero v5.3.0 [.Net core and Angular version]

Part of action menus in child table are not shown. Regretfully, there is no demo table which uses child table, so I cannot say it's from me or not.

but the same code used to work on ZERO v4.5.0

[EDIT] I found that v5.3.0 uses "normalizePosition"

Showing 1 to 10 of 16 entries