With site definition

with site definition, when I try to open a file, I have an
error message as below and it freezes my dw 8.
"A script in file C:\Program Files|Macromedia|Dreamweaver
8\Congifurartion\Translators\TranslationManager.js has been running
for a long time"
(I run CFMX 6.1 locally and defined the site mapping to CF
root\wwwroot\applicationname)
I patched Coldfusion and DW.
Anyone can help?

bkochbakke wrote:
> I'm new to dreamweaver but have worked with WAMP
architecture a lot. I have a
> pre-packaged wamp architecture installed (WAMPServer by
Romain Bourdon). I have
> set up a virtual host for my site and the site displays
fine when php includes
> are used for displaying headers etc. I can't use any of
the dreamweaver
> database functions though. When I try I get prompted to
set up my testing
> server. I'm certain I have my paths correct -- set to
the virtual host as
> follows (where sitename is the name of my site as
defined in the host config
> file):
> Server Model: PHP MySQL
> Access: Local/Network
> Testing server folder: C:\vhosts\sitename\
> URL prefix:
http://nxa/
>
> Any suggestions? I'm totally stumped here -- thinking it
may have something to
> do with how the wamp server is configured???
Whats the url that works at the moment? Is it
http://nxa/sitename/ or
just
http://nxa ?
Dooza
Posting Guidelines
http://www.adobe.com/support/forums/guidelines.html
How To Ask Smart Questions
http://www.catb.org/esr/faqs/smart-questions.html

