Hi
We have AspNetZero (Paid) Product version --> 4.0 Product type --> MVC Product framework type --> .net core
Right now in default aspnetzero there is some global meachinsm which shows alert for error when any ajax call has some error. We have some specific errors for which we want to display different customized popup instead of error. So would you please let us know if there is any way we can override or exted that ajax call global error handling?
Thanks
Hi We have
AspNetZero (Paid) Product version --> 4.0 Product type --> MVC Product framework type --> .net core
1)We want to enable payment gateway, we found that we have to set up ClientId and ClientSecret. We want to confirm that existing integration is "Rest API Integration V1 (which seems to be deprecated)" ? It would be great if you can provide documentation link of particular integration of paypal.
2)We found in document about stripe payment gateway. But couldn't found any related file , reference or configuration in code. So please let us know for same.
3)Is there any auto renewal feature for subscription in the version of aspnetzero we have?
Thanks
Hi We have AspNetZero (Paid) Product version --> 4.0 Product type --> MVC Product framework type --> .net core
in chat window of user, it seems there is some issue with slimscroll , when we scroll it is doing multiple calls to server on one scroll. This seems to be happening more when we have reached end of scroll : http://prntscr.com/pn2clz
Please let us know if there is any solution for same or is it something related to slimscroll plugin?
Display timing issue on chat window when refreshing a page, (Ex. When we initiate chat it showing send time "less than a minute ago" and at same time we refresh page it will increase time and showing send time "about 6 hours ago" and we have server time in utc but seems serverTimeDifference is causing issue)
We need to use default AbpCommonHub for sending some signalR messages. We are able to inject it in controller and also user is connected to it but when we send message from it _hubContextAbpCommon.Clients.User(userId.ToString()).SendAsync("test", "test"); message is not received on client side, where we have registered callback also as below in abp.signalr-client.js:
// Configure the connection function configureConnection(connection) { // Set the common hub abp.signalr.hubs.common = connection;
// Reconnect if hub disconnects
connection.onclose(function (e) {
if (e) {
abp.log.debug('Connection closed with error: ' + e);
}
else {
abp.log.debug('Disconnected');
}
if (!abp.signalr.autoConnect) {
return;
}
setTimeout(function () {
connection.start();
}, 5000);
});
// Register to get notifications
connection.on('getNotification', function (notification) {
abp.event.trigger('abp.notifications.received', notification);
});
connection.on('test', function (notification) {
alert(notification);
});
}
Hi
We are trying to apply ip based access for specific tenants/users, we tried below code but it seems to be firing for each request on system.
app.Use(async (context, next) => { var test = context.Request.Path; IocManager.Instance.Using<TenantManager>(async tenantManager => { if (!tenantManager.ValidateIPAddress()) { throw new AbpAuthorizationException(); } });
await next.Invoke();
});
Is there any other better approach available? or can we override AbpMVCAuthorize?
Hello
Is there a any way to generate css file from less file ? As we have some less files in project solution but doesn't seems to be changing while save or compile. Let us know if need to install any tool or vsix in visual studio?
Thanks
Hello, We are using AspNetZero (Paid) Product version --> 4.0 Product type --> MVC Product framework type --> .net core
We want to disable logging each and every event happening in system. We only want to log exceptions. Reason: It seems to be affecting system performance significantly.
Please do let us know if there is a way to do so via some configuration changes or any other way?
Hello, We have boilerplate project , in layout.cshtml we have render following css file
<link rel="stylesheet" abp-href="/view-resources/Areas/App/Views/_Bundles/vendors.bundle.css" asp-append-version="true" />
I have alredy added asp-append-version attriubtue that render with version and whenever we change anything in css file it will update in next publish But we abp-href attribute not allowing to render version.
If i replace abp-href with href only then it renders like below on the page
<link rel="stylesheet" href="/view-resources/Areas/App/Views/_Bundles/vendors.bundle.css?v=0l9zLicnowsXZpVQU1j7_kKT4IoqT-6EWfm-5dkrzqo&v=0l9zLicnowsXZpVQU1j7_kKT4IoqT-6EWfm-5dkrzqo" href="/view-resources/Areas/App/Views/_Bundles/vendors.bundle.css" />
Can you please guide us what is the use of abp-href and why it is not working with versioning ?
Our boilerplate version is 4.0
Hello , I am working with boilerplate front-end is Jquery and backed is .Net core . In that for Host user there email setting option available. I have added my sendgrid SMTP credentials but for host user email is not sending.
I have no idea why it is behaving like this. all the host user confifuration is reading in __emailsender object but email is not going