This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.net> | |
<defaultProxy enabled="true" useDefaultCredentials="false"> | |
<proxy | |
proxyaddress="http://127.0.0.1:8888" | |
bypassonlocal="true" | |
/> | |
<bypasslist/> | |
<module/> | |
</defaultProxy> | |
</system.net> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[^\x00-\x7F]+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select * from master..sysprocesses |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.Diagnostics.Debug.WriteLine("ZGZGZG " + new String(' ', Environment.StackTrace.Split('\n').Length) + " | " + System.DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss.fff") + " APICall Class Method action"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) [Download Microsoft Network Monitor](http://www.microsoft.com/en-us/download/details.aspx?id=4865) | |
2) Once installed, go to Tools -> Options -> Parser Profiles. Right click on Windows, and Set as Active. | |
3) Obtain the IP address of the DB server. (e.g. 1.1.1.1) | |
4) Start a new trace, and use the filter: | |
IPv4.Address == 1.1.1.1 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myDBContext.Database.Log = message => System.Diagnostics.Debug.WriteLine(message); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
global $LOG_FILE_NAME; | |
$LOG_FILE_NAME = session_save_path() . '/' . uniqid('log_file_') . microtime(true); | |
file_put_contents($LOG_FILE_NAME . '.START', print_r($_REQUEST, true) . print_r($_SERVER, true) . print_r($_SESSION, true)); | |
function log_file_shutdown_function () { | |
global $LOG_FILE_NAME; |