|
I am having a problem with Internet. Internet is not working intermittently in my system, at those times, in one of my colleague's system it is working. If I disable and re-enable my network, it works again.
Any idea how to fix this? We are having static...
Started by sabya on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
I was having.
Problem on his Vista machine intermittently and changing the setting apparently cured it.
|
|
I was having a problem with my .NET 1.1 website which was hard to track down. The default page would show up but when the user entered credentials, it would just be as if nothing happened and the default page would be re-loaded again, without any error...
Started by Pritika on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
However, if the ....
The reason you get an intermittant/strange problem is that once a 1.1 app is running in an app pool, a 2.0 app will then crash when it starts.
1.0, 1.1 or 2.0.
An application pool can only run apps for a single version of .net .
|
|
I have a number of stored procedures I call from code with ExecuteNonQuery .
It was all good but 2 of my stored procedures started timing out intermittently today with:
Timeout expired. The timeout period elapsed prior to completion of the operation or...
Started by JohnIdol on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Can you share the source of one of your procs?
http... .
Is you command timeout set? Has something in your db recently changed that is causing this proc to take longer?
If you are have to diagnose locking issues, you will need to use something like sp_lock .
|
Ask your Facebook Friends
|
Having moved our ASP.NET site from 32-bit Windows Server 2003/IIS6 to 64-bit Windows Server 2008/IIS7 (classic mode), certain active directory operations are intermittently experiencing huge delays.
Specifically, DirectorySearcher.FindOne() and DirectoryEntries...
Started by kasey on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Please setup ASP.NET 2.0 Classic mode for the Application Pool you are using or create new one and apply that, we had similar problem as IIS 7 has new pipelined mode for request processing that is quite new and still there is no clarity of how it will... .
|
|
We keep getting this error randomly in our web application.
System.Data.SqlClient.SqlException: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify...
Started by Jamey McElveen on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It's possible that the server is too busy to respond - are you using SQL Express or Workgroup Edition? Also, how many connections at a time does this server have? Is this error happening on all connections at a certain time, or do some connections get... .
|
|
I have tried both
ini_set('include_path', '.:/usr/share/php5:/usr/share/php5/PEAR:lib:app/classes');
in the code itself and also
php_value include_path ".:/usr/share/php5:/usr/share/php5/PEAR:lib:app/classes"
in the .htaccess file.
Both methods actually...
Started by Binarytales on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Additionally, you should be using the constant PATH_SEPARATOR as it differs between ... .
As a benefit this returns false on failure, allowing you to at least catch the occurence and generate some meaningful debug data .
Have you tried set_include_path() ?.
|
|
The attached VBA procedures are for a progress bar userform. Everything works as expected, except that the cancel button is intermittently unresponsive.
I say intermittently because, 95% of the time I have to click the cancel button numerous times before...
Started by Kuyenda on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The answer is to use modal userforms for progress bars so that the button click event can fire... .
Try unloading any add-ins or any other code that could be running inside the container app and see if that helps .
Works for me on the first click every time.
|
|
We have some JavaScript that writes a script include to a dynamic resource in our web page in order to allow us to communicate some information between pages served from different servers that are subject to cross site scripting restrictions.
The idea...
Started by james.bunt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try adding some additional entropy to the src include:
script.src = serverHome + "/ajavascriptfile.js?token=" + token + "&num=" + i + '&r=' + Math.random();
It may be that the scripts are not queueing... .
Internet Explorer may be caching the script file.
|
|
All,
I have a WCF service that times out intermittently, usually after about ten or twelve requests from the asp.net client. The service uses reflection to find classes in its assembly (WAP dll) that have a custom attribute set. The process itself is ...
Started by David Lively on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Unfortunately, the most....
That will give you a better idea of exactly where (in what method or call) the problem is .
A good way to help diagnose this type of problem is to enable tracing on the client and the server and using the Service Trace View Tool .
|
|
We recently had an issue I'd never seen before, where, for about 3 hours, one of our Mysql tables got extremely slow. This table holds forum posts, and currently has about one million rows in it. The query that became slow was a very common one in our...
Started by wbharding on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
EXPLAIN SELECT * FROM `posts` WHERE (`posts`.forum_id = 1) ORDER BY posts.created_at DESC LIMIT 1;
It may be worth checking the MySQL response time in your Rails code, and if it exceeds a threshold then run the EXPLAIN... .
I'd try the MySQL EXPLAIN statement...
|