0

I have deployed nopcommerce v3.40 website at IIS with binding FTP site. But I failed to install plugin & it gives an error

"Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding."

This plugin creates table with data on sqlserver by sqlscript.

Moreover, When I execute same script which execute thru plugin directly at database on sqlserver it creates table with data successfully without any error.

Also connection String is:

Data Source=localhost;Initial Catalog=Nop24_34;Integrated Security=True;Persist Security Info=False;Connect Timeout=30000

Please help me to resolve this issue.

Vidya Sagar
  • 1,699
  • 3
  • 17
  • 28
chitra
  • 556
  • 1
  • 4
  • 14

1 Answers1

0

My mentioned above problem is resolved. It is due to

ObjectContext.CommandTimeout = 600;

is not set in my code.

Also refer this link: Entity Framework Timeouts

Hope this will helpful to someone.

Community
  • 1
  • 1
chitra
  • 556
  • 1
  • 4
  • 14