How to fix authentication error in a sub folder?

How to fix authentication error in a sub folder?

Server Error in '/' Application.
Configuration Error

Description: 

An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message:

 It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.  This error can be caused by a virtual directory not being configured as an application in IIS.

Source Error:

Line 8:         <compilation debug="true">
Line 9:         </compilation>
Line 10:        <authentication mode="Windows"/>
Line 11:        <customErrors mode="Off"/>
Line 12:    </system.web>


Source File: d:hostingmydomainmysubfolderweb.config    Line: 10

Version Information: 

Microsoft .NET Framework Version:2.0.50727.3625; ASP.NET Version:2.0.50727.3634

How to fix naive server implementation with CFSocket to allow multiple connections

How to fix naive server implementation with CFSocket to allow multiple connections By Naim Hashmi

- (void) _acceptConnection:(int)fd
{
    int     junk;

// If we already have a connection, reject this new one.  This is one of the
// big simplifying assumptions in this code.  A real server should handle
// multiple simultaneous connections.

    if ( self.isReceiving ) {
        junk = close(fd);
        assert(junk == 0);
    } else {
        [self _startReceive:fd];
    }
}


// Called by CFSocket when someone connects to our listening socket.
// This implementation just bounces the request up to Objective-C.
static void AcceptCallback(CFSocketRef s,
                           CFSocketCallBackType type,
                           CFDataRef address,
                           const void *data,
                           void *info)

{
    ReceiveServer *  obj;

    assert(type == kCFSocketAcceptCallBack);

    assert(data != NULL);

    obj = (ReceiveServer *) info;
    assert(obj != nil);

    assert(s == obj->_listeningSocket);


    [obj _acceptConnection:*(int *)data];
}

How to play Red Orchestra 2 Heroes of Stalingrad Multiplayer

How to play Red Orchestra 2 Heroes of Stalingrad Multiplayer By Naim Hashmi


Follow my instructions follow these links :
1.Steam 
3.The fastest torrent of the game found yet : Download ( Note : if u dont have the SKIDROW version Download First)

Proceed to the next steps :

1- Install the game (SKIDROW RELEASE)

2- Dont copy or crack anything after the installation (VERY IMPORTANT)

3- Extract Red Orchestra 2 Modronic's Multiplayer Fix (Anywhere) Then :

   
   A- Install Skidrow update 1 found in the archive and again dont copy or crack anything even after the update just make a clean installation and a clean update

   B- Copy all the files from Steam Fix folder to the game main folder (Binaries\Win32)  (Overwrite everything)


- Note : If you have copied any cracked contend before from Skidrow or other cracks u still can make this work by a clean installation of Skidrow update 1 without copying any cracked content after the setup then proceed with Step B


   C- (Install Steam if u dont have it installed already and close the application if it is running) Then copy all the files from Smart Steam folder to the original steam version main folder  EX : (C:\Program Files\Steam)  (Overwrite everything) Then start SmartSteam.exe and log in without updating (VERY IMPORTANT)


4- Install Tunngle and start it then after sigining in go to Community\Networks\Browser then under tactical shooter u will find Red orchestra 2 server

5- Run the game, Open the console {Press F3} then type in : Open Server-IP    Example : Open 7.0.0.0

Note : Server you choose will be Authorized by Steam.

Tag: red orchestra 2 heroes of stalingrad system requirements, red orchestra 2 heroes of stalingrad gameplay, red orchestra 2 heroes of stalingrad review, red orchestra 2 heroes of stalingrad download, red orchestra 2 heroes of stalingrad mods, red orchestra 2 heroes of stalingrad trainer, red orchestra 2 heroes of stalingrad game, red orchestra 2 heroes of stalingrad system requirements pc.

iTunes Error 3014 Fix By Naim Hashmi

iTunes error 3014 occurs because iTunes is unable to connect to Apple's server http://gs.apple.com/ in order to download all necessary data to update your iPhone

How to Edit HOSTS File on Windows:

Step 1: Launch Notepad or any text editing tool. Now, launch windows explorer or press Windows + E, navigate to C:\Windows\System32\drivers\etc and then in ETC directory open HOSTS file with Notepad.
Step 2: Then just simply remove 74.208.10.249 gs.apple.com from your HOSTS file and then save it.

How to Edit HOSTS File on Mac:

Step 1: Click on Go -> Go to Folder and then enter path /etc
Step 2: Open HOSTS file via TextEdit or any text editing tools and then delete 74.208.10.249 gs.apple.com.

How to Edit HOSTS File on Mac

