Base solution for your next web application

Activities of "rafalpiotrowski"

any news?!?

added , { useHash: true } to root-routing.module.ts

imports: [RouterModule.forRoot(routes, { useHash: true })],

have send you email with links

version 6.3.1

I am using multitenant site address

when I hit address default.myappdomain the application gets the default and check if it is a tenant is so it goes and call changeTenantIfNeeded

changeTenantIfNeeded(tenantId?: number): boolean {
    if (this.isCurrentTenant(tenantId)) {
        return false;
    }

    abp.multiTenancy.setTenantIdCookie(tenantId);
    location.reload();
    return true;
}

this reloads the page and I get error 404

I am using aspnetcore and angular with net 4.6.1

when I run the create bundle I get that the package.json file is missing

C:\Users\me\source\repos\MyApp\aspnet-core\src\MyApp.Web.Public>npm run create-bundles npm ERR! path C:\Users\me\source\repos\MyApp\aspnet-core\src\MyApp.Web.Public\package.json npm ERR! code ENOENT npm ERR! errno -4058 npm ERR! syscall open npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\me\source\repos\MyApp\aspnet-core\src\MyApp.Web.Public\package.json' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoent

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\me\AppData\Roaming\npm-cache_logs\2018-11-28T21_05_30_162Z-debug.log

What has changed in version 6 that the memory consumption went from 150 to 600MB on the Web.Host project alone???

in which folder do I have to run npm run create-bundle?​

total mess with packages

finally fixed it

I run the project from VS and also do Publish on my IIS server and have the same result

How can I solve it.

I upgrated from 5.4.1

I use Angular but this is ASP.NET MVC application

Showing 21 to 30 of 78 entries