Activities of "ademaygun"

Hi Engincan, While you're at it, if you could change the Google logo as in the link, it would be more standard, thank you. replace with

Hi Engincan, It did not allow login (this is expected behavior) only this warning message did not come. (MVC UI- Authorization Code Flow)

Hi, I think this is a bug, so it would be better if you solve this issue.

  • Steps to reproduce the issue:
  • Login with admin
  • Go to Settings ->Account -> External providers enable google provider
  • Passive a user that you can log in with an external provider(google) and try to log in with that user via Google.

I activated the Google external provider in one of my projects. If the user logs in with a local login when isActive=false, the warning "You are not allowed to log in! Your account is inactive or needs to confirm your email/phone number" is given. If the same user logs in with Google, they stay on the login page but the same warning message should come but it does not.

Hi Engincan, I missed that part in the document. Issue solved. Thank you very much for your support.

Hi, I sent the sample application to support@abp.io

Hi Engincan, I changed the Built Action property of the file to Embedded Resource but unfortunately I got the same error.

I even tried something like this:

  1. Add textfile.txt as EmbeddedResource to the /Pages/Account folder (in Host project)
  2. Read the textfile.txt file in any an AppService method: var t = File.OpenText("/Pages/Account/textfile.txt"); But I still got the error: System.IO.DirectoryNotFoundException: Could not find a part of the path '/Pages/Account/textfile.txt'. I created the application via Abp Studio and did not make any special changes.

Hello,

I am currently working on customizing the MVC Register page in my ABP Framework project. I have added a custom JavaScript file named cregister.js to handle additional client-side logic. However, when I deploy the project, I encounter the following error:

Volo.Abp.AbpException: Could not find file '/Pages/Account/cregister.js'

  • I have created the cregister.js file and placed it in the /Pages/Account/ directory.

  • I have updated the Register.cshtml file to include the script bundle configuration as follows: @section scripts { <abp-script-bundle name="@typeof(Volo.Abp.Account.Public.Web.Pages.Account.RegisterModel).FullName"> <abp-script type="@typeof(ZxcvbnScriptContributor)"/> <abp-script src="/Pages/Account/PasswordComplexityIndicator.js"/> <abp-script src="/scripts/cregister.js"/> </abp-script-bundle> } }

  • I have also configured the bundle in the HttpApiHostModule.cs file as follows:

   Configure<AbpBundlingOptions>(options =>
    {
        options
            .ScriptBundles
            .Configure(typeof(RegisterModel).FullName, bundle => {
                bundle.AddFiles(
                    "/Pages/Account/cregister.js"
                );
            });
    });

Actually, according to this link, I shouldn't need a bundle configuration for a single file. I don't get any errors while debugging, but I get this error on the server?

  • ABP Framework version: v9.0.0
  • UI Type: MVC
  • Database System: EF Core
  • Tiered (for MVC) or Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • No Exception
  • Steps to reproduce the issue:
    • Create an Abp Project
    • Select "Require confirmed email" option in Administration -> Settings -> Sign in Settings
    • Logout and Register for a new user

In an ABP application where email verification is mandatory, when a user clicks the 'verify' button during registration, a confirmation token email is sent from confirmuser.js. Then, the confirmation status is checked every 3 seconds using setInterval. However, there’s currently no timeout mechanism. Instead, it might be better to use WebSocket or setTimeout (for example, checking up to 20 times every 3 seconds). Additionally, if a 'Resend' button is displayed when the timeout expires, users can resend the confirmation email, creating a more flexible and user-friendly experience. Thanks.

Hi Berkan, I think you got support from AI while answering my question :) no problem but I find the answer wrong. MySmsSender class is just like EfCoreProductRepository and should not be in domain or application layer. What I asked was can we host it in .HttpApi project, until now we have always progressed by making a separate project. For example BookStore.Integration. I was just wondering if there could be other alternatives before starting my new project. I will continue to host such classes in a new project (module). Thanks anyway.

Showing 1 to 10 of 103 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 10, 2025, 06:30