Activities of "Vishnuvardhan"

Hi maliming,

IIS logs issue has been resolved. there i am hosting the application in inuthub/wwwroot folder. because of that logs file not created. I have moved the publish files to dfault c drive and given that path in the iis hosting.

Thanks for the support

Hi,

getting this error for submitting the form in the settings components

Error: Lepton.Global.9ED3DF…8868847459041541:14 PUT https://fabdemo.xsensemfa.live/api/app/aad-configuration 500 (Internal Server Error) send @ Lepton.Global.9ED3DF…8868847459041541:14 ajax @ Lepton.Global.9ED3DF…8868847459041541:14 (anonymous) @ Lepton.Global.9ED3DF…8868847459041541:15 Deferred @ Lepton.Global.9ED3DF…8868847459041541:14 abp.ajax @ Lepton.Global.9ED3DF…8868847459041541:15 ensurity.aMS.aadConfiguration.aadConfiguration.update @ ServiceProxyScript:1 (anonymous) @ VM373:1 dispatch @ Lepton.Global.9ED3DF…8868847459041541:14 y.handle

here when i try to save the form i am getting the error which i hilighted in the inspect

But in my local debug i am not getting any issues. After hosting the application in iis i am facing this issues . For the SMTP settings also i am getting the same issue.

Hi,

i have added the code what you have mentioned. it is working now.

i am generating the log file daily date basis. log files are generating in debug mode. i have hosted my application in iis and when i start my application, log files are not creating. i have added this code in my program.cs file could you help me out.

public static int Main(string[] args)
{
    Log.Logger = new LoggerConfiguration()
#if DEBUG
        .MinimumLevel.Debug()
#else
        .MinimumLevel.Information()
#endif
        .MinimumLevel.Override("Microsoft", LogEventLevel.Information)
        .MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
        .Enrich.FromLogContext()
        .WriteTo.File("Logs/logs.txt", rollingInterval: RollingInterval.Day)
        .CreateLogger();

    try
    {
        Log.Information("Starting web host.");
        CreateHostBuilder(args).Build().Run();
        return 0;
    }
    catch (Exception ex)
    {
        Log.Fatal(ex, "Host terminated unexpectedly!");
        return 1;
    }
    finally
    {
        Log.CloseAndFlush();
    }
}

internal static IHostBuilder CreateHostBuilder(string[] args) =>
    Host.CreateDefaultBuilder(args)
        .ConfigureAppConfiguration(build =>
        {
            build.AddJsonFile("appsettings.secrets.json", optional: true);
        })
        .ConfigureWebHostDefaults(webBuilder =>
        {
            webBuilder.UseStartup<Startup>();
            //.UseContentRoot(Directory.GetCurrentDirectory())
        })
        .UseAutofac()
        .UseSerilog();
}

Hi,

  1. In the my account i am not able to submit the forms (Profile picture, Personal info) submit s not working , here i am submitting , page is automatically reloading and api is not hitting and getting the issue in manage.cshtml page.

this is the error i am getting when i try to submit

I have checked by creating the mew project in 9.1.3 version with the source code and the js files added as abundlescripts in both so no change is there in the code

2)for the login screen , i am still facing the issue with captcha i am not getting to manage from the event in js

<div class="modal fade bd-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true" id="qrImageModal" data-backdrop="static" data-keyboard="false"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">Click on YES to proceed...</h5> </div> <div class="modal-body text-center"> <div class="articleBody clear" id="page" style="width:220px; height:220px"> <div id="clickable"> <input type="hidden" id="inptId" class="form-control" /> <div id="qrimageData" aria-label="Close"> </div> </div> </div> </div> <div class="modal-footer"> <p class="text-center font_14">Ensurity's innovated eCAPTCHA based on patented NLSS technology</p> </div> </div> </div> </div>

this is the code i am using in login page script: <script> var captchaSuccess = false; var myVar; var _origin = window.location.origin; function myStopFunction() { clearTimeout(myVar); }

$("#check").click(function () {
    $("#qrImageModal").modal('show');
    myVar = setInterval(function () { generateQR(); }, 3000);
});

$(document).ready(function () {
    chechboxlength();
    $('input[type="checkbox"]').click(function () {
        if (captchaSuccess) {
            chechboxlength();
        }
    });
    $('#btnSubmit').prop('disabled', true);

    $("#check").click(function () {
        $("#qrImageModal").modal('show');
        myVar = setInterval(function () { generateQR(); }, 3000);
    });
});