Similar Messages

  • Problems with site definition in CS5

    I am trying to define a new site in DW CS5. When I enter the site information in the dialogue box I get the following message:
    The spry assets folder is not inside the site. Please select a valid folder in your local site root.
    The program automatically creates a folder for Spry assets but the error message still appears. I tried creating a new folder, but had the same results. I can't get past this screen. Why is this happening?

    Randy,
    Thanks for your prompt response. The problem is, if I am defining a new site, there are no pre-existing folders. I am calling my site "HF", so Dreamweaver automatically chooses "/Users/Aaron/Documents/HF/SpryAssets" as the default folder for spry assets. If I use the "browse for folder" icon, I can select another folder, but what else would I choose? (I tried choosing other folders, as well as creating a new folder, and neither worked).I'm really stumped!
    Aaron
    Date: Mon, 7 Jun 2010 09:19:07 -0600
    From: [email protected]
    To: [email protected]
    Subject: Problems with site definition in CS5
    I am trying to define a new site in DW CS5. When I enter the site information in the dialogue box I get the following message: The spry assets folder is not inside the site. Please select a valid folder in your local site root.
    The program automatically creates a folder for Spry assets but the error message still appears. I tried creating a new folder, but had the same results. I can't get past this screen. Why is this happening?
    Yes, it's an annoying bug. In the Site Definition dialog, go to the Advanced > Spry tab and use the "browse for folder" dialog to select your SpryAssets folder and it will fix the path for you.
    HTH,
    Randy
    >

  • Create a Site Definition file with Visual Web part in Visual Studio

    I tried to create a site definition file in Visual Studio 2013 and SharePoint 2013 by following the MSDN tutorial:
    Walkthrough: Create a Basic Site Definition Project. Near the end, I added a virtual web part control to the site definition and registered MyWebPartControls in the site definition's default ASPX page as written in the MSDN tutorial:
    Unfortunately, IntelliSense doesn't show any MyWebPartControls: tags, and VisualWebPart1 is highlighted with a warning “Element 'SMWebPart3' is not a known element. This can
    occur if there is a compilation error in the Web site, or the web.config file is missing.”
    Since it’s a warning, I went ahead to build and deploy the solution. However, when I used the site definition template to create a subsite, it returned a parser error:
    Unknown server tag 'MyWebPartControls:TestSiteDef1.VisualWebPart1'
    I spent half day researching and debugging, and finally solved the problem. The issue is on the registration line:
    <%@ Register Tagprefix="MyWebPartControls" Namespace="TestSiteDef.VisualWebPart1" Assembly="$SharePoint.Project.AssemblyFullName$" %>
    The $SharePoint.Project.AssemblyFullName$ is a replaceable parameter to provide values for SharePoint solution items whose actual values are not known at design time. Unfortunately, it does not find the right assembly name during the deployment. It should
    be replaced by the Assembly’s Strong Name. Here is how I fixed the problem step by step:
    In Solution Explorer, open the package node and double click Package.package
    Click Manifest tab in the Package.package.
    Copy the full assembly name in the package’s manifest. It may be similar like this:
              Assembly="TestSiteDef,
    Version=1.0.0.0, Culture=neutral, PublicKeyToken=a300f1f2da8ae976"
    Back to the site definition’s default.aspx page, replace the
                     Assembly="$SharePoint.Project.AssemblyFullName"
    in the registration line with the copied text:
    Assembly="TestSiteDef,
    Version=1.0.0.0, Culture=neutral, PublicKeyToken=a300f1f2da8ae976"
    Change the Namespace from
    Namespace="TestSiteDef.VisualWebPart1"
    to
    Namespace="TestSiteDef".
    The line to register the web part in a site definition file will look like this:
    <%@
    Register
    Tagprefix="MyWebPartControls"
    Namespace="TestSiteDef "
    Assembly="TestSiteDef, Version=1.0.0.0,
    Culture=neutral, PublicKeyToken=a300f1f2da8ae976"
    %>
    Clean, build and deploy the solution. It works like charm. (Note: the warning message on visual web part may still exist, but you can ignore it).

    Assuming your .ascx.vb file is inheriting from the web part class, you can add the custom properties in the same manor (language syntax aside).
    Be sure to use the attributes to correctly identify and scope the properties. (see:
    http://www.sbrickey.com/Tech/Blog/Post/SharePoint_Attributes_for_Web_Part_properties)
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com

  • Site Definition with Custom List Intance with Custom fields

    How to create VS 2012 > Site Definition with Custom List Instance with Custom fields?
    <site>
    <list>
    <field>

    Hi Sunil,
    it is the same way we create in VS 2010.
    Add a new empty SP project in VS2012 and then add, site, list and fields as per your requirement.
    Here are few references-
    Creating SharePoint 2010 Site Definitions in Visual Studio 2010
    http://msdn.microsoft.com/en-us/library/gg276356(v=office.14).aspx
    Creating SharePoint 2010 List Definitions in Visual Studio 2010
    http://msdn.microsoft.com/en-us/library/gg276355(v=office.14).aspx
    Walkthrough: Create a Basic Site Definition Project
    http://msdn.microsoft.com/en-us/library/ee231583.aspx
    and  I normally create a blank site with all required configuration and then create, import the template to hand craft the list and fields. this would minimize errors.
    see the below blog on this topic
    http://blogs.msdn.com/b/sambetts/archive/2013/10/17/creating-a-clean-visual-studio-solution-from-a-sharepoint-2013-site-template.aspx
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if the reply helps you

  • Issue in Custom Blog site definition based on SharePoint 2010 blog site definition after migrating the sites to SharePoint 2013 and site collection upgrade

    I have created a custom blog site definition using SharePoint 2010 blog site definition with Configuration ID 31 in onet.xml (new value). This was working fine for SharePoint 2010.
    We created new SharePoint 2013 farm and deployed the all Custom solutions in
    14/15 folders. After migrating the sites to SharePoint 2013 using Content DB approach, site created previously using my custom definition are working fine.
    But after running site collection upgrade these sites stop working. When I post a comment then comments not getting listed on post detail page. However comments are getting added to Comments List but
    PostTitle column  of Comment is not getting populated.
    Also, when we create a new site in SharePoint 2013 using my custom blog template then that is also not getting provisioned.  default.aspx and look-up between post and comment list are not working.
    If any one has faced such issue then please share your findings and any solution to fix this.
    Thanks in Advance :)

    Hi ,
    According to your description, my understanding is that the blog based on custom blog site definition didn’t work correctly after migrating custom blog site definition to SharePoint 2013.
    If you customized the Onet.xml file in a previous version's site definition, you should modify some sections in the file to work in the current version, like  <BaseTypes> and  <ListTemplate>  etc. More information, please refer
    to the link below:
    http://msdn.microsoft.com/en-us/library/office/aa543837(v=office.14).aspx
    For that the PostTitle column  of Comment is not getting populated, please try to modify the view, then compare the result.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Site Definitions not working in CC 2014

    Since the update, my site definitions are no longer working. I try to set up a new site, navigate to the correct folder and get the warning: 'site is inside the site "x"' This may cause conflicts … ' etc. The site folder isn't inside another site at all. I've even tried trashing the 'x' site folder, and Dreamweaver just throws up the same warning with the next alphabetically listed folder. Then I tried removing all the site definitions and setting up a new one, but I get the same problem. Is anyone else suffering?

    In order to preview .php pages locally, you need a local testing server (Wamp, Xampp, Mamp).  Is yours properly defined in DW CC?  See screenshots.
    Nancy O.

  • Preview versus Real View Not the Same, Site Definition Errors - Dreamweaver CS4

    I am having trouble working on sites where it seems that Dreamweaver wants me to specify different file locations for various "includes" depending on whether I want to view the site as a preview (F12) vs. on a local test server vs. on the real website server.  Note I am using Dreamweaver CS4 (ver. 10) on Windows, my local test server is Apache running via an Xampp installation on Windows, and my production server is also Apache, running at Hostgator.  I am building a fairly basic html site using SSI via SHTML files, rather than PHP or a more sophisticated method.  Here is what seems to be happening:
    1.  In my index.shtml file I call, for example, a subheader file called "header-nosub-menu.inc.htm."  I have my site definitions set to "relative to document root."  Using the insert -> SSI command, Dreamweaver links to the file with the following: My first problem is that, as specified, the subheader.menu.inc.htm file is not found and the preview gives me an error.  I get the same error if i try to display the file on my local test server (http://localhost/domainname).  However, if I upload the file to my production server, it seems to work fine.  If I change the include command to: #include virtual="./includes/subheader.menu.inc.htm," by manually inserting the "./" to change the directory reference, then the file seems to work in all three situations  Which is the correct directory specification, and why is Dreamweaver not generating it automatically?
    While I can make the manual changes in the directory specifications, I am concerned that if Dreamweaver is making an error in this instance, it may generate more serious problems that are harder to find later.
    2. The second issue seems to involve the Site Definition file configuration.I get an error message when I set up my site definition in what seems to be the correct way, specifically, using the following specifications:
    Local Root folder:  "C:\htdocs\domainname-dev\"
    http address:   "http://www.domainname/"
    testing server folder:  "C:\htdocs\domainname-dev"
    url prefix:  "http://localhost/domainname-dev"
    The error message is: "The site url prefix for the testing server does not match the site url prefix specified in the http address for the site."
    However, when I change the testing server url prefix to one that does not yield an error message ("http://localhost") I then have problems with the preview (F12) display.  Specifically, instead of a preview request generating the following url: "http://localhost/domainname-dev/TMPm393xnclqu.shtml" I find that it generates the following: "http://localhost/TMPm393xnclqu.shtml"  The so called incorrect definition seems to be the correct one, but  why is Dreamweaver not recognizing it as such?  Am I making a error somewhere else in my configuration?
    I would appreciate any assistance that anyone here can provide,
    Thanks,
    http://localhost/

    except for the Apache virtual host configuration, which I do not see a need for
    I wasn't suggesting that you use virtual hosts (although I have defined about 50 virtual hosts on my own development machine). I was trying to understand the url you listed:
    http://www.domainname/
    Without a virtual host definition, that would have no meaning and could not point to anything, unless you simply were leaving off the TLD in the example. (.com, .net, etc)
    I often use the PHP $_SERVER superglobal to define paths and handle differences between the development environment and the remote server environment. Examples:
    DOCUMENT_ROOT: D:/ZendServer/Apache2/htdocs/website/ranch (machine path)
    REQUEST_URI: /topic/calendar (url parameters)
    SCRIPT_NAME: index.php
    HTTP_REFERER: (the url of the script preceding the current script)
    HTTP_HOST: (this is the domain name. It is very useful for distinguishing between the local and remote environments)
    COMPLETE EXAMPLE:
    echo "<p><a class='noPrint' href='".$_SERVER['HTTP_REFERER']."'>RETURN TO PREVIOUS PAGE</a></p>";

  • To decide save site as a template, web template or site definition

    hi,
    I have to create a generic site template which has few tabs in the home page and on click of these links/tabs
    in this site template it will navigate to the sub sites created under that[this generic site template shud contain 3 sub sites -
    [1 blog, 1 search center sub site, meeting workspace as tabs in the site template’s top navigation] and
    a) 2 Doc Libs
    b) 2 splists by default present in this site template [ most prob. its a team site template]
     What should be the correct approach for creating this site template:
     I have thought of implementing using:
     a) save site as a template and upload this wsp into the solution gallery. and based on this site template
    i will create new subsites. one problem i will be facing is that, mine is a publishing site template not team site template.
     b) create a  web template having the above subsites and doc libs and splists
     c) last option is to create a  site definition [ complex ]
    which one should i choose, assuming that, there would be future changes from customer side in the
    site template.like, adding a new splist, sp doclic or a new custom web part.
    in that case, adding a new addtion to the already existing site template will not affect/reflect the already running
    sites' content.
    only those new sites which is created  based on the updated site template would be having the new additions 
    implemented.
      help is highly appreciated.

    Hi,
    From your description, the most concern you might have is that customers will have the requirements to add other components into their sites and created with them afterwards.
    Since SharePoint 2010, it is recommended to take use of something like “a la carte” pattern to manage SharePoint sites. If there are needs to add sites, lists or other components,
    we can make them as solution(.wsp) and deploy to our sites. By doing this, we will be more flexible and easier to manage the features and structure of sites.
    So you can just create a site template with simple structure and deploy the solutions you want after sites created.
    Here are two links about
    Plan for sites and solutions for your reference:
    http://technet.microsoft.com/en-us/library/cc789336(v=office.14).aspx
    http://technet.microsoft.com/en-us/library/ee476993(v=office.14).aspx
    What’s more, you can take a look at the two links below about
    Custom Web Templates and Custom Site Definitions:
    http://msdn.microsoft.com/en-us/library/office/aa979683(v=office.14).aspx
    http://sharepointchick.com/archive/0001/01/01/site-definitions-vs.-webtemplates.aspx
    Thanks
    Patrick Liang
    TechNet Community Support

  • How do I manually recreate the site definition (.ste) for an existing site?

    My iMac hard drive recently failed and had to be replaced.
    Though I had backed up my web site files, I don't have a backup of the site's Site Management (*.ste) file.
    Thus, I'm unable to manage this site in Dreamweaver (reinstalled on the new hard drive).
    In some forum threads, there are references to "manually recreating the site definition." How do I do this?
    Thanks!

    paintwlight wrote the following:
    Does Putting the site to the remote server constitute an Export, whereby a .ste file would have been created during the Put process and, therefore, exist on the remote server?
    No. Hit F1 and search for Export.
    If so, I assume that if I copy the .ste file currently on the remote server and save it locally (into Library:Application Support:Adobe:Common:9:Sites:Site Prefs), all will be well and Dreamweaver will once again be able to manage the site.
    DW can manage the site after you have defined the site as mentioned
    earlier. It does not need the .ste files at all. Those are created by
    the user via the Export feature and are not used by DW itself.
    Gosh, I wish I would have known about the .ste file before my hard drive died. This seems like way too much responsibility to put on one teeny tiny little file -- especially one that's not kept with the rest of the web site files.
    The .ste file contains only the paths to your site and the login
    information - if you choose to include that information. It does not
    contain any of the actual files. DW does not act as a backup or archival
    program. You need to keep backups of your entire site (including source
    files used to create the site, such as Photoshop/Fireworks layered
    images, Flash .fla files, etc...) as well as backups of the .ste files.
    HTH
    Mark A. Boyd
    Keep-On-Learnin'

  • Site definition not saved after closing DW

    I moved my copy of DW to a new computer. I exported the site
    definitions from the old computer and used the Import option in
    Manage Sites to restore them on the new computer. It brought them
    all over just fine. When I tried to update a site, though, it saved
    it for the duration of the session then behaved as if it never
    happened the next time I opened DW. This goes for site name
    changes, FTP info, or anything. How can I fix this? Does it have to
    do with a profile name? I have a different username on this new
    computer if that has anything to do with it. Thanks

    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=3491671c
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "avylon" <[email protected]> wrote in
    message
    news:fuo0ki$pe$[email protected]..
    >I moved my copy of DW to a new computer. I exported the
    site definitions
    >from
    > the old computer and used the Import option in Manage
    Sites to restore
    > them on
    > the new computer. It brought them all over just fine.
    When I tried to
    > update
    > a site, though, it saved it for the duration of the
    session then behaved
    > as if
    > it never happened the next time I opened DW. This goes
    for site name
    > changes,
    > FTP info, or anything. How can I fix this? Does it have
    to do with a
    > profile
    > name? I have a different username on this new computer
    if that has
    > anything to
    > do with it. Thanks
    >

  • Can I store my Dreamweaver site definitions on an external drive?

    I just purchased 2 brand new iMacs (one for office and one for home) to replace my old MacBook Pro. I am now moving all of my client files to an extranal hard drive so that I can share the same exact files in both locations. I just realized it won't be that easy with Dreamweaver because of the site definitions, which are stored locally on the computer.
    Is there a way for me to move and store site definitions of the external hard drive. If so, can you provide detailed instructions on how to do this. I am paranoid about losing important data!
    I am also assuming that Dreamweaver looks in a specific place for site definitions, so I'll need to 'train' it to look on my external hard drive to find them (if that's even possible).
    Thank you SO much, in advance!
    Jackie

    I think the OP was wondering if there could just be a single location that held the site definitions andnthat both computers would read when DW was launched on either machine to populate the site list.
    Just clarifying the question, but that can't be done so Nancy's instructions are what needs to be done. Each computer will maintain it's own list of defs, but being able to export and import makes it a little easier.  Part of my workflow when setting up a site involves making an immediate export of the site def in a location that is being backed up. I also keep another secure file of FTP info as an added layer - just because there was ne particular web host that included special characters in the UserID, which did not retain in the site definition.  I don't mind having to do this, but I wish you could export the entire list and not have to do one at a time.

  • Site Definitions CS4 v. CS6

    I just switched to DW CS6 from CS4. When I defined a Site in CS4, it created an actual folder with my site name that I could see on my hard drive, and my various website files would be in there. CS6 isn't doing that-- although it shows a folder icon that is visible inside of Dreamweaver. I look for it outside of Dreamweaver, and it's not there. This spooks me a little bit. Is this how it works now, or am I doing something wrong? Thanks!

    Hey Nancy-- After I responded to your post last night, I started thinking more about your response-- did I export the site definitions? Ah. The short answer is no, I just copied the files when I got my new computer, and reinstalled DW CS4. I still have access to my old computer tho, and my plan is to export the site defs  and put them on the new one, where I guess I will then have to them "import" them back.
    Switching to  CS6 caused a bit of misdirection. (As Murray suggested, the DW version  was not the issue.) But the light finally went on!  Thanx!

  • DW MX Site Definitions for Verizon FIOS? Mac

    Hello, Everyone,
    First time poster, longtime user/dabbler. All help is greatly
    appreciated.
    I'm using DreamWeaver MX for Mac and trying to do a site
    definition for Verizon FIOS. The instructions on their web site do
    not work, are sketchy at best anyway, and Verizon's tech people
    don't give tech support on this in general and don't know the
    answers so far!
    Does anyone know what to put in the fields for an ftp
    connection in site definition? Really - is anyone successfully
    using DreamWeaver with Verizon fiber optic?

    Send me your connection info offlist, please -
    forums at great hyphen web hyphen sights dot com....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "frankELF" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thanks for responding, Murray!
    >
    > Here is the meat of what is on Verizon's FIOs web site:
    > QUOTE
    > 2. Launch your FTP client.
    > 3. If a dialog box does not automatically open, there
    should be a
    > prominent
    > button or menu item for connecting to a remote host -
    activate it.
    > 4. In the dialog box that appears, you will need to
    enter the following
    > information:
    > * HOST NAME: ftpmysite.verizon.net
    > * User Name: your user ID (e.g. - jsmith)
    > * PASSWORD: your password
    >
    > At this point, you should be connected to your site on
    the Web server.
    > ENDQUOTE
    >
    > In DreamWeaver MX, I put the HOSTNAME stuff in the field
    for FTP Host. For
    > the
    > mysite part of the name there I put my subaccount email
    address prefix
    > [what I
    > have before the @ part]. I put ftp with and without a
    dot after it, and
    > tried
    > leaving out ftp.
    > Where they ask for User Name, I again put in my
    subaccount email address
    > prefix in the DWMX Login field. The prefix happens to be
    survivorevents.
    > For PASSWORD, of course I put in the password for the
    email subaccount.
    > For Dreamweaver's Host Directory, I left the field empty
    as I do with my
    > cable
    > internet company.
    >
    > The only thing that I DIDN"T DO that they mention
    elsewhere on their site
    > is
    > to use the extension htm for my index file. I left mine
    at html. I
    > wouldn't
    > think that would matter.
    >
    > I have been using a cable company that allows multiple
    email addresses.
    > But Verizon does a strange thing: there is a main
    account and the rest are
    > SUBemail accounts of the main one. For some reason, that
    made it
    > impossible for
    > me to set up Apple's Mail application without the help
    of tech support
    > from
    > Verizon. It is otherwise quite literally impossible. You
    need to know what
    > Verizon calls the subaccount, which is completely
    different from what I
    > enter
    > it as.
    >
    > I did get the Verizon version of the name of the
    subaccount and entered it
    > under user name and that didn't help.
    >
    > In short, HELP!
    > As always, any ideas are greatly appreciated.
    > Sorry for the yelling.
    >
    >

  • Site definition files

    I had to reinstall my dreamweaver software completely, and
    now I would like to reconstruct my site definitions without
    manually entering them all again. Unfortunately i didn't export
    them before my computer crashed. I have all the files that
    dreamweaver created before in the application data folders etc and
    I was wondering if there is a way that I could use that with my
    newly installed dreamweaver to recreate teh site definitions?
    thanks

    a0123aa wrote:
    > Unfortunately i didn't export them before my computer
    crashed. I have all the
    > files that dreamweaver created before in the application
    data folders etc and I
    > was wondering if there is a way that I could use that
    with my newly installed
    > dreamweaver to recreate teh site definitions?
    Unfortunately, no. I'm not sure where site definitions are
    kept on a
    Mac, but on a Windows machine, they're stored in the Windows
    registry.
    Site definitions can be automatically rebuilt only if you
    exported them
    in the first place.
    David Powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • Site definition Help needed....Thanks

    I am working with Dreamweaver 8.  Vista operating system.  My problem is a simple one but I am really
    stuck on it.
    In the past I have learned that to set my site definitions
    to always work OFF line and then transfer changes to my hosing company.  For some reason this has changed to working
    ON line in the ftp:\\ mode.
    I am unable to find a way to get back to the SITE
    DEFINITIONS PAGES to change back to “Edit locally and then upload to remote
    testing server.”  Need help, PLEASE
    Joe

    DW will just give a site a name when you first try to define
    a site. That pop-up box which says those names should give you the
    option to click in the text areas and change the name and path to
    whatever you wish.
    To answer your questions I will say the following:
    1 - To do this would would serve no purpose I will explain
    why with the answer to #2.
    2. I wouldn't recommend putting only C:\ in the local root
    folder box. That would potentially cause issues down the road
    because then DW would have access to work in the WINDOWS directory
    and this is not good. I would highly recommend keeping it in your
    user account on Windows XP (this is anything inside the
    C:\Documents and Settings\Username folder, which includes your My
    Documents folder). Now to jump back to #2. Without defining a
    proper directory you would not be able to use its functions for
    PHP, ASP or any server-side script. You would also not be able to
    insert Flash files onto your web pages nor would you be able to use
    the new features such as Spry. This is because DW needs a folder to
    work in so that it can create the associated files and folders
    which accompany making those types of scripts and functions. You
    don't necessarily need to connect it to a remote website if you do
    not have one, but you do need to specify a local folder to work in
    and I would highly recommend it. Thus defining the Name only gives
    the site definition a way for you to reference the site, even if it
    is for testing many sites. For instance I put my sites in a folder
    called "Sites" and then inside that folder I have many subfolders
    which are defined sites in Dreamweaver. Each folder has a name
    which corresponds to it that DW sees.

Maybe you are looking for

  • How do I sync photos from iPhone to iMac with a hardwire?

    How do I sync photos from my iPhone to my iMac with a hardwire now that I am on iCloud?

  • Data transfer from PC to mac

    Recently my PC crashed and I was interested in getting over 20gb worth of data off that drive and onto my macbook. I'm using a Bytecc USB drive mate (works sort of like an enclosure) to do the file transfer. The drive is noticed on the desktop but th

  • Agent Commission in SD

    Guru's We have the following scenarios in sd, how to handle them, can it be done through rebates or any other way. 1. Agent Commission - customer will have multiple agents and order can have multiple agents. How to work on the commission settlement i

  • Photo Quality in iMovie HD

    I'm importing photos into iMovie . . . all of them look GREAT when viewed in photo or graphic applications, but when bringing them into iMovie they look distorted and blurry. When they were originally created I saved them at a high resolution to hope

  • Oracle Enterprise Service Bus (OESB) or Oracle Service Bus (OSB) ?

    Which product to choose for a new project? Some of them strategic product ? What are the advantages and weaknesses?