Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "rickfrankel"

@ismcagdas Is there any update on this one? I've seen this multiple times as well. We can reproduce it every time on a particular AppService. This AppService was working fine in version 10, but upgrading to 11.2 and I've got this error happening randomly as well.

Done.

Thanks Rick

https://github.com/aspnetzero/aspnet-zero-core/issues/4445

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version?
  • 11.2
  • What is your product type (Angular or MVC)?
  • Angular
  • What is product framework type (.net framework or .net core)?
  • .Net Core

If issue is about UI

  • Which theme are you using?
  • Default theme
  • What are the theme settings?
  • Default

I've noticed that during my upgrade from version 10 to 11.2 that many of the font setting classes have not been upgraded in the template.

For example. https://github.com/aspnetzero/aspnet-zero-core/blob/43544f3584dbfc839fa81c15d3391f0feb7ee861/angular/src/app/shared/common/customizable-dashboard/widgets/widget-top-stats/widget-top-stats.component.html

This file still uses font-weight-bolder and font-size-h6

However I don't believe these classes exist any more. They look to be either fw-bolder and fs-6 (or perhaps just h6).

This appears across a large number of files.

Has this been missed during the upgrade to Metronic 8? Or am I missing something.

It also impacts the ThemeCustomizers for the subheader menu component.

Thanks

Prerequisites

  • What is your product version?
  • 10.5
  • What is your product type (Angular or MVC)? Angular
  • What is product framework type (.net framework or .net core)? .Net Core

When trying to run npm run create-bundles on the public MVC website I more often than not get the following error.

[10:28:09] Using gulpfile C:\GitHub\Inbound\aspnet-core\src\XXX.Web.Public\gulpfile.js [10:28:09] Starting 'buildDev'... Bundles are being created, please wait... [10:28:24] 'buildDev' errored after 15 s [10:28:24] Error: EBUSY: resource busy or locked, open 'C:\GitHub\XXXX\aspnet-core\src\XXXX.Web.Public\wwwroot\dist\img\portlet-expand-icon-white.png'

The actual image icon in the error changes each time, however it is always on an image file that it happens.

I've tried disabling virus scanning and any other things I can think of that could be accessing the files at the same time

Yarn version is 1.22.15 NPM version is 6.14.12

Anyone seen this or got any suggestions?

Thanks

aiqbal just found this. https://github.com/aspnetzero/aspnet-zero-core/issues/3991

It's coming sometime :)

+1 from me as well.

Hi Musa,

Ok I think I can see why you are not seeing the problem.

pages.CreateChildPermission(AppPermissions.Pages_Operations_My_Permission_View, L("Pages_Operations_My_Permission_View"));

This permission is likely to also be given to the account you are currently logged in as.

Can you test again with the permission looking like this.

pages.CreateChildPermission(AppPermissions.Pages_Operations_My_Permission_View, L("Pages_Operations_My_Permission_View"), multiTenancySides: MultiTenancySides.Tenant);

That way the host account you are logged in as when you create the tenant won't actually have the permission required to subscribe to that notification (even tho the tenant admin will).

Thanks Rick

Hi Musa,

Thanks for the reponse. Give me a few days to digest it and try and reproduce my issue in the original template and not in my complete project.

Thanks

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version?
  • 10.3
  • What is your product type (Angular or MVC)?
  • Angular
  • What is product framework type (.net framework or .net core)?
  • .Net Core

The method GetEntityPropertyChanges in AuditLogAppService retrieved ALL audit log property changes before filtering to the ID it's after.

I've changed to var entityPropertyChanges = await _entityPropertyChangeRepository.GetAll() .Where(epc => epc.EntityChangeId == entityChangeId).ToListAsync();

In my project and it seems to still work perfetctly.

Thanks Rick

Further to the above. I added in this call just before that check. var test = _roleManager.GetGrantedPermissionsAsync(roleId).Result; if (_roleManager.IsGranted(roleId, permission)) { return true; }

            The test returned permissions, HOWEVER they are not the permissions of that role.  They are the permissions of the role I am logged into as the user creating the new tenant.  
            
            Something doesn't appear to be quite right here.
Showing 81 to 90 of 128 entries