Editing  PHP in Dreamweaver

Hi although I not new to Dreamweaver I am new to PHP files.  How do you edit PHP files within Dreamweaver.  For example, in an existing PHP file where I want to insert a picture/graphic it puts it elsewhere and then I have to move it?
Thanks!
D

Canned Heat wrote:
> How do I go about editing zen cart php in Dreamweaver in
the design
> wysiwyg view? Can it be done? If not, edit with what?
You can try to click on the "live data view" icon on the top
bar of page window.
But I don't think you can *change* live data view in design
view, i.e. drag the edge of a PHP
generated div to make it wider. You'll need to edit PHP in
the code.
seb ( [email protected])
http://webtrans1.com | high-end web
design
Downloads: Slide Show, Directory Browser, Mailing List

Similar Messages

  • Can't edit php files in dreamweaver, access to site root denied

    Can anyone help me please?
    I've recently purchased a Macbook Pro after my PCs failed on me and also had to get a Creative Suite Web Premium. I have always used Dreamweaver to edit my php files. In Windows XP, I had to run the programme to run as an Administrator to edit php files. Now I have not a clue how to do it on Mac! Each time I tried to save a php file, a dialog box appear stating: Access to Macintosh
    HD:Library:Webserver:Documents:Untitled-1.php was denied
    Regards
    Sinead

    You shouldn't have to do that on the Mac or Windows.  Only thing I could find that would suggest loading files from there is a tutorial by David.  And although I would normally agree with him, keeping the files in a system library folder for a testing environment is really unnecessary.  I'd recommend moving them into your /Users/{username}/Sites folder.  There is already a modification to the apache server to recognize that as http://localhost/~{username}.  Or install something like MAMP that is in the Applications folder.

  • Edit PHP pages in WYSIWYG {subject truncated by moderator}

    HELP! How do I edit PHP website files in a WYSIWYG format? In others words, I am able to edit static HTML where I can see my changes occur as I edit them. With PHP files it doesn't render as such. HELP!
    I am a beginner user but good enough to make edits to my HTML website. I just open the HTML file, make WYSIWYG changes and save them then use filezilla to upload to my server and boom changes are made.
    Right now I was just given a php site and I want to make basic edits such as expanding the navigation menu, adding more links, pages to the nav menu etc and cannot get Dreamweaver to act like it does with HTML or SHTML files. Why? How can I fix this so that I can edit my PHP files with the same ease as HTML?
    Thanks a ton!

    PHP is code view only.  To work with dynamic sites (php, server-side includes & MySql databases), you need to set-up a local PHP environment on your computer.
    Get one of these local testing servers for your OS and follow the installation instructions.
    WAMP for Windows - http://www.wampserver.com/en/
    XAMPP for Windows - http://www.apachefriends.org/en/xampp-windows.html
    XAMPP for Mac - http://www.apachefriends.org/en/xampp-macosx.html
    MAMP for Mac - http://www.mamp.info/en/downloads/index.html
    Setting up a PHP environment in Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
    Building your first dynamic website – Part 1: Setting up your site and database connection
    http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html
    Nancy O.

  • Zen Cart - how to edit php

    How do I go about editing zen cart php in Dreamweaver in the
    design
    wysiwyg view? Can it be done? If not, edit with what?

    Canned Heat wrote:
    > How do I go about editing zen cart php in Dreamweaver in
    the design
    > wysiwyg view? Can it be done? If not, edit with what?
    You can try to click on the "live data view" icon on the top
    bar of page window.
    But I don't think you can *change* live data view in design
    view, i.e. drag the edge of a PHP
    generated div to make it wider. You'll need to edit PHP in
    the code.
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

  • DW crashes when editing PHP

    Any time I try to edit my dynamic pages, Dreamweaver keeps
    shutting down with the following error sig:
    Error Signature:
    AppName: dreamweaver.exe AppVer: 9.0.0.3481 ModName:
    dreamweaver.exe
    ModVer: 9.0.0.3481 Offset: 002dab57

    Here's the code
    <?php
    include('includes/protect.php');
    include('includes/db.php');
    if(isset($_GET['del'])){
    $del = intval($_GET['del']);
    mysql_query("delete from news where id = ".$del);
    if(isset($_GET['disable'])){
    $disable = intval($_GET['disable']);
    mysql_query("update news set active = 0 where id =
    ".$disable);
    if(isset($_GET['enable'])){
    $enable = intval($_GET['enable']);
    mysql_query("update news set active = 1 where id =
    ".$enable);
    $yearlower = $_GET['year'];
    $_SESSION['newsyear'] = $_GET['year'];
    $_SESSION['newssort'] = $_GET['sort'];
    ?>
    <?php include('header.php');?>
    <table width="100%" id="brieflist">
    <td colspan="2"><h2>Manage News Stories
    </h2></td>
    <td colspan="2">
    <p align="right"><select class="option"
    name="otheryear" id="otheryear">
    <option <?php if (($_GET['year']) == 2007)
    {?>selected="selected" <?php
    ;}?>value="news.php?year=2007&amp;sort=<?php echo
    $_GET['sort'];?>">2007</option>
    <option <?php if (($_GET['year']) == 2006)
    {?>selected="selected" <?php
    ;}?>value="news.php?year=2006&amp;sort=<?php echo
    $_GET['sort'];?>">2006</option>
    <option <?php if (($_GET['year']) == 2005)
    {?>selected="selected" <?php
    ;}?>value="news.php?year=2005&amp;sort=<?php echo
    $_GET['sort'];?>">2005</option>
    <option <?php if (($_GET['year']) == 'all')
    {?>selected="selected" <?php
    ;}?>value="news.php?year=all&amp;sort=<?php echo
    $_GET['sort'];?>">All</option>
    </select></p>
    </td>
    <tr>
    <td colspan="4">
     <br />
    <a href="news-add.php">Add News Story </a>
    <p><hr />
     <br />
     </p>
    </td>
    </tr>
    <!-- Header Row -->
    <tr>
    <td class="columnhead"><a class="columnhead"
    href="<?php echo $PHP_SELF;?>?year=<?php echo
    $_GET['year']?>&amp;sort=headline"><b>Headline</b></a></td>
    <td class="columnhead"><a class="columnhead"
    href="<?php echo $PHP_SELF;?>?year=<?php echo
    $_GET['year']; ?>&amp;sort=newsdate"><b>Article
    Date</b></a></td>
    <td
    class="columnhead">      <b><u>Actions</u></b></td>
    <td align="right" class="columnhead"><a
    class="columnhead" href="<?php echo
    $PHP_SELF;?>?year=<?php echo $_GET['year'];
    ?>&amp;sort=active"><b>Status</b></a></td>
    </tr>
    <tr>
    <td colspan="4"> </td>
    </tr>
    <tr><td colspan="4"><hr
    /></td></tr>
    <?php
    // status, date, or headline
    if ($_GET['sort'] == "newsdate") {
    $dateon = 1;
    $statuson = 0;
    $headlineon = 0;
    } elseif ($_GET['sort'] == "active") {
    $dateon = 0;
    $statuson = 1;
    $headlineon = 0;
    } elseif ($_GET['sort'] == "headline") {
    $dateon = 0;
    $statuson = 0;
    $headlineon = 1;
    // sorting rules
    if ($statuson == 1) {
    $status = " asc, newsdate desc, lastupdate desc";
    if ($dateon == 1) {
    $status = " desc, lastupdate desc";
    if ($headlineon == 1) {
    $status = " asc";
    // if all years selected
    if ($_GET['year'] == 'all') {
    $yearlower = 0000;
    $yearplus = 9999;
    } else {
    $yearplus = $yearlower;
    $get_briefs = mysql_query("select
    id,headline,active,newsdate,gbcpr,tpaapr,lastupdate from news where
    newsdate >= DATE '".$yearlower."-00-00' AND newsdate <= DATE
    '".$yearplus."-99-99' order by ".$_GET['sort'].$status);
    $count = 0;
    while($brief = mysql_fetch_array($get_briefs)){
    $count++;
    ?>
    <tr>
    <!-- Headline -->
    <td width="500" valign="bottom"><p
    class="briefinfo"><b><a href="news-edit.php?id=<?php
    echo $brief['id'];?>"><?php echo
    $brief['headline'];?></a></b></p></td>
    <!-- Date -->
    <td width="80" valign="bottom" align="center"><p
    class="briefinfo">
    <?php
    $newsdate = strtotime($brief['newsdate']);
    echo date('M j, Y', $newsdate);
    ?>
    </p></td>
    <!-- Actions -->
    <td width="100" valign="bottom" align="center"><p
    class="briefinfo">      <a
    href="news-edit.php?id=<?php echo
    $brief['id'];?>">Edit</a> | <a href="<?php echo
    $PHP_SELF;?>?year=<?php echo
    $_GET['year'];?>&amp;sort=<?php echo
    $_GET['sort'];?>&amp;del=<?php echo $brief['id'];?>"
    onclick="confirm('Are you sure?');return confirm('Are you REALLY
    sure?');">Delete</a>
    </p>
    </td>
    <!-- Status -->
    <td valign="bottom" align="center"><p class=<?php
    if($brief['active']==0) {?> "draft"<?php ;} echo "status";
    ?> ><?php if($brief['active']==1){?><a
    href="<?php echo $PHP_SELF;?>?year=<?php echo
    $_GET['year']?>&amp;sort=<?php echo
    $_GET['sort'];?>&amp;disable=<?php echo
    $brief['id'];?>">published</a><?php }else{?><a
    class="draft" href="<?php echo $PHP_SELF;?>?year=<?php
    echo $_GET['year']?>&amp;sort=<?php echo
    $_GET['sort'];?>&amp;enable=<?php echo
    $brief['id'];?>">draft</a><?php }?></p>
    </td></tr>
    <tr><td colspan="4"><hr
    /></td></tr>
    <?php }?>
    </table>
    <?php include('footer.php');?>

  • Using PHP with Dreamweaver and Contribute

    I work for a small to medium government agency and we are re-vamping our website. Money and staff are very minimal here, so any hope of one or two full-time people managing the entire website, or of purchasing a content management system, are totally out of the question.
    My question is: for a group of people that are capable of using either Adobe Contribute or Dreamweaver in Design View only, are there any disadvantages or problems with using PHP?
    Here's more detail: In our situation, we really don't have the choice of editing straight HTML code, since many of our users would not be capable of doing so. If we could afford a full-time web person, that would be an option, but that's not possible at this point. Some of our users are going to be limited to using Adobe Contribute as well, which is a simpler option for some of the less-experienced users. Nonetheless we want our site to have a professional and consistent look, so  a technology like PHP would allow us to repeat content across many websites. By the way, that's all we'd be using PHP for as far as I know; just to enable me to edit a single page and thus change the navigation content across the whole site.
    Does anyone know of a reason why we couldn't build the site using very simple, limited PHP and allow people to edit it using Dreamweaver design view and Adobe Contribute?
    Thanks for any thoughts or suggestions that you can provide!
    P.S. We have also considered Dreamweaver templates, and so far that isn't working, due to the multi-login setup that we have.
    P.S.S. Although I do decently in HTML and CSS and a teeny bit of JS, I know nearly nothing about PHP, other than this:  <?php include("header.php"); ?>

    You can use that extension if you like. You need to make sure that your page that has the SSI have an extension that will process the scripts as mentioned above.
    .shtml, .php
    I always name my SSI so I know that they are includes.
    header.inc.html
    header.inc.php
    header.inc.txt as examples.
    If you are using PHP, then it should process the includes.
    A good simple test is to add a SSI to a page.
    Do something simple like.
    <p>Welcome to our website</p>
    Name it welcome.inc.php
    Then include it in a page, upload it to the webserver and visit the page.
    I am using contribute for people to update areas of our website (hate it) and I manage the overall website myself.

  • Edited template in Dreamweaver, once uploaded...another story!

    I purchased a template and began to edit it in Dreamweaver 8. It looked great until I uploaded it.  Some of the background doesn't show, as well as certain icons and logos.  Everything has been uploaded using Yahoo! Webhosting.  I uploaded the layout.css and style.css files and still no go.  This is how the website looks now: http://www.gyrlspeedracingteam.com This is how it should look: http://gyrlspeedracingteam.com/25875-b  Any help would be appreciated!
    Thanks,
    Andreana

    Alright, I created a js folder and woo hooo.  The other images that were actually there I moved to the images folder...did not have to do that with my previous template, just upload and go.  I have to admit that I googled absolute and relative links and I see the difference.  I guess I've been "linking" like that for so long, I wouldn't know otherwise.  It seems to be something I would do once I get my site nearly completed.  Thanks so much to Gary and bregent!  I guess I can mark this answered.

  • Editing text in Dreamweaver CS4 on Mac 10.6.2 causes paragraph ends to disapear

    Editing text in Dreamweaver CS4 on Mac 10.6.2 causes paragraph ends to disappear.
    When adding bold in design view (strong) to two words at the start of my paragraph the last line of the paragraph disappears. This is somewhat worrying as it means any editing I do in dreamweaver could do massive amounts of damage to the content.
    We are pasting the original content into the code view so as to strip the formating Dreamweaver then decides to take the last line break in the source code paragraph and then delete it see example below:
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dignissim nisi id risus varius ut scelerisque massa consectetur. Vestibulum non tortor augue, sit amet dictum lacus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur ultrices felis et dui tincidunt sit amet tristique est pulvinar. Nulla a lectus quis erat ornare ultricies. Sed ac elementum magna. Nulla aliquet accumsan nulla. In dictum accumsan tortor eget consequat. Suspendisse potenti. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc et orci eu augue condimentum sodales quis id mauris. Nam enim nisi, convallis eu volutpat non, malesuada quis nulla. Sed auctor nulla et tellus vehicula lacinia interdum odio lobortis vehicula lacinia interdum odio.</p>
    So when applying Strong with the Bold button in the design view to the first words 'Lorem ipsum' the last part of the paragraph 'lobortis vehicula lacinia interdum odio' will be deleted. Bizare and very dangerous especially for Annual Report content.
    Any experience of similar or solutions would be greatly received.
    PS. I have restarted, repaired permissions, checked dreamweaver is up to date trashed plist's and removed duplicate fonts.

    Mac+Win=Me wrote:
    It could be a problem in the templates.
    In all honesty, I just tried pasting text into the Design section of a page.
    It doesn't even work on my Mac, and it took three tries to get it to actually paste in VIsta.
    I had to go to the code and reformat it after it did paste, but it eventually went.
    I don't work with templates much.
    Well, that actually makes me feel a little better, if it makes sense to feel better to learn that it could be the expensive software and not just us. I guess I will view this as an opportunity to improve me coding speed :-) Thanks for the feedback.

  • PHP causes dreamweaver to crash

    When I open a php page it will open fine but if I click any
    of the php code dreamweaver just freezes. I have turned off
    validation in preferences but still no help.

    See if this TechNote helps:
    Dreamweaver crashes when accessing help system when Internet
    Explorer 7 is
    installed
    http://www.adobe.com/go/6d7a2c59
    David Alcala
    Adobe Product Support

  • Edit websites in dreamweaver

    can anyone tell me how to use dreamweaver to edit websites that are not made in dreamweaver??....plz help.....

    Dreamweaver works on local files.  To edit any website (even those not made in DW - after all, it's all HTML), you would first need to have a DW site defined with a local root folder, then you'd need to get the files (and their dependent files) into that local root folder, and finally you can then edit those files using DW.  Ordinarily, this requires some FTP connection to the remote site so that you can not only GET the remote files but also PUT them back once you have edited them.  Dreamweaver has the ability to do this - when you define your site you also specify the FTP connection details.
    I suggest you also use DW's F1 Help to read about defining a site.

  • The changes i made to an exisiting php in dreamweaver have not gone onto the live website?

    The changes i made to an exisiting php in dreamweaver have not gone onto the live website? Does anyone know how to make this go live?

    teaganmaddocks wrote:
    The changes i made to an exisiting php in dreamweaver have not gone onto the live website? Does anyone know how to make this go live?
    Not sure what changes you made so this is a wild guessing game.
    This may be a browser cache issue -  have you refreshed your browser or viewed the page in a different browser?

  • Using MySql and PHP with Dreamweaver on a Mac

    Hello all,
    As always if the answers to these questions are obscenely
    obvious please humour me.
    I use XHTML and CSS in my websites and realise that it is
    time that I dabbled with SSI. So I've started using PHP.
    However, I have been following the installation directions of
    MySql and am running into problems. I am installing the relavent
    software and am then unable to find it on my Mac, the startup files
    are there but the actual MySql data appears to not be installed
    despite my computer telling me it is...... I am using a G3 running
    OSX 10.4 is this good enough? I noticed talk of needing a PowerPC
    or Intel mac. Is this the case?
    Also, would I need MySql installed on my actual computer if
    the my servers have it already? And does Dreamweaver 8 have both of
    these programs installed as standard?
    If you could help out I would be very appreciative as I would
    like to learn this stuff and I appear to be struggling at the
    outset....
    Cheers
    M.A

    M.A.Wilson wrote:
    > However, I have been following the installation
    directions of MySql and am
    > running into problems. I am installing the relavent
    software and am then unable
    > to find it on my Mac, the startup files are there but
    the actual MySql data
    > appears to not be installed despite my computer telling
    me it is...... I am
    > using a G3 running OSX 10.4 is this good enough? I
    noticed talk of needing a
    > PowerPC or Intel mac. Is this the case?
    MySQL is a relational database management system that
    comprises a
    database server and several utility programs. Although you
    install it
    like any other program on a Mac, the similarity stops there.
    First, the point about PowerPC and Intel Macs is that there
    are
    different versions of the MySQL installer for each type of
    processor.
    I'm pretty sure that a G3 is OK, but you must choose the
    PowerPC version
    of MySQL, not the 64-bit or x86 (Intel Mac) version.
    Once you have installed MySQL, you need to drag the
    MySQL.PrefPane icon
    from the disk image onto your System Preferences. This
    installs a
    Preference Pane that enables you to start and stop MySQL. The
    Preference
    Pane has an option to start up MySQL automatically, but in my
    experience, it doesn't work on Tiger. You need to open the
    Preference
    Pane, and click Start MySQL Server each time you start your
    computer.
    The best way to work with MySQL is to use a graphical
    interface, such as
    phpMyAdmin. As Osgood has mentioned, I have written a book
    about PHP and
    Dreamweaver, which goes into all the necessary details. It's
    also very
    Mac-friendly with separate instructions where necessary for
    PC and Mac.
    More details here:
    http://foundationphp.com/dreamweaver8/
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • Launch and edit problem from Dreamweaver to Fireworks

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3266405159_588474
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    Hi
    Not sure if this is a Fireworks or Dreamweaver problem but
    here goes.
    I¹ve created a graphic in Fireworks CS3 on the Mac and
    Exported the HTML and
    related images. I open the HTML file in Dreamweaver CS3, all
    fine so far.
    Then I highlight the table and click the ŒEdit in
    Fireworks¹ button and it
    throws up a warning dialogue saying ŒCannot launch and
    edit. The Fireworks
    table could not be found in the HTML. Please export from
    Fireworks and
    re-import the HTML into Dreamweaver.¹
    What?!!
    I¹ve only just exported it from Fireworks! It¹s
    even got the Fireworks table
    code in the Code section, so what¹s going here?
    Has anyone else had this?
    Gaz
    --B_3266405159_588474
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Launch and edit problem from Dreamweaver to
    Fireworks</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN
    STYLE=3D'font-size:12.0px'>Hi<BR=
    >
    Not sure if this is a Fireworks or Dreamweaver problem but
    here goes.<BR>
    I&#8217;ve created a graphic in Fireworks CS3 on the Mac
    and Exported the H=
    TML and related images. I open the HTML file in Dreamweaver
    CS3, all fine so=
    far. Then I highlight the table and click the
    &#8216;Edit in Fireworks&#821=
    7; button and it throws up a warning dialogue saying
    &#8216;Cannot launch an=
    d edit. The Fireworks table could not be found in the HTML.
    Please export fr=
    om Fireworks and re-import the HTML into
    Dreamweaver.&#8217;<BR>
    What?!!<BR>
    I&#8217;ve only just exported it from Fireworks!
    It&#8217;s even got the Fi=
    reworks table code in the Code section, so what&#8217;s
    going here?<BR>
    <BR>
    Has anyone else had this?<BR>
    <BR>
    Gaz</SPAN></FONT>
    </BODY>
    </HTML>
    --B_3266405159_588474--

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3266407908_747577
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    When you export the sliced graphics from Fireworks it places
    them into a
    table. In my instance the code says...
    <!-- fwtable fwsrc="Brands.png" fwpage="Page 1"
    fwbase="Brands.jpg"
    fwstyle="Dreamweaver" fwdocid = "325827661" fwnested="0"
    -->
    So it recognises Fireworks was the the graphics app and jumps
    back to it
    when you want to edit the image. Fireworks then displays (or
    should) a
    ŒDone¹ button over the window. You do your alts and
    press Done to update the
    HTML and graphics back in Dreamweaver automatically.
    That¹s the only table I was referring to Murray.
    On 4/7/07 3:02 pm, in article
    [email protected], "Murray
    *ACE*" <[email protected]> wrote:
    > Why would you be wanting to edit the table in a graphics
    editor, instead of
    > an HTML editor?
    --B_3266407908_747577
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Re: Launch and edit problem from Dreamweaver to
    Fireworks</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN
    STYLE=3D'font-size:12.0px'>When =
    you export the sliced graphics from Fireworks it places them
    into a table. I=
    n my instance the code says...<BR>
    <BR>
    &lt;!-- fwtable fwsrc=3D&quot;Brands.png&quot;
    fwpage=3D&quot;Page 1&quot; fwba=
    se=3D&quot;Brands.jpg&quot;
    fwstyle=3D&quot;Dreamweaver&quot; fwdocid =3D &quot;32=
    5827661&quot; fwnested=3D&quot;0&quot;
    --&gt;<BR>
    <BR>
    So it recognises Fireworks was the the graphics app and jumps
    back to it wh=
    en you want to edit the image. Fireworks then displays (or
    should) a &#8216;=
    Done&#8217; button over the window. You do your alts and
    press Done to updat=
    e the HTML and graphics back in Dreamweaver
    automatically.<BR>
    That&#8217;s the only table I was referring to
    Murray.<BR>
    <BR>
    On 4/7/07 3:02 pm, in article
    [email protected], &quot;Murr=
    ay *ACE*&quot;
    &lt;[email protected]&gt; wrote:<BR>
    <BR>
    <FONT COLOR=3D"#0000FF">&gt; Why would you be
    wanting to edit the table in a =
    graphics editor, instead of <BR>
    &gt; an HTML editor?<BR>
    </FONT></SPAN></FONT>
    </BODY>
    </HTML>
    --B_3266407908_747577--

  • Convert DW html pages to PHP in Dreamweaver CS4

    Created web pages in DWCS4 in html but discovered because I need some form pages to interact with MySQL that I should have created pages using DW PHP format. Is there a simple way to convert all html pages to php using dreamweaver CS4? OS is Win XP. Have access to hosting company with MySQL, PHP,PHPAdmin.

    I would recommend against Nancy's suggestion here (and it's REALLY weird to see myself typing that).
    I say it only because you are working within an existing site that likely already has links going to the .html file you are changing.
    If you do a Save As and create a new .php file based on the still existing .html file, you will need to manually change the links on the pages that are currently pointing to the that .html file so they will point to the new .php file. You would need to either open the pages individually and fix the links, or use DW's Find & Replace feature and do a site-wide correction.
    However, if you change the file extension from within the Files tab instead, DW will  update any pages that link to it automatically.

  • Issues editing Layouts using Dreamweaver CS4 (ShopOnline)

    Hi Everyone,
    I am having Issues editing Layouts using Dreamweaver CS4 (ShopOnline). May be someone has encounter this problem. When I open the large_product.html in dreamweaver (after installing the extension for BC) the file opens, but when I go to the property inspector, I can not modify any of the css rules currently defined and no css is linked to this file. I looked at all the available css's and I could not find any with the defined rules in this page.
    I need help. Thanks.

    It must be a module template layout that is being used.  If you're on the latest interface it's under
    Site Manager > Module Templates > Online Shop Layouts >  Individual Product (small or large)
    and if you're on the older interface it's
    Ecommerce > Products > Advanced Layout customization (under the “related” box at the bottom right)

Maybe you are looking for