Base solution for your next web application

Activities of "ismcagdas"

Hi,

Did you solve the problem ?

Answer

Hi,

This might give you an idea <a class="postlink" href="http://aspnetzero.com/Faq">http://aspnetzero.com/Faq</a> see section #HOW TO UPGRADE EXISTING APPLICATIONS WHEN A NEW VERSION IS AVAILABLE?

Hi,

Mentioned modes DEBUG and RELEASE are Visual Studio's modes, the way you run your project on Visual Studio.

For the enviroments, there is nothing special for ASP.NET Zero. You can select environments for your project in your own way.

It has many criterias like the size of project, fault tolerance, customer needs etc :).

Hi,

  • a notification to be received by every users if we don't specify a tenant nor a user

This is not right. This notification will be sent to subscribed users of current tenant.

The other two cases are correct but notifications are sent to subscribed users only.

You can find more about notifications here if you haven't read it yet. <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Notification-System">http://aspnetboilerplate.com/Pages/Docu ... ion-System</a>

Hi,

After running your application, can you try to go "http://localhost:xxx/Account/Logout" and login again ?

Hi,

In the owin startup class "Startup.cs", SignalR mapping must be placed just before HangFire configuration at the end of Configuration method.

....
    app.MapSignalR();

    app.UseHangfireDashboard(); //Should be removed if not using Hangfire as background job manager
}

Let us know if it does not work.

Hi,

Can you try to publish website to your local IIS and see if this error happens ? If it does not happen, you can compare differencese between your local PC and server.

What is the operating system on published server ? It might be related to that.

Hi,

Which version of ABP is referenced in your project ?

Hi,

If user with id 1 does not belong the same Tenant/Host with logged in user, you cannot see CreatorUserName. Can you confirm that, logged in user and user with id 1 belongs to same tenant or host.

If this is not the case, then we will investigate further.

Answer

Hi,

Can you share your js & cshtml files in order to check problem. Do you see any script error when open chrome developer console ?

Is your search button html <a> element ? If so, it's href property might be causing the problem.

Showing 12691 to 12700 of 12723 entries