our company have a a old classic asp application, we have no choice but to host it. I just moved it to another server. It was perfectly running fine in old server but in this new server it's continuously giving this error. I am running windows 2003 server with IIS 6. Why I am geting this error ? please help.

Active Server Pages error 'ASP 0126'

Include file not found

/application/unprocessed_application.asp, line 56

The include file '../../_fplclass/pdblib.inc' was not found. 
link|improve this question

0% accept rate
feedback

1 Answer

The path to pdblib.inc is outside of the document root for your site based on the path /application/unprocessed_application.asp. Make sure you have parent paths enabled on the new server, it is disabled by default in IIS6.

In IIS Manager,

  1. Right-click your web site and click Properties
  2. On the Home Directory tab click the Configuration button
  3. Click Options and then make sure Enable Parent Paths is checked

EDIT:
You'll also get this error if you're using and #include virtual=<path_to_file> instead of #include file=<path_to_file>

link|improve this answer
I did it, still facing same problem – sagarmatha Oct 29 '10 at 3:11
@sagarmatha see my edit – squillman Oct 29 '10 at 13:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.