Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > _vti_cnf

Reply
Thread Tools

_vti_cnf

 
 
Arpan
Guest
Posts: n/a
 
      10-14-2003
Why does ASP create a directory named _vti_cnf containing all the files of
an application for each application? Can deleting those directories
permanently cause some problems?

Thanks,

Arpan


 
Reply With Quote
 
 
 
 
Tom Kaminski [MVP]
Guest
Posts: n/a
 
      10-14-2003
"Arpan" <> wrote in message
news:...
> Why does ASP create a directory named _vti_cnf containing all the files of
> an application for each application? Can deleting those directories
> permanently cause some problems?


It doesn't - the FrontPage Server Extension do that. They are used to
manage the project. If you delete them, you will have problems with the
FrontPage Server Extensions - which are used by both the FrontPage client
and Visual Interdev.

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/



 
Reply With Quote
 
 
 
 
Arpan
Guest
Posts: n/a
 
      10-14-2003
Thanks,Tom, for your reply. What are these FrontPage Server Extensions? Also
what problems may arise with the FrontPage Server Extensions if those
folders are deleted permanently? I neither use FrontPage nor Visual Interdev
to create ASP applications. So can deleting the _vti_cnf folders still
create any problems while executing my ASP applications?

Thanks once again,

Regards,

Arpan

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bmh46k$...
> "Arpan" <> wrote in message
> news:...
> > Why does ASP create a directory named _vti_cnf containing all the files

of
> > an application for each application? Can deleting those directories
> > permanently cause some problems?

>
> It doesn't - the FrontPage Server Extension do that. They are used to
> manage the project. If you delete them, you will have problems with the
> FrontPage Server Extensions - which are used by both the FrontPage client
> and Visual Interdev.
>
> --
> Tom Kaminski IIS MVP
> http://www.iistoolshed.com/ - tools, scripts, and utilities for running

IIS
> http://mvp.support.microsoft.com/
> http://www.microsoft.com/windowsserv...y/centers/iis/
>
>
>



 
Reply With Quote
 
Tom Kaminski [MVP]
Guest
Posts: n/a
 
      10-14-2003
"Arpan" <> wrote in message
news:%...
> Thanks,Tom, for your reply. What are these FrontPage Server Extensions?

Also
> what problems may arise with the FrontPage Server Extensions if those
> folders are deleted permanently? I neither use FrontPage nor Visual

Interdev
> to create ASP applications. So can deleting the _vti_cnf folders still
> create any problems while executing my ASP applications?


The server extensions are primarily a way for FP and VI to connect to the
web server for authoring web pages. They also offer some project/site
management features as well as some programming components designed for
novice FrontPage users. As with most other things, MSDN is a good source
for more information:
http://msdn.microsoft.com/library/en...tml/fpovrw.asp.

The "_vti" folders are completely unrelated to ASP - there will be no effect
on ASP if you delete them. The best way, or course, is to simply remove the
extensions from the server if they won't be used (right click on the web
site in the IIS MMC and there should be options to get you there).

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/



 
Reply With Quote
 
Bob Barrows
Guest
Posts: n/a
 
      10-14-2003

Arpan wrote:
> Thanks,Tom, for your reply. What are these FrontPage Server
> Extensions?

http://sciris.shu.edu/Manuals/FrontP...k/ovwhatar.htm

> Also what problems may arise with the FrontPage Server
> Extensions if those folders are deleted permanently? I neither use
> FrontPage nor Visual Interdev to create ASP applications. So can
> deleting the _vti_cnf folders still create any problems while
> executing my ASP applications?
>

http://webmaster.iu.edu/tool_guide_info/FPprocon.shtml
http://www.maximumasp.com/maxtrack/a...print&kbid=470
http://support.microsoft.com?kbid=281532

I have seen people claim that there is no problem deleting them if you don't
use FP or VID, but I think your best bet is to leave them there. It's not as
if they're taking up a lot of space.

--
HTH,
Bob Barrows - ASP MVP
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


 
Reply With Quote
 
Chris Barber
Guest
Posts: n/a
 
      10-14-2003
Unless you need to use a web authoring tool connecting through the web
server (IIS) instead of accessing the pages directly on disk then you can
delete everything except your website files (unless you have used some of
the FP server extension components such as hit counters, themes etc.).

The *best* way to remove them is to remove Front Page Server extensions from
that web site / subweb (see the IIS MMC Management Console if on W2K or XP)
but *always* take a copy and ensure that your changes (eg. removal) haven't
affected your site. You take this action at your own risk of course.

They [the folders etc.] are there to support accessing the relevant DLLs
required to upload new content etc., provide locking information for the
pages whilst multiple users may be developing against the site, and also
provides a few freebie bits and pieces like themes, page hit counters, site
search tools etc.

