Activities of "berkansasmaz"

When I checked the problem, I see that you can create a project with another developer account in the organization, but you cannot create one with the kingdom (kingdom@******), account, even though you have added it to your organization as a developer. Is that correct?

Hello, I am looking into your problem and will get back to you as soon as possible with the root cause.

Hi,

Thanks for the detailed explanation — it helps a lot.

We actually designed ABP Studio to support custom extensions, including fully custom templates. The idea was that anyone could build their own template extension and load it into ABP Studio UI or ABP Studio CLI, just like we load our own template package:

Volo.Abp.Studio.Extensions.StandardSolutionTemplates

This package is already an extension that ABP Studio loads through its extension system.

However, for now, due to some internal limitations, ABP Studio only allows loading our official StandardSolutionTemplates extension. Support for loading other custom extensions is planned, but not available yet.

So at the moment, there isn’t a clean or officially supported way to replace or override templates.

Workaround: Until custom extensions are enabled, you can modify the template contents inside the NuGet package cache. Updating the TemplateContents folder inside the extension package should work as a temporary solution.

We definitely plan to allow full custom template extensions in the future, so this will become much easier later on.

Let me know if you need help with the workaround.

[holy-expertni-sluzby] said: Hello. I hope this is correct place where to send bugs with Studio. Since update to 1.4.0 (and also 1.4.1) I'm missing vertical scrollbar in Solution Runner (Applications). Thank you for returning it back.

This is a known problem, and it will be fixed next version. Thanks for your patience.

Hi,

I will create an internal issue. This issue will be addressed in the next version.

Thanks.

Answer

Thanks for your question!

Currently, ABP Studio creates additional services with a minimal structure. You can check the detailed explanation and possible workaround here: 👉 https://abp.io/support/questions/7648/Unable-to-create-layering-for-microservices#answer-3a1447fd-ff9a-f065-3800-a436cfe3d88d

You can configure longer token lifetimes in your QA environment using the following example:

#if QA_BUILD
   PreConfigure<OpenIddictServerBuilder>(builder =>
    {
        builder.SetAuthorizationCodeLifetime(TimeSpan.FromDays(365));
        builder.SetAccessTokenLifetime(TimeSpan.FromDays(365));
        builder.SetIdentityTokenLifetime(TimeSpan.FromDays(365));
        builder.SetRefreshTokenLifetime(TimeSpan.FromYears(2));
    });    
#endif

For more details, please check the documentation here: https://abp.io/docs/latest/modules/openiddict#setting-tokens-lifetime

Hi DominaTang,

Before answering your question, I would like to ask you a question. In which environment do you run your automation tests? Do you run them on the live application or do you have a test environment where you run them?

Hi Tapmui,

You don’t need to apply authorization to Integration Services, because these endpoints are not exposed externally. If a user request is already validated by [Authorize] in your Application Service or Controller, there’s no need to check authorization again for internal calls. Integration Services are only used internally between modules or services, and users cannot directly send requests to these endpoints if it's not intentionally exposed to the outside in your deployment configuration.

See more:

  • https://github.com/abpframework/abp/issues/12470
  • https://abp.io/docs/latest/framework/api-development/integration-services#exposing-integration-services

Hello Yusuf,

The new solution creation process is tested by both the development team and the test team before every release. We could not reproduce the issue you reported during our tests.

The error indicates that the file is being used by another process. This often happens due to antivirus software, synchronization tools like OneDrive/Dropbox, or other services locking the file.

To identify the exact process holding the file, you can use Microsoft’s File Locksmith tool: 👉 https://learn.microsoft.com/en-us/windows/powertoys/file-locksmith

With this tool, you can see which process is locking postgresql.yml and close it before trying again.

Thank you.

Showing 1 to 10 of 732 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 05, 2025, 12:34
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.