How to find "start-dreamweaver-first-website" zip in local site folder?

Hallo...
I have download that file already. But somehow it does not show up on the "local site folder" when i want to save it as in the tutorial video suggest....
Do i need to do anything else before that to save it.???
BTW, how to unzip that folder....??
Thanks a lot.

Dear Ken:
Many many thanks...[?]
2015-03-08 19:22 GMT+08:00 Ken Binney <[email protected]>:
    how to find "start-dreamweaver-first-website" zip in local site
folder?  created by Ken Binney
<https://forums.adobe.com/people/Ken+Binney> in *Dreamweaver support
forum* - View the full discussion
<https://forums.adobe.com/message/7264408#7264408>

Similar Messages

  • How to setup new site in dreamweaver if not working with Local Site Folder?

    Dear All,
    I am working with a website design (wordpress) project with a group of people, since we are working together on the same design, our developing site is not located in the local folder but on remote server, but I can't setup the website in DW if the developing site is not located locally.
    Is there any way to do the development on remote server with DW, and what will be the site setup setting for it?
    thanks for any reply.
    bruce

    Sharing a "Local" site is a recipe for disaster vis-a-vis file versioning.  The best way to avoid these problems is to have three locations defined:
    1.  A local site (truly local to your computer, although it can be on a network, shared drive).
    2.  A staging site (this would be the intermediate holding site for partially finished work.
    3.  A production site (this would be where the final versions of files are pushed).
    Enable DW's Checkin/Checkout facility.  Each of you would checkout files from the staging server, and when finished editing, checkin those same files to the staging server.  Thus, you are not sharing a local site - you are sharing a remote file repository, which is your gold standard source for version protected files.
    Make sense?

  • How do I place files I used to create a website into Dreamweaver's Local site folder?

    I designed a site years ago for a client. Now when I open the site in DW, the images aren't linked because there are no files in the local site folder. It must be easy - I'm just no finding the solution on my own. Thank you

    Sounds like someone moved the files out of the local site folder, probably using the OS rather than DW's Files window.
    DW just manages files on your computer, it doesn't store your files in the program. So you will have a folder somewhere on your machine with the same name that appears when you hover over the root folder at the top of your Files window in DW. You can also find the folder name under Site > Manage Sites > click the site you are working with > Site > Local Site Folder.
    You need to find that folder on your desktop, then find the images that are supposed to be in it, and move the images back.

  • How do  find the number of visits to my iweb site hosted on mobile me?

    can you please tell me how to monitor the number of hits to my iweb site?
    thanks
    david swann

    If you would like to know, in addition to the number of visitors, where they are from, what size monitor they used, what site they came from to get to your site, what browser they used,  what system they were using and more then try a 3rd party counter. 
    I use StatCounter which give all that info an more.  This tutorial describes how to add the counter to each page via an HTML snippet: #13 - Adding a StatCounter as an HTML Snippet
    OT

  • How to find links in a website

    Hello,
    Well i have studied the example in page http://java.sun.com/docs/books/tutorial/networking/urls/readingURL.html and coded it.
    The program reads the url and outputs the html code of the site , as i understood.
    Well, how am i supposed to find the links in a website? Which parts of the html code shall i read ?
    May you please tell which class or methods shall i study in order to do it?
    Thanks in advance! :)

    I was initially tempted to say use an XML parser, but many html pages don't use XHTML (XML compliant HTML). You may just want to try reading the code line by line looking for links yourself. Take a look at the Pattern and Matcher classes to see how regular expressions work.
    Here's some sample code to help you get started. What you're looking for is the text in the quotes after an href tag. Notice that with all the possibilities of whitespace, the " *" had to be included. Also, either single or double quotes may be used. The while loop is needed because there could be multiple matches.
    String data = "< a href='abc'>one</a> <a href   =  'def'>two</a>";
    String regex = "< *a.*href *= *['|\"]";
    Pattern p = Pattern.compile(regex);
    Matcher m = p.matcher(data);
    while (m.find()){
         System.out.println(m.end());
    {code}
      That should be good enough, though there's almost certainly cases I've overlooked.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • PPOME - New Tab & Infotype - How to find "start date" of preview period

    Hi all,
    I have successfully created own Infotype and add as new tab in PPOME.
    But now I need in my modulpool program to read field "start date" of preview period (from heading of screen in PPOME). I can't find right field. Has anybody any idea?
    Thanks a lot.
    Dusan
    Message was edited by:
            Dusan Skokanek

    Hi ramprasad74,
    According to your description, you are using Analysis Services as a data source for the report, the cube has hierarchy: Fyear, FQuarter, FPeriod, fweek, Fdate. You want to add a date parameter to the report, after you changed value of the parameter, the
    report will return the first day of FPeriod.
    To achieve your goal, we need to add a parameter to the report, then use the parameter in mdx query. For detail information, please refer to the following steps:
    In the Report Data pane, right-click on a dataset created from a SQL Server Analysis Services data source type, and then click Query. The MDX query designer opens in Design mode.
    On the toolbar, click Design to toggle to Query mode.
    On the MDX query designer toolbar, click Query Parameters symbol. The Query Parameters dialog box opens.
    In the Parameter column, click <Enter Parameter>, and then type the name of a parameter.
    In the Dimension column, choose a value from the drop-down list.
    In the Hierarchy column, choose a value from the drop-down list.
    In the Default column, from the drop-down list, select a single value.
    Click OK. 
    In query designer dialog box, type the mdx query like below:
    with member [Measures].[FirstChild]
    as
    [Date].[Fiscal].currentmember.parent.firstchild.name
    select {[Measures].[FirstChild]} on 0,
    [Date].[Fiscal].[Date].members on 1
    from
    ( SELECT ( STRTOSET(@ParameterName, CONSTRAINED) ) on 0
    from
    [Cube]
    Here are relevant threads you can reference:
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/c7146ac3-40ea-4d53-b321-c707aebbd405/how-to-pass-date-parameter-to-mdx-query
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/fd12a865-bc90-4a65-af42-ce38a8cfa29b/pass-date-time-parameter-to-mdx-query-ssrs
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • How to find START and END block number in a datafile?

    Hi Guys,
    I am trying to use dbverify utility with "start" and "end" flags in it. How can I find the starting block # and ending block # of a datafile. I checked v$datafile query but its not very helpful. Any help would be appreciated.
    MM

    If you mean used blocks, then check out DBA_EXTENTS

  • How to find, which file present inside .ZIP?

    Hi Experts,
    I have test_20130303010203.dat file after ziping it the file name is test_20130305010203.dat.zip.
    My question is how can i find which file got ziped?(in code).
    Lets say i have 10 .dat file already in the same path where i am unziping my file....how can i find my unziped file?
    Please help me 

    Hi Asma,
    How is your question related to SSIS?
    To find out you need to see what and how zips/unzips the file up.
    I assume you are free to choose how you proceed, so then why not using a utility at your disposal set to unzip the files to the needed directory?
    Arthur My Blog

  • How to find the URL of website

    HI,
    My Web hosting company have created the instance of Web Tools in the web server but they are not sure on the URL part when creating the instance. I also do not have privileges to look into the IIS. 
    Does web tools stores the URL information any where? How do I find the URL for that website?
    Thanks in advance for any Suggestions!
    Regards,
    Mohan

    Hi Bryce,
    Thanks for the suggestion!
    I have tried the domain name with folder name ‘WebDemoUK’ created during the website instance creation. The installation path is correct as in the error message. What might be reason for this error?
    Domainname/B1webtools seems to point to old web site.
    Server Error in '/WebDemoUK' 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: The entry 'connString' has already been added.
    Source Error:
    Line 4:      <add key="PrivateKey" value="OZMwWiKEqv3G1" />
    Line 5:    </appSettings>
    Line 6:    <connectionStrings configProtectionProvider="DataProtectionConfigurationProvider">
    Line 7:      <EncryptedData>
    Line 8:        <CipherData>
    Source File: C:\home\13597\algeosftp\www.foothealthcare.com\WebDemoUK\web.config    Line: 6
    Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832
    Regards,
    Mohan
    Edited by: Rui Pereira on Dec 29, 2008 6:38 PM

  • How to find out the first time RMAN be utilized in DB

    I need to find out the history of RMAN process in my database, like when it was used first time, and status ect...
    I have checked all v$RMAN_xxx view and v$backup_XXXX views, didn't fine anything.
    Is there other views that may be helpful?
    Also any way I can find out when was archivelog turned on?
    Thanks

    Here is the version
    SQL> select banner from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - Prod
    PL/SQL Release 10.1.0.4.0 - Production
    CORE 10.1.0.4.0 Production
    TNS for 32-bit Windows: Version 10.1.0.4.0 - Production
    NLSRTL Version 10.1.0.4.0 - Production
    Here is what I got if I just issue RMAN from command line:
    E:\>rman
    Recovery Manager: Release 10.2.0.2.0 - Production on Tue Feb 27 11:21:18 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN>
    here is what I got if I got into $oracle_home/bin
    E:\>cd oracle\product\10.1.0\db_1\bin
    E:\oracle\product\10.1.0\Db_1\BIN>rman
    Recovery Manager: Release 10.1.0.4.0 - Production
    Copyright (c) 1995, 2004, Oracle. All rights reserved.
    RMAN>
    Thanks for the help.

  • Very easy question - How to find out the first date of year

    Hi Experts,
    I have created Web Dynpro program. I have to set one field "start_date" as first date of year. For example if current date is 04/10/2009, then program should set value of field "start_date" as 01/01/2009.
    If suppose program is used on 12/12/2012, then program should set the value of "start_date" as 01/01/2012.
    Please peovide me some code.
    Regards,
    Gary

    Hi,
    This line should give you the current year.
    Calendar.getInstance().get(Calendar.YEAR);
    Prefix 01/01/ to this will give you the first day of that year.
    Thanks,
    Venkat

  • How to find out which meta process chain a local chain is involved in

    Hello experts,
    i would like to know how a local process chain is started by a meta chain. I have a local chain running every day. It is involved in a meta chain. How can i find out the meta chain in which the local chain is involved.
    I appreciate every help i get.
    Thank you all in advance.
    Kind regards,
    Ali

    Hi everybody,
    the question is answered.
    Thanks and regards.
    Ali

  • How do I set the Default website when a virtual site is unavailable?

    I am hosting several virtual domains.
    Yesterday I disabled one of my virtual sites inadvertantly by de-checking the "Enabled" box in Server Admin > Web > Settings > Sites.
    While the site was disabled, browsers were directed to the first site in the Sites list (because it just happens to be first on the list?).
    How can I make a different site in this list be the "default" site, OR force another site to the top of the list?
    Thanks in advance,
    Keith

    You're correct that Apache, when it can't find a VirtualHost, will use either the default VirtualHost or the first VirtualHost. If the setup screen has a list of your VirtualHosts, you MAY be able to just drag one up to the first slot. That part's a guess, I hate the GUI and use the Apache2 webserver just to avoid it.
    Roger

  • How to find font in Indesign, which is in Windows Font Folder?

    Hi
    I need to use Monotype Sorts font.
    This font was not in the Indesign list of fonts.
    I bought the font and downloaded it to a file on my hard drive.
    It is called Monotype_sorts.ttf
    I then went to Windows Font Folder in Cpanel and installed it.
    I then followed advice I found on the web and copied the font to the Adobe/Indesign CS5/ Fonts folder.
    However I still can't see the font within Indesign in order to use it.
    Any help would be very much appreciated as I need to try and work this out very quickly.
    I'm on Windows Vista.
    Many thanks liz

    function(){return A.apply(null,[this].concat($A(arguments)))}
    ... I then went to Windows Font Folder in Cpanel and installed it.
    I then followed advice I found on the web and copied the font to the Adobe/Indesign CS5/ Fonts folder.
    That was some bad advice you got there. Indesign is fully able to use all of your installed fonts -- the ones in Windows. Only a very few specialized types of fonts that cannot be installed in Windows need to go into ID's "private" Fonts folder. (And another reason would be you want to keep your Windows system 'clean'.)
    The problem may very well be that InDesign now sees two versions of the same font, and refuses to let you select either, just to make things not too complicated. So delete the font in one of your locations.
    If that doesn't work either, read this thread on how to reset InDesign's internal font database:
    http://forums.adobe.com/thread/424137?decorator=print&displayFullThread=true

  • How to symlink vendor libraries in DW? It doesn't consider that a library is in the local site folde

    Here's my question on Stackoverflow.
    http://stackoverflow.com/questions/13223428/how-to-symlink-vendor-libraries-in-dw-it-doesn t-consider-that-a-library-is-in
    And here I duplicate it. Please see on Stackoverflow because I'm afraid I'll not be able to format my question here right way using these forum tools.
    I use Win XP and Dreamweaver. I have ZF2 project. Here its "site root directory", using DW words:
    application_root/
        config/
            application.config.php
            autoload/
                global.php
                local.php
                // etc.
        data/
        module/
        vendor/
        public/
            .htaccess
            index.php
        init_autoloader.php
    I have it here C:\xampp\htdocs\mySite
    In /vendor directory there must be ZF2 library. But I have it in other directory'C:\xampp\htdocs\ZF2' and just want to put symlink to it in my /vendor directory.
    But if do so DW considers that ZF2 library is outside of my project directory. For example I want to require a class:
    require_once('\Zend\Mvc\Application.php');
    But DW says:
    This file is outside of the root folder of site "mySite", and may not be accessible when you publish the site... Would you like to copy the file there now?
    No, I don't want to copy. I don't want to make a score of the same library in every directory of my projects. But DW seems doesnt allow to do it. It makes me to copy only.
    So my question is. Is it possible to set DW that it allows to use symlinks to include libraries which are not in the "site root directory"? How to do it?
    I've read this http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html , but it doesn't help. It has one sentence about the problem and that's all it has. It absolutely doesn't give the answer how to solve it.
    However, this results in two identical copies of every file. Instead it's common practice to store project files in a folder inside the document root of the testing server, which is what you'll do in this tutorial.
    And there is nothing in the tutorial about the problem.

    Non-Windows browsers do not have a concept of a "trusted" site. In Windows, IE and Chrome do not repeatedly prompt for credentials because they use the user's login credentials on the desktop. Other devices do not have this capability. Instead,
    you need to use something like ADFS to authenticate users.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • I need help on how to get my new computer to sink with my ipod. Help

    Can some one please tell me how to get my ipod and Itunes to sink right on a new updated computer with out eracing everthing. I have lots of pictures that I had on the computer and lost. they are all on the ipod and don't know how to get them off or

  • A swf loader bug?

    It looks like I may have found a bug in the swf loader.  Before I submit this problem I want to make sure there is not something I'm missing in my code. I wrote this class to load a tutorial when the user first launches a sub application in a project

  • Re: ADF Mobile webservice datacontrol parameter problem

    When i am trying to create Data Control from wsdl, the data control is generated but it doesnot contain any method or operation..Can someone help, i am getting the below message: oracle.adf.model.adapter.AdapterException: JBO-29114 ADFContext is not

  • Stupid question, I'm sure...

    I have a PartnerLink, which is a DB Adapter. I am doing a select, and need a date in my where clause, so at the end of the wizard I have setup a parameter called "date". Just for the sake of early development phase, I have hardcoded a date ('01-may-2

  • $ addition to an amount column in a form

    I need to add a dollar sign to the left of the amount that is returned in a data form. Has anyone done this? I'm a newbie to CF so any help is greatly appreciated. The amount column needs to read: $701.32 vs. just 701.32. Thanks much, Chris C.