Sunday, 24 July 2016

Fix 500 Internal Server Error in WordPress

500 Internal Server Error is not specific to wordpress. Usually beginners who are managing site gets panic while getting this error. There are many causes for this type of error. Most of the time you will see this error in your own browser itself. Common ways of displaying...

Mime type for ipa and plist - iOS

Mime type for ipa - application/octet-streamMime type for plist- application/plistIssue Cannot download manifest file (.plist) from server. But the file still exists.AnalysisConfigure to allow the .plist file to be accessed by URL. Solution.Add above MIME types in the MIME type section in Internet Information Services (IIS) Manager and...

Friday, 13 June 2014

Difference between @Html.TextBox, @Html.TextBoxFor & @Html.EditorFor

These are html helpers, which renders html input tag in which the type attribute is set to text.@Html.TextBox("example") This is the basic format of html helper for textbox. The html  @Html.TextBoxFor("example")@Html.EditorFor("example") ...

Saturday, 7 June 2014

Debugger not activated - Firebug

Open the Firebug window.Click on the Firebug icon in the upper-left corner of the window and go to the menu item:   Options > Reset All Firebug OptionsActivate Firebug. ...

Friday, 6 June 2014

The database '*\DATABASE1.MDF' cannot be opened because it is version 706. This server supports version 655 and earlier. A downgrade path is not supported. Could not open new database '*\DATABASE1.MDF'. CREATE DATABASE is aborted. (Microsoft SQL Server, Error: 948)

Version 706 is a database file from Sql Server 2012Version 665 is a database file from Sql Server 2008R2 ...

Tortoise workbench ignore certain files with hgignore

There may be cases where we want to ignore certain files before committing in mercurial distributed revision control system. We can ignore files using hgignore file. hgignore file resides in the root folder.Open the fileRight - click on file and open (CTRL + SHIFT + T). OR Take terminal...

Wednesday, 19 March 2014

Logging Tools Log4Net vs ELMAH

Both needs configuration files.Log4NetSimple general purpose logging tool.Easy to integrate.Creates text file.Log levels: DEBUG, INFO, WARN, ERROR, FATAL.ProsHighly configurable logging framework.Best used by calling explicitly through code.Can implement exception handling with handlers.Output: file, console, email.Thread-safe.Will not throw unexpected exceptions at run-time potentially causing application to crash.ConsNot reliable. ELMAH...

Pages (3)123 »