How to Edit HOSTS File on Mac By Naim Hashmi:


Step 1: Click on Go -> Go to Folder and then enter path /etc
Step 2: Open HOSTS file via TextEdit or any text editing tools and then delete 74.208.10.249 gs.apple.com.

How to Edit HOSTS File on Windows

How to Edit HOSTS File on Windows By Naim Hashmi:


Step 1: Launch Notepad or any text editing tool. Now, launch windows explorer or press Windows + E, navigate to C:\Windows\System32\drivers\etc and then in ETC directory open HOSTS file with Notepad.
Step 2: Then just simply remove 74.208.10.249 gs.apple.com from your HOSTS file and then save it.

BookStore CSS

@charset "UTF-8";

/****
Created by: Imran Ziad
Email: imranziad@gmail.com
****/

@font-face {
    font-family: 'ProximaNova-Light';
    src: url('font/ProximaNova-Light.eot');
    src: url('font/ProximaNova-Light.eot?#iefix') format('embedded-opentype'),
         url('font/ProximaNova-Light.woff') format('woff'),
         url('font/ProximaNova-Light.ttf') format('truetype'),
         url('font/ProximaNova-Light.svg#ProximaNova-Light') format('svg');
    font-weight: normal;
    font-style: normal;

}

@-ms-viewport{
width: device-width;
}

