Activities of "armanozak"

Hi Esben_Dalgaard,

Seeing the whole project is not going to help anyway. A better approach is for you to reproduce the same error with a minimal repo. The general steps would be like this:

  1. Initiate a new project with ABP CLI.
  2. Add only one or two entities.
  3. Try to get the same error.

If you can get the same error, this minimal example can be shared (without the node_modules folder) and will help us find the problem. Otherwise, it is extremely difficult to spot what is wrong.

Hi Esben_Dalgaard,

This cannot be the component that causes the problem, because it has no NgbPaginationComponent in it. And from the code we could not figure out anything problematic.

Could you please do one one the following?

  • Share the steps to reproduce the problem.
  • Share a minimal reproducible example.

Thanks.

Hi,

You cannot alter the HTML structure of built-in components, but they are Bootstrap compliant. There is nothing specific to Lepton theme in the HTML.

In addition, a limited number of components are replaceable: https://docs.abp.io/en/abp/latest/UI/Angular/Component-Replacement

Including CSS and JS files is described here: https://angular.io/guide/workspace-config#style-script-config

Please let me know if this answers your question.

Hi,

Is it the Lepton themes you are asking about?

Hi,

The language management module allows defining a new localization at runtime. So, even if a language is not available before, it may be needed at runtime. This is why all those languages are generated and added to the bundle.

There is no way to exclude files for now, but we have an open issue (v4.0 milestone) and are planning to introduce a custom localization handler which does that.

Please let me know if this answers your question.

Have a nice week.

The issue looks inactive. Please feel free to reopen it if the problem still exists in 3.3-rc1version.

Hi @ninomartini,

There is a bug regarding isTenantBoxVisible. It will work as of v3.3 as @Mehmet described.

I will close the issue, but if the problem continues after v3.3, please feel free to reopen it.

Hi,

I am pretty sure the problem is at https://<public_ip>:5000/connect/authorize/callback request, because, although the correct redirect_uri parameter is passed to it, the user is redirected to https://<public_ip>:5000/Account/Login instead of https://<public_ip>. However, I am not sure what is wrong with it.

I am going to have to ask someone else from the team for further help. Sorry.

Hi,

Unless Nginx delivers the latest files, we cannot verify if the configuration is working or not. So, we first should make sure that an earlier version of the app is not running. Only after then we can address the issues.

Please try suggested changes and let me know about the result.

Note: You can disable the cache in the browser and try again instead of implementing the changes. That would be much quicker.

Hi,

I see two things:

  1. On the 2nd screenshot, where abp-ng-account-es2015.js is loaded, there is no hash at the end of the filename. Angular puts a hash on production build output by default to avoid caching of old files. The response on the screenshot shows that the file is loaded from cache. Please check if you are using yarn ng build --prod or yarn build:prod for production. If you are using the prod build command but have disabled hash generation in angular.json on purpose, I recommend turning it back on.
  2. The Nginx configuration should add headers to requests made to index.html, otherwise browser will cache it. The (simplified) configuration for headers usually looks something like this:
location / {
    gzip_static on;
    try_files $uri @index;
}

location @index {
    add_header Cache-Control no-cache;
    expires 0;
    try_files /index.html =404;
}

Please try things above and let me know if the issue is fixed.

Have a great day.

Showing 31 to 40 of 107 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13