Chris.

"Bob Barrows" <> wrote in message
news:...

Arpan wrote:
> Thanks,Tom, for your reply. What are these FrontPage Server
> Extensions?

http://sciris.shu.edu/Manuals/FrontP...k/ovwhatar.htm

> Also what problems may arise with the FrontPage Server
> Extensions if those folders are deleted permanently? I neither use
> FrontPage nor Visual Interdev to create ASP applications. So can
> deleting the _vti_cnf folders still create any problems while
> executing my ASP applications?
>

http://webmaster.iu.edu/tool_guide_info/FPprocon.shtml
http://www.maximumasp.com/maxtrack/a...print&kbid=470
http://support.microsoft.com?kbid=281532

I have seen people claim that there is no problem deleting them if you don't
use FP or VID, but I think your best bet is to leave them there. It's not as
if they're taking up a lot of space.

--
HTH,
Bob Barrows - ASP MVP
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.



 
Reply With Quote
 
Bob Barrows
Guest
Posts: n/a
 
      10-14-2003
Chris Barber wrote:
> Unless you need to use a web authoring tool connecting through the web
> server (IIS) instead of accessing the pages directly on disk then you
> can delete everything except your website files (unless you have used
> some of
> the FP server extension components such as hit counters, themes etc.).


That was the main reason I recommended leaving them. They're not hurting
anything by their presence, and deleting them may break something that uses
them.

--
HTH,
Bob Barrows - ASP MVP
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


 
Reply With Quote
 
Chris Barber
Guest
Posts: n/a
 
      10-15-2003
I agree although I have found occasion to delete them example when copying a
series of HTML pages developed in Visual Interdev for use in a stand alone
VB application. It is also of use where posting a large HTML site to a non
FP extensions enabled internet webserver across a slow 56kbps dial-up is
required.
It is fiddly and can result in losing pages by accident.
The main reason for my response was to explain why they are there in the
first place and the possibility that they can be removed without causing
problems. I'm not advocating deleting them, merely providing information for
the original poster to consider if necessary.

Cheers,

Chris.



"Bob Barrows" <> wrote in message
news:...
Chris Barber wrote:
> Unless you need to use a web authoring tool connecting through the web
> server (IIS) instead of accessing the pages directly on disk then you
> can delete everything except your website files (unless you have used
> some of
> the FP server extension components such as hit counters, themes etc.).


That was the main reason I recommended leaving them. They're not hurting
anything by their presence, and deleting them may break something that uses
them.

--
HTH,
Bob Barrows - ASP MVP
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.



 
Reply With Quote
 
Arpan
Guest
Posts: n/a
 
      10-15-2003
Many many thanks Chris, Bob & Tom for your explanations

Regards to all of you,

Arpan

"Chris Barber" <> wrote in message
news:...
> I agree although I have found occasion to delete them example when copying

a
> series of HTML pages developed in Visual Interdev for use in a stand alone
> VB application. It is also of use where posting a large HTML site to a non
> FP extensions enabled internet webserver across a slow 56kbps dial-up is
> required.
> It is fiddly and can result in losing pages by accident.
> The main reason for my response was to explain why they are there in the
> first place and the possibility that they can be removed without causing
> problems. I'm not advocating deleting them, merely providing information

for
> the original poster to consider if necessary.
>
> Cheers,
>
> Chris.
>
>
>
> "Bob Barrows" <> wrote in message
> news:...
> Chris Barber wrote:
> > Unless you need to use a web authoring tool connecting through the web
> > server (IIS) instead of accessing the pages directly on disk then you
> > can delete everything except your website files (unless you have used
> > some of
> > the FP server extension components such as hit counters, themes etc.).

>
> That was the main reason I recommended leaving them. They're not hurting
> anything by their presence, and deleting them may break something that

uses
> them.
>
> --
> HTH,
> Bob Barrows - ASP MVP
> Please reply to the newsgroup. The email account listed in my From
> header is my spam trap, so I don't check it very often. You will get a
> quicker response by posting to the newsgroup.
>
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
_vti_cnf J Smithers ASP .Net 1 01-25-2005 11:32 PM
_vti_cnf and other folders Mike ASP .Net 1 08-11-2004 01:20 PM
_vti_cnf ? =?Utf-8?B?Sm9oblI=?= ASP .Net 1 06-03-2004 01:01 PM
What is _vti_cnf? Simon Harvey ASP .Net 3 02-15-2004 12:25 PM
_vti_cnf folder in the bin folder-- a problem? William LaMartin ASP .Net 1 11-10-2003 03:41 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57