*{
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html{
margin: 0;
padding: 0;
font:100%/1.5em 'ProximaNova-Light', Helvetica, sans-serif;
min-height: 100%;
}

body{
margin: 0;
padding: 0;
min-height: 100%;
color: #78829D;
font-size: 1em;
}

.container{
min-width: 1000px;
max-width: 1800px;
overflow: hidden;
margin: 0 auto;
}

a{
text-decoration: none;
color: #78829D;
}
ul{
list-style-type: none;
}

/* Header */

header{
width: 100%;
background-color: #2F364A;
position: relative;
}

/* LOGO */

.logo{
display: block;
float: left;
width: 20%;
height: 100%;
margin: 0 1em;
position: relative;
vertical-align: middle;
}

.logo a{
color: #78829D;
font-size: 0.6em;
font-weight: bold;
height: 100%;
vertical-align: middle;
position: relative;
display: block;
padding: 0.75em 0;
}

.logo a .fa{
padding-right: 0.2em;
}

/* Top Navigation */

.top-nav{
float: right;
position: relative;
display: block;
}

.top-menu{
display: block;
}
.top-menu li{
display: inline-block;
}
.top-menu li a{
vertical-align: middle;
height: 100%;
padding: 1.25em 1em;
}

.top-menu li a:hover{
background-color: #444A5C;
color: #f1f1f1;
}

.menu-profile{
cursor: pointer;
background-color: #15A4FA;
padding: 0.6em 1em;
color: #f1f1f1;
}
.menu-profile:hover{
background-color: #15A4FA;
}
.gravatar{
margin: 0;
padding: 0;
margin-right: 0.7em;
display: inline-block;
width: 2.3em;
border: 0.15em solid #f1f1f1;
height: 2.3em;

-moz-border-radius:50%;
-webkit-border-radius:50%;
-khtml-border-radius:50%;
border-radius:50%;
overflow: hidden;
vertical-align: middle;
}
.gravatar img{
min-width: 2.3em;
min-height: 2.3em;
}
.menu-profile .fa{
padding-left: 0.7em;
}

/* Top Drop Menu */
 .top-drop-menu{
  display: none;
  z-index: 900;
  clear: both;
  position: absolute;
  width: 11.3em;
  margin-top: 0.5em;
  margin-left: -1em;
 }

 .menu-profile:hover .top-drop-menu{
  display: block;
 }
 .top-drop-menu li{
  display: block;
  width: 100%;
  background-color: #15A4FA;
  border-bottom: 0.1em solid #1394E1;
 }

 .top-drop-menu li:last-child{
  border-bottom: none;
 }

 .top-drop-menu li a{
  display: block;
  padding: 0.8em 1em;
  color: #f1f1f1;
  font-size: 0.9em;
 }
 .top-drop-menu li:nth-child(2){
  font-weight: bold;
 }

.top-drop-menu li a .fa{
padding-right: 0.5em;
}

/* ASIDE */
aside{
clear: both;
width: 15%;
height: 100%;
margin: 0;
padding: 0;
display: block;
float: left;
position: relative;
background-color: #181E2C;
overflow: hidden;
height: 56em;
}

.sidebar-bg{
background-color: #1F2637;
margin-bottom: 0.5em;
font-size: 0.95em;
display: block;
border-top:1px solid #313543;
border-bottom: 1px ridge #22252F;
}

.add-book{
padding: 2.5em 0;
border-top: none!important;
}

.add-book a{
display: block;
width: 80%;
margin: 0 auto;
height: 3em;
font-size: 1em;
text-align: center;
line-height: 3em;
-moz-border-radius:0.2em;
-webkit-border-radius:0.2em;
-khtml-border-radius:0.2em;
border-radius: 0.2em;
color: #f1f1f1;
text-transform: uppercase;
font-weight: 900;
background-color: #F2795A;
-moz-transition: all 0.3s ease-in;
-webkit-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
}
.add-book a .fa{
padding-right: 0.3em;
}

.add-book a:hover{
background-color: #15A4FA;
}

.sidebar-menu li{
display: block;
padding:0;
margin: 0;
}

.sidebar-menu li a, .categories li a{
display: block;
padding: 0.7em 1em;
}

.sidebar-menu li a:hover, .categories li a:hover, .sidebar-menu li:nth-child(2) a{
background-color: #15A4FA;
color: #f1f1f1;
}

.sidebar-menu li a .fa, .categories li a .fa{
padding-right: 0.5em;
}

.categories li a .fa{
font-size: 0.5em;
}
.categories li a:hover .fa{
color: #f1f1f1!important;
}

.categories li:nth-child(1) a .fa{
color: #D94963;
}
.categories li:nth-child(2) a .fa{
color: #FFAB00;
}
.categories li:nth-child(3) a .fa{
color: #00BFDD;
}
.categories li:nth-child(4) a .fa{
color: #726FC5;
}

.history{
margin-bottom: 0;
padding-bottom: 2em;
}

.history li{
display: block;
padding: 2em 0.5em 0 1.5em;
font-size: 0.95em;
}
.history li .fa{
margin-left: -0.5em;
float: left;
line-height: 1em;
}

.history li p{
margin-top: -0.25em;
padding-left: 1em;
font-size: 0.95em;
color: #545D74;
}

.history li p a{
color: #677B92;
}

.history li p a:hover{
color: #f1f1f1;
}

.history .history-date{
margin-top: 0.7em;
}

/* SECTION */

section{
display: block;
float: left;
width: 85%;
position: relative;
margin: 0;
padding: 0;
height: 56em;
overflow: hidden;
}


/******* Section Header **********/

.section-header{
width: 100%;
display: block;
position: relative;
vertical-align: middle;
background-color: #EEF1F7;
border-bottom: 0.1em solid #DADFEA;
}

.section-header h2{
margin: 0;
display: block;
padding: 0em 1em;
vertical-align: middle;
color: #505460;
font-size: 1.5em;
width: 100%;
height: 3em;
line-height: 3em;
}

.section-nav{
display: block;
position: relative;
background-color: #EEF1F7;
width: 100%;
height: 3em;
border-top: 0.1em solid #F4F6FA;
border-bottom: 0.1em solid #DADFEA;
}

.section-menu{
float: left;
display: block;
}

.tab-menu{
display: block;
margin-left: 1em;
height: 3em;
width: 100%;
}

.tab-menu li{
display: inline-block;
font-size: 0.85em;
height: 1.8em;
line-height: 1em;
margin: 0.7em 0em 0.6em 1em;
padding: 0.5em 1em 0.5em 1em;
text-align: center;
vertical-align: middle;
-moz-border-radius:1em;
-webkit-border-radius:1em;
-khtml-border-radius:1em;
border-radius: 1em;
}

.tab-menu li:hover,.tab-menu li:active, .tab-menu li.active{
background-color: #97B3CE;
color: #f1f1f1;
cursor: pointer;
}

.search{
float: right;
display: block;
width: 35%;
}

.search form{
display: block;
padding-left: 1em;
padding-right: 1em;
right: 1em;
line-height: 2.75em;
vertical-align: middle;
}

.search form input{
width: 90%;
height: 2.5em;
-moz-border-radius:1.25em;
-webkit-border-radius:1.25em;
-khtml-border-radius:1.25em;
border-radius: 1.25em;
vertical-align: middle;
padding: 0em 1em;
font-size: 0.85em;
background-color:#fff;
border: 1px solid #d0d0d0;
}

.search form input:focus{
outline: none;
}

.search form .fa{
margin-left: -2em;
font-size: 0.85em;
}

/*********** Tabs **************/

.tab1, .tab2, .tab3, .tab4{
display: none;
position: relative;
overflow: auto;
}
.active{
display: block;
}

/*********** Book Box **************/

.section-body{
width: 100%;
height: 48.5em;
overflow: auto;
}


.book-box{
width: 20%;
height: 330px;
display: block;
position: relative;
overflow: hidden;
float: left;
margin: 2em 0 1em 0;
}

.book-poster, .book-poster img{
width: 180px;
height: 248px;
margin: 0 auto;
padding: 0;
-moz-border-radius:0.3em;
-webkit-border-radius:0.3em;
-khtml-border-radius:0.3em;
border-radius:0.3em;
cursor: pointer;
}

.book-caption{
margin: 0.5em auto;
width: 180px;
}

h3.book-title{
padding: 0;
margin: 0;
margin-bottom: -0.2em;
}
.book-title a{
color: #505460;
font-size: 0.9em;
font-weight: bold;
}
.book-writer{
font-size: 0.9em;
}

.book-rating{
display: block;
margin-top: 0.2em;
}
.book-rating ul{
display: block;
}
.book-rating ul li{
display: inline-block;
padding: 0 0.1em;
color: #FFAB00;
cursor: pointer;
}

/* Footer */

footer{
clear: both;
width: 100%;
margin: 0;
padding: 0;
display: block;
position: relative;
background-color: #181E2C;
overflow: hidden;
}

.footer-menu{
float: right;
display: block;
}
.footer-menu li{
display: inline-block;
}
.footer-menu li a{
display: block;
color: #f1f1f1;
font-size: 1em;
padding: 0.7em 1.2em;
-moz-transition: all 0.5s ease-out;
-webkit-transition: all 0.5s ease-out;
-o-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
}
.footer-menu li a:hover{
background-color: #15A4FA;
}

/*********** transition **************/

.top-menu li a, .menu-profile, .top-drop-menu, .sidebar-menu li a, .categories li a, .history li p a, .tab-menu li{
-moz-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition:all 0.3s ease-out;
}


/*********** mediaqueries **************/

@media only screen and (max-width: 1020px){
.book-box{width: 25%;}
}

@media only screen and (min-width: 1020px){
.book-box{width: 25%;}
}

@media only screen and (min-width: 1280px){
.book-box{width: 20%;}
}

@media only screen and (min-width: 1600px){
.book-box{width: 16.6666667%;}
}


/*********** ClearFix CSS **************/

.clearfix:after{
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}

.clearfix{
zoom: 1;
}

Installment Loans Bad Credit- monthlyloansonline.co.uk

Installment Loans Bad Credit is a monetary services that individual can get hold of their stress free credit with easy settlement option. A bad creditor that is looking for the fiscal support for them it is has become the ideal solution. For further information about 12 Month Instalment Loans visit @ http://www.monthlyloansonline.co.uk/installment-loans.html

12 Month Loans Uk- monthlyloansonline.co.uk

Individual who are suffering from the bad credit record basically for them   12 Month Loans Uk has been designed. It help individual in the hour of financial crisis. People having poor credit scores and doesn’t have capability to get rid of an emergency need of money at that time they can take help of it to fund higher education and consolidate the multiple debts. One can get money through this various competitive interest rates which guaranteed its affordability. In less span of time individual can get the cash immediately.

One of the features of this scheme is that it doesn’t include any credit checking for which people having bad credit scores without thinking much can apply for it. With help of this individual can pay off their debts on time by which they can enhance their financial status. In this one can easily avail money ranging from £5000-£25000 for a period varying between 5-25 years. It is long term in nature which provides individual to avail money at affordable interest rates. In this no restriction is imposed by lender regarding its use of money availed through this.

 Applicants who are adult permanent resident of UK engaged in job which will act as a stable source of income for them and besides of all these they should be holding valid checking account for smooth transaction of the money. It is unsecured in nature for which there is no requirement to do any pledging of collateral against borrowed amount with lender. In this individual without any paper work and free of obligation can apply for it online. The cost free way of applying for it through application method have provided individual much more comfort by which they without any wastage of time and effort can get the financial assistance.

The borrower can get multiple numbers of lenders online who are there to provide their service 24/7 and experts advise them to have a comparison among the lenders and find the best one who will provide the money with the friendly and affordable terms and conditions. This online application form include the filling of the form with basic details like the name, age, gender, contact details, phone number, and many more . Filling form with correct information it became easy for lender to provide their approval. As the application for it gets approved by the lenders then within few minutes the money demanded by the bower is transferred to their bank account. So apply for  Fast Cash Loans For Unemployed Fees and mend your bad credit scores as soon as possible.

http://www.monthlyloansonline.co.uk/