function chechboxlength() {
    $('#btnSubmit').prop('disabled', false);
}
function generateQR() {
    var url3 = _origin + '/api/tpcg/code?applicationId=' + "Ensurity";
    $.ajax({
        type: 'GET',
        url: url3,
        success: function (data) {
            $("#inptId").val(data.id);
            $('#qrimageData').html(data.qrData);

        },
    });

}

function _ThreeDIDimageOnClick(elementRef) { var posObject = getEventLocation(event); var url = _origin + '/api/tpcg/validate?applicationId=' + "Ensurity&&id=" + $("#inptId").val() + "&&x=" + posObject.x + "&&y=" + posObject.y; $.ajax({ type: 'GET', url: url, success: function (data) {

                var modalEl = document.getElementById('qrImageModal');
                var modalInstance = bootstrap.Modal.getInstance(modalEl) || new bootstrap.Modal(modalEl);
                modalInstance.hide();

            switch (data) {
                case 1:
                    captchaSuccess = true;
                    $('#btnSubmit').prop('disabled', false);
                    $('#check').addClass('shown');
                    $('#check').removeAttr('check');
                    $('#check').removeClass('hiden');
                    $('#eCaptchadiv').addClass('showncheck');
                    chechboxlength();
                    myStopFunction();
                    break;
                default:
                    captchaSuccess = false;
                    $('#btnSubmit').prop('disabled', true);
                    $('#check').addClass('hiden');
                    $('#check').removeClass('shown');
                    $('#eCaptchadiv').removeClass('shown');
                    myStopFunction();
                    break;
            }
        },
    });
}
function getEventLocation(event) {
    var pos_x = event.offsetX ? (event.offsetX) : event.pageX - document.getElementById("tpcg").offsetLeft;
    var pos_y = event.offsetY ? (event.offsetY) : event.pageY - document.getElementById("tpcg").offsetTop;
    return { x: pos_x, y: pos_y };
}&lt;/script&gt;

this is the script that i have written for the captcha can you help on thesee two issues

hi,

I am getting the issue because of the bootstrap an jquery version issues i have updated from bootstrap:4.6.0 to 5.3.7 jquery : 3.6.0 to 3.7.1

but i didn't understand how to resolve that

Package.json: { "version": "1.0.0", "name": "my-app", "private": true, "dependencies": { "@volo/abp.aspnetcore.mvc.ui.theme.lepton": "~9.1.3", "@volo/saas": "~9.1.3", "@volo/audit-logging": "~9.1.3", "@volo/identity": "~9.1.3", "@volo/account": "~9.1.3", "bootstrap": "^5.3.7", "jquery": "^3.7.1" }, "resolutions": { "jquery": "^3.7.1", "bootstrap": "^5.3.7" } } i have done the abp install-libs

hi,

  1. this image logo went up automatically

  2. This model not closing after selecting "YES"

Hi

i have modified the id's properly now it is working for the aad configuration and companylogo tab but in the login page Fab logo went up and it need to be above the login card and i am not a robot action popup is not closing after selection value

Hi

that code already there

public async Task ConfigureAsync(SettingComponentCreationContext context) { if (!await CheckPermissionsInternalAsync(context)) { return; }

var l = context.ServiceProvider.GetRequiredService&lt;IStringLocalizer&lt;AccountResource&gt;>();
context.Groups.Add(
    new SettingComponentGroup(
        "Volo.Abp.Account",
        l["Menu:Account"],
        typeof(AccountAdminSettingManagementComponent)
    )
);

}

hi

that localization issues resolved. But, for the application libs bootstrap4 updated to bootstrap5. I have added the settings components "AAD Configuration" and "Company Logo" so i am getting these issues and ui view for the user info image from top right to left it is coming and have this type of similar issue in the ui. can you please help me out based on the reference screen i attached.

Hi maliming,

In my updated project, i am using volo.LeptonTheme a.d i updated my package.json file. package.json : { "version": "1.0.0", "name": "my-app", "private": true, "dependencies": { "@volo/abp.aspnetcore.mvc.ui.theme.lepton": "~9.1.3", "@volo/saas": "~9.1.3", "@volo/audit-logging": "~9.1.3", "@volo/identity": "~9.1.3", "@volo/account": "~9.1.3" }, "resolutions": { "jquery": "^3.7.1", "bootstrap": "^5.3.7" } } now i am getting the data but getting this pagination(Localization) issues and some page loading issues:

please find the HAR file which is attached. https://ensuritytech-my.sharepoint.com/:u:/g/personal/vishnuvardhan_u_ensurity_com/Ec5ML4PoiFZOjtXcfld1uqEBX0Zo7N3IYdNYGuNUD7iQng?e=ymAbYY

Thanks.

Showing 1 to 10 of 23 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.0.0-preview. Updated on July 08, 2025, 08:19