[Microsoft][SQL Server Native Client 11.0]Shared Memory Provider: Timeout error [258]

php, sql-server-2008

Solution

- This error is probably caused by a very slow connection or SQL query taking a long time.

- It is not an SQL Server problem.

Try extending the timeout value in your connectionString in PHP.

See this previous answer

You need to change some setting in your php.ini : upload_max_filesize = 2M ;or whatever size you want

max_execution_time = 60 ; also, higher if you must

Were your PHP.ini is depends on your enviroment

Problem

Good day. I have website on php5. All query perform with sqlsrv; When i make query i get error: ``` [Microsoft][SQL Server Native Client 11.0]Shared Memory Provider: Timeout error [258] ``` How to fix error?

Original source

Related problems