Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Is there any functionality to store data on client side and proceeed later - for ex. when offline - and send them to backend when client again online? Thanks
thanks yes -thought there was something could be done from Frontend. thanks
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi, where can I set that Log file only log errors ? we have huge log files just with information logs - we don't need that. Thanks
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
After update from 8.4 to 10.2 I'm getting in HOST - Settings the following HostSettingsAppService: Abp.AbpException: There is no setting defined with name: App.UserManagement.AllowUsingGravatarProfilePicture at Abp.Configuration.SettingDefinitionManager.GetSettingDefinition(String name) at Abp.Configuration.SettingManager.GetSettingValueInternalA
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
I needs to debug method GetLoginResultAsync - and check the password - because I get an error User / Pwd wrong. The user exists - therefore Pwd must be wrong.
Is the password encryptet - if yes - can I somehow get the real password while debugging?
Web.Controllers.TokenAuthController - GetLoginResultAsync - password
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi,
I needs to change MultiTenancyEnabled from true to false to existing database - I've there 2 tenants - the default one (ID 1) - and my used one - tendant (ID 518) I only need tendant (ID 518) - so when I change it to MultiTenancyEnabled = false - should I delete then default one (ID 1) with SQL ? Any hints?
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi,
I needs to access webpages from another ASP.NET site with ASP.NET Membership auth in ASPZERO Angular project - My idea is to use iframe for that. How could that be done? Any idea / hints? Thanks in adcance.
This is my log4net.Production.config - also Errors are not logged anymore
<?xml version="1.0" encoding="utf-8" ?> <log4net> <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender" > <file value="App_Data/Logs/Logs.txt" /> <appendToFile value="true" /> <rollingStyle value="Size" /> <maxSizeRollBackups value="10" /> <maximumFileSize value="10000KB" /> <staticLogFileName value="true" /> <layout type="log4net.Layout.PatternLayout"> <conversionPattern value="%-5level %date [%-5.5thread] %-40.40logger - %message%newline" /> </layout> </appender> <root> <appender-ref ref="RollingFileAppender" /> <level value="WARN" /> </root> </log4net>
Did it help?