User Sergey Kornilov - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T10:56:28Z http://stackoverflow.com/feeds/user/10969 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1845449/how-do-i-debug-a-500-internal-server-error-on-iis-6-0-managed-by-plesk-running-a/1898719#1898719 0 Answer by Sergey Kornilov for How do I debug a 500 Internal Server Error on IIS 6.0 managed by Plesk (running ASP classic)? Sergey Kornilov 2009-12-14T03:13:35Z 2009-12-14T03:13:35Z <p>The following applies to Plesk only.</p> <p>Proceed to your domain in Plesk control panel and turn off "Custom Error Documents" under "Physical hosting setup". This will send error message directly to the browser. </p> <p>You can also find error messages in log file directory <code>yourdomain.com\statistics\logs\W3SVCXXXX</code></p> http://stackoverflow.com/questions/1674222/error-using-excel-odbc-driver-in-classic-asp/1674337#1674337 0 Answer by Sergey Kornilov for Error using excel ODBC driver in classic asp Sergey Kornilov 2009-11-04T14:59:22Z 2009-11-04T14:59:22Z <p>As a first step use forward slashes in MapPath i.e. /Resources/uploads/filername.XLS</p> <p>Then verify path is correct.</p> <p>Try the following to see if it points to the right file:</p> <pre><code>Response.Write server.MapPath("/Resources/uploads/filername.XLS") </code></pre> http://stackoverflow.com/questions/1670047/automatically-transfer-blog-post-rss-in-facebook-twitter/1670072#1670072 0 Answer by Sergey Kornilov for Automatically transfer Blog post (rss) in Facebook, Twitter... Sergey Kornilov 2009-11-03T20:53:40Z 2009-11-03T20:53:40Z <p>Check TweetMiner that does the job for <a href="http://tweetminer.net/" rel="nofollow">Twitter</a>. </p> http://stackoverflow.com/questions/1665214/version-control-for-non-programmers/1665292#1665292 0 Answer by Sergey Kornilov for Version Control for non-programmers Sergey Kornilov 2009-11-03T04:41:02Z 2009-11-03T04:41:02Z <p>I recommend to check <a href="http://www.neveroverwrite.com/" rel="nofollow">NeverOverwrite</a>.</p> <p>It keeps all versions of your files automatically. Sounds like an an ideal solution for non-developer. </p> http://stackoverflow.com/questions/1632406/where-else-can-ms-access-get-a-dsn/1648236#1648236 0 Answer by Sergey Kornilov for Where else can MS Access get a DSN? Sergey Kornilov 2009-10-30T05:59:08Z 2009-10-30T05:59:08Z <p>Apparently MS Access stores the whole connection string, not just DSN name. Here is what I see opening .mdb file in Notepad:</p> <pre><code>DSN=SQL-Northwind;APP=Microsoft Office 2003;WSID=DELLNOTEBOOK;DATABASE=Northwind;Network=DBMSSOCN;Address=LOCALHOST;Trusted_Connection=Yes </code></pre> <p>MS Access comes with Linked Table Manager however it won't update DSN once it's changed (at least not for me). </p> <p>I guess your only choice is to delete a link and create a new one.</p> http://stackoverflow.com/questions/1644930/merge-msaccess-tables/1648036#1648036 0 Answer by Sergey Kornilov for merge msaccess tables Sergey Kornilov 2009-10-30T04:43:34Z 2009-10-30T04:43:34Z <p>If this is a one time operation simple copy-n-paste will work.</p> <p>Open both databases in MS Access. Open both tables. Select values to copy (right-click on Column header and Ctrl+C). </p> <p>Proceed to target table. Make Name field selected in the last row (new record). For this purpose mouse over Name column left edge (cursor becomes a plus sign) and click to select the cell. Ctrl+V. Done.</p> http://stackoverflow.com/questions/924081/free-swf-obfuscator/1415945#1415945 0 Answer by Sergey Kornilov for Free SWF Obfuscator Sergey Kornilov 2009-09-12T19:44:59Z 2009-09-12T19:44:59Z <p><a href="http://tech.motion-twin.com/obfu.html" rel="nofollow">OBFU</a> - 1500 euros!</p> <p><a href="http://www.amayeta.com/shop/" rel="nofollow">Amayeta SWF Encrypt Pro 5.0</a> - $125 USD. <a href="http://www.asvguy.com/2007/02/swf%5Fencrypt%5Fswc.html" rel="nofollow">gets "bypassed" too</a></p> <p><a href="http://www.kindisoft.com/secureSWF/" rel="nofollow">SecureSWF</a> - Looks like the most promising right now.</p> <p><a href="http://www.bestflashanimationsite.com/resources/decompilers/" rel="nofollow">A list of decompilers and obfuscators</a></p> <p>Found at <a href="http://www.balsamiq.com/blog/2008/10/19/my-views-on-software-piracy/" rel="nofollow">http://www.balsamiq.com/blog/2008/10/19/my-views-on-software-piracy/</a></p> http://stackoverflow.com/questions/275037/is-it-safe-and-acceptable-to-install-vs-net-on-your-production-server/275058#275058 2 Answer by Sergey Kornilov for Is it safe and acceptable to install VS.NET on your production server? Sergey Kornilov 2008-11-08T19:05:43Z 2008-11-08T19:05:43Z <p>The recommended way is to have a mirror of production server for testing/debugging purposes. To keep the mirror current you need to install all application updates on both servers at the same time and backup/restore production database on mirror nightly or on demand.</p> <p>There are still some downsides like error that only happens under a heavy load. In this case you need some kind of logging to trace errors. Also you might need to purchase an additional license of third-party components to install on production mirror. </p> http://stackoverflow.com/questions/261004/accessing-sql-on-a-different-port-number-classic-asp-connection-string/261077#261077 0 Answer by Sergey Kornilov for Accessing SQL on a different port number (classic ASP connection string) Sergey Kornilov 2008-11-04T06:33:12Z 2008-11-04T06:33:12Z <pre><code>cst = "Provider=SQLOLEDB;" &amp; _ "Data Source=&lt;x.x.x.x&gt;,&lt;port number&gt;;" &amp; _ "Initial Catalog=&lt;dbname&gt;;" &amp; _ "Network=DBMSSOCN;" &amp; _ "User Id=&lt;uid&gt;;" &amp; _ "Password=&lt;pwd&gt;" set conn = CreateObject("ADODB.Connection") conn.open cst </code></pre> <p><a href="http://sqlserver2000.databases.aspfaq.com/how-do-i-connect-to-sql-server-on-a-port-other-than-1433.html" rel="nofollow">More info</a></p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/189894#189894 3 Answer by Sergey Kornilov for Reading/Writing a MS Word file in PHP Sergey Kornilov 2008-10-10T02:17:08Z 2008-10-10T15:18:33Z <p>Most probably you won't be able to read Word documents without COM.</p> <p>Writing was covered in this <a href="http://stackoverflow.com/questions/124959/create-word-document-using-php-in-linux">topic</a></p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185803#185803 540 Answer by Sergey Kornilov for What is the best comment in source code you have ever encountered? Sergey Kornilov 2008-10-09T03:12:39Z 2008-10-09T03:12:39Z <pre><code>// sometimes I believe compiler ignores all my comments </code></pre> http://stackoverflow.com/questions/175507/c-c-web-server-library/175789#175789 0 Answer by Sergey Kornilov for C/C++ Web Server Library? Sergey Kornilov 2008-10-06T19:24:35Z 2008-10-06T19:24:35Z <p>You may want to check <a href="http://www.pablosoftwaresolutions.com/html/baby_web_server.html" rel="nofollow">Baby Web Server</a></p> http://stackoverflow.com/questions/170466/what-is-the-simplest-most-maintainable-way-to-create-a-sql-server-odbc-data-sour/170495#170495 4 Answer by Sergey Kornilov for What is the simplest, most maintainable way to create a SQL Server ODBC Data Source? Sergey Kornilov 2008-10-04T15:15:21Z 2008-10-05T01:01:27Z <p>SQLConfigDataSource() does the job.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ck4z6wwt.aspx?ppud=4" rel="nofollow">MSDN article</a></p> <p>Just in case here is a VB6 example:</p> <pre><code>Const ODBC_ADD_DSN = 1 'user data source Const ODBC_ADD_SYS_DSN = 4 'system data source Private Declare Function SQLConfigDataSource Lib "ODBCCP32.DLL" (ByVal hwndParent As Long, ByVal fRequest As Long, ByVal lpszDriver As String, ByVal lpszAttributes As String) As Long strDriver = "SQL Server" strAttributes = "DSN=Sample" &amp; Chr$(0) _ &amp; "Database=Northwind" &amp; Chr$(0) _ &amp; "Description= Sample Data Source" &amp; Chr$(0) _ &amp; "Server=(local)" &amp; Chr$(0) _ &amp; "Trusted_Connection=No" &amp; Chr$(0) SQLConfigDataSource(0, ODBC_ADD_SYS_DSN, strDriver, strAttributes) </code></pre> http://stackoverflow.com/questions/144583/windows-c-dialog-resizer-class/144945#144945 0 Answer by Sergey Kornilov for Windows C++ dialog resizer class Sergey Kornilov 2008-09-28T01:29:01Z 2008-09-28T01:29:01Z <p>We use CResize class from CodeGuru to resize all controls automatically. You tell how you want each control to be resized and it does the job for you.</p> <p>The resize paradigm is to specify how much each side of a control will move when the dialog is resized.</p> <pre><code>SetResize(IDC_EDIT1, 0, 0, 0.5, 1); SetResize(IDC_EDIT2, 0.5, 0, 1, 1); </code></pre> <p>Very handy when you have a large number of dialog controls. </p> <p><a href="http://www.codeguru.com/cpp/w-d/dislog/resizabledialogs/article.php/c1925/" rel="nofollow">Source code</a></p> http://stackoverflow.com/questions/135946/i18n-able-way-to-get-number-ordinal-in-c-mfc-on-windows-1-1st-2-2nd-etc/137808#137808 -1 Answer by Sergey Kornilov for i18n-able way to get number ordinal in C++/MFC on Windows? (1->1st, 2->2nd, etc.) Sergey Kornilov 2008-09-26T04:41:39Z 2008-09-26T04:41:39Z <p><a href="http://www.codeproject.com/KB/cpp/number_to_text_converter.aspx" rel="nofollow">Here</a> is the piece of code on CodeProject that does the job. Haven't tried it on my own.</p> http://stackoverflow.com/questions/127514/resizing-controls-in-mfc/130069#130069 0 Answer by Sergey Kornilov for Resizing Controls in MFC Sergey Kornilov 2008-09-24T21:23:25Z 2008-09-24T21:23:25Z <p>I use CResize class from CodeGuru to resize all controls automatically. You tell how you want each control to be resized and it does the job for you.</p> <p>The resize paradigm is to specify how much each side of a control will move when the dialog is resized.</p> <pre><code>SetResize(IDC_EDIT1, 0, 0, 0.5, 1); SetResize(IDC_EDIT2, 0.5, 0, 1, 1); </code></pre> <p>Very handy when you have a large number of dialog controls. </p> <p><a href="http://www.codeguru.com/cpp/w-d/dislog/resizabledialogs/article.php/c1925/" rel="nofollow">Source code</a></p> http://stackoverflow.com/questions/124959/create-word-document-using-php-in-linux/125009#125009 6 Answer by Sergey Kornilov for Create Word Document using PHP in Linux Sergey Kornilov 2008-09-24T02:07:48Z 2008-09-24T12:41:32Z <p>Add header and output HTML as you usually do. </p> <pre><code>header("Content-type: application/vnd.ms-word"); header("Content-Disposition: attachment;Filename=document_name.doc"); echo "&lt;html&gt;"; echo "&lt;meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\"&gt;"; echo "&lt;body&gt;"; echo "&lt;b&gt;My first document&lt;/b&gt;"; echo "&lt;/body&gt;"; echo "&lt;/html&gt;"; </code></pre> <p>Make sure you don't use external stylesheets. Everything should be in the same file.</p> <p>If you need to produce "real" Word documents you need a Windows-based web server and COM automation. I highly recommend <a href="http://www.joelonsoftware.com/items/2008/02/19.html" rel="nofollow">Joel's article</a> on this subject.</p> http://stackoverflow.com/questions/118547/creating-a-zip-file-on-windows-xp-2003-in-c-c/118943#118943 3 Answer by Sergey Kornilov for Creating a ZIP file on Windows (XP/2003) in C/C++ Sergey Kornilov 2008-09-23T03:26:56Z 2008-09-23T03:26:56Z <p>We use XZip for this purpose. It's free, comes as C++ source code and works nicely. </p> <p><a href="http://www.codeproject.com/KB/cpp/xzipunzip.aspx" rel="nofollow">http://www.codeproject.com/KB/cpp/xzipunzip.aspx</a></p> http://stackoverflow.com/questions/112169/google-chrome-broke-shellexecute/112213#112213 3 Answer by Sergey Kornilov for Google Chrome broke ShellExecute() ? Sergey Kornilov 2008-09-21T21:17:31Z 2008-09-21T21:17:31Z <p>Here is the code that works across all browsers. The trick is to call WinExec if ShellExecute fails.</p> <pre><code>HINSTANCE GotoURL(LPCTSTR url, int showcmd) { TCHAR key[MAX_PATH + MAX_PATH]; // First try ShellExecute() HINSTANCE result = 0; CString strURL = url; if ( strURL.Find(".htm") &lt;0 &amp;&amp; strURL.Find("http") &lt;0 ) result = ShellExecute(NULL, _T("open"), url, NULL, NULL, showcmd); // If it failed, get the .htm regkey and lookup the program if ((UINT)result &lt;= HINSTANCE_ERROR) { if (GetRegKey(HKEY_CLASSES_ROOT, _T(".htm"), key) == ERROR_SUCCESS) { lstrcat(key, _T("\\shell\\open\\command")); if (GetRegKey(HKEY_CLASSES_ROOT,key,key) == ERROR_SUCCESS) { TCHAR *pos; pos = _tcsstr(key, _T("\"%1\"")); if (pos == NULL) { // No quotes found pos = strstr(key, _T("%1")); // Check for %1, without quotes if (pos == NULL) // No parameter at all... pos = key+lstrlen(key)-1; else *pos = '\0'; // Remove the parameter } else *pos = '\0'; // Remove the parameter lstrcat(pos, _T(" \"")); lstrcat(pos, url); lstrcat(pos, _T("\"")); result = (HINSTANCE) WinExec(key,showcmd); } } } return result; } </code></pre> http://stackoverflow.com/questions/103158/iis-asp-caching/103327#103327 2 Answer by Sergey Kornilov for IIS ASP Caching Sergey Kornilov 2008-09-19T16:11:19Z 2008-09-19T16:11:19Z <p>Right click on "Web sites" in IIS manager. Choose Properties->Home directory->Configuration and you'll see "Cache options" tab.</p> <p>The trick is to click on "Web sites" as opposed to proceeding to specific web site.</p> http://stackoverflow.com/questions/79733/best-automated-testing-tool-for-web-applications/101732#101732 4 Answer by Sergey Kornilov for Best automated testing tool for web applications? Sergey Kornilov 2008-09-19T13:16:52Z 2008-09-19T13:16:52Z <p>Check <a href="http://wtr.rubyforge.org/" rel="nofollow">Watir</a>. It's free and fun to use. It's Ruby-based browser scripting package. Requires some technical knowledge though all basic functions are self-explanatory.</p> <p>Example:</p> <pre><code>require 'watir' require 'test/unit' class TC_article_example &lt; Test::Unit::TestCase def test_search ie = Watir::IE.new ie.goto("http://www.google.com/ncr") ie.text_field(:name, "q").set("pickaxe") ie.button(:value, "Google Search").click assert(ie.text.include?("Programming Ruby: The Pragmatic Programmer's Guide")) end end </code></pre> http://stackoverflow.com/questions/69128/saas-database-design-multiple-databases-split/69366#69366 7 Answer by Sergey Kornilov for SaaS database design - Multiple Databases? Split? Sergey Kornilov 2008-09-16T04:22:59Z 2008-09-16T04:22:59Z <p>Start with one database. Split data/functionality when project requires it.</p> <p>Here is what we can learn from LinkedIn:</p> <ul> <li>A single database does not work</li> <li>Referential integrity will not be possible</li> <li>Any data loss is a problem</li> <li>Caching is good even when it's modestly effective</li> <li>Never underestimate growth trajectory</li> </ul> <p>Source:</p> <p><a href="http://www.slideshare.net/linkedin/linkedins-communication-architecture" rel="nofollow">LinkedIn architecture</a></p> <p><a href="http://www.slideshare.net/linkedin/linked-in-javaone-2008-tech-session-comm" rel="nofollow">LinkedIn communication architecture</a></p> http://stackoverflow.com/questions/1674222/error-using-excel-odbc-driver-in-classic-asp Comment by Sergey Kornilov on Error using excel ODBC driver in classic asp Sergey Kornilov 2009-11-04T14:49:22Z 2009-11-04T14:49:22Z Most probably this is a problem with connection string. What's your connection string? http://stackoverflow.com/questions/124959/create-word-document-using-php-in-linux/125009#125009 Comment by Sergey Kornilov on Create Word Document using PHP in Linux Sergey Kornilov 2008-09-24T12:38:49Z 2008-09-24T12:38:49Z If you need to produce &quot;real&quot; Word documents you need a Windows-based web server. I highly recommend Joel's article on this subject: <a href="http://www.joelonsoftware.com/items/2008/02/19.html" rel="nofollow">joelonsoftware.com/items/2008/&hellip;</a> http://stackoverflow.com/questions/103158/iis-asp-caching/103349#103349 Comment by Sergey Kornilov on IIS ASP Caching Sergey Kornilov 2008-09-19T20:04:32Z 2008-09-19T20:04:32Z As far as I can see this option is global. Unless there is some other trick that enables caching tab for each website or virtual directory.