How to remove a web page from the server web host via dreamweaver


We have made significant changes to our Web site and need to delete a number of web pages that have been published on our web server.  While these retired web pages cannot be publicly accessed via links in the Web site, that have been deleted, web pages remain on the site and can be accessed if their specific URL is directly indexed.

  1. In the files Panel, select the remote server in the drop-down next to the site name and click the icon to connect to the remote server.
  2. Browse for the files you want to delete and press delete.
  3. Confirm that you want to delete the selected files.

Tags: Dreamweaver

Similar Questions

  • How to remove attachments to email from the server

    Hello
    I created a CF model for sending electronic mail that includes attachments. It has been tested on my dev machine and works fine as long as the download of attachments to a directory on the server. I wish that the spare part to be served once as the e-mail message has been sent to the recipient.

    Macromedia ColdFuision 7MX web application construction book page 913 "interacting with Email" we a CFC that will remove the file when the user ends their session.

    I don't know how to write it to adapt the code that I use.

    Here's the e-mail form

    <! - Mail_Form.cfm - >
    < html >
    < head >
    < title > please enter your message < /title >
    < / head >

    < body >
    < do action = "Send_Email.cfm" method = "post" enctype = "multipart/form-data" > "
    < table width = '500' border = "0" align = "center" >
    < b >
    < td width = "500" colspan = "2" > please enter your e-mail address: < table >
    < /tr >
    < b >
    < td width = "250" > to: < table >
    < td width = "250" > < input type = "text" name = "to_addr" value = "" > < table >
    < /tr >
    < b >
    < td > subject: < table >
    < td > < input type = "text" name = "subject" value = "" > < table >
    < /tr >
    < b >
    < Td > message: < table >
    < td > < input name = "message" rows text box = "5" cols = "35" > < / textarea > < table >
    < /tr >
    < b >
    < td width = "250" > annex #1: < table >
    < td width = "250" > < input type = "file" name = "attachment_1" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > #2 Attachment: < table >
    < td width = "250" > < input type = "file" name = "attachment_2" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > #3 Attachment: < table >
    < td width = "250" > < input type = "file" name = "attachment_3" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > < table >
    < td width = "250" > < input type = "submit" name = 'Send_Email' value = "SendEmail" > < table >
    < /tr >
    < /table >
    < / make >

    Here is the form to send the attachment.

    <! - Send_Email.cfm - >
    <!-first of all, make sure that the attachments downloaded the user->
    < cfif FORM.attachment_1 NEQ "" > "".
    <!-firstly actually-> download file
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_1."
    nameconflict = "makeunique" >
    <! - now create a temporary support for the attachment then - >
    < cfset attachment_local_file_1 = "d:\uploadsTEST\#file.serverfile#" >
    < / cfif >

    <!-now repeat the process for the setting of the second and third: - >

    < cfif FORM.attachment_2 NEQ "" > "".
    <!-firstly actually-> download file
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_2."
    nameconflict = "makeunique" >
    <! - now create a temporary support for the attachment then - >
    < cfset attachment_local_file_2 = "d\uploadsTEST\#file.serverfile#" >
    < / cfif >

    < cfif FORM.attachment_3 NEQ "" > "".
    <!--forst actually download the file - >
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_3."
    nameconflict = "makeunique" >
    <!-now to create a temporary support for late fixing on->
    < cfset attachment_local_file_3 = "d:\uploadsTEST\#file.serverfile#" >
    < / cfif >

    <!-OK, now you have downloaded the file from the server, now we will send
    email with attachments: - >

    "< intrusion via cfmail to =" #form.to_addr # "[email protected]" = "subject =" #subject #
    Server = "an001so - dby1c.pbi.global.pvt" port = "25" >
    #message #.

    < cfsilent >
    <!-< cfsilent > tag used to kill the white space in this area
    If your email is not cluttered with white spaces-->

    < cfif FORM.attachment_1 NEQ "" > "".
    < cfmailparam file = "#attachment_local_file_1 #" >
    < / cfif >
    < cfif FORM.attachment_2 NEQ "" > "".
    < cfmailparam file = "#attachment_local_file_2 #" >
    < / cfif >
    < cfif FORM.attachment_3 NEQ "" > "".
    < cfmailparam file = "#attachment_local_file_3 #" >
    < / cfif >

    < / cfsilent >
    < / intrusion via cfmail >

    Here's the session request to delete the file to download

    <!--
    File name: Application.cfc
    Runs for each page request
    ->

    < cfproperty output = "false" >

    <!-name of the application. ->
    < cfset this.name = "attachmentPurge" >
    <!-enable session management. ->
    < cfset this.sessionManagement = true >
    < cfset this.clientMangment = true >

    < name cffunction output = 'onSessionEnd' = "false" returnType = "Cancel" >
    <!--> look for attachments to remove

    < cfset var attachDir = expandPath ("Attach") >
    < cfset = var getFiles "" > "".
    < cfset var thisFile = "" > "".

    <! - get a list of all files in the directory - >
    < cfdirectory directory = "" #attachDir # "name ="getFiles">"

    <! - for each file in the directory - >
    < cfloop query = "getFiles" >
    <!-if it's a file (rather than a directory)-->
    < cfif getFiles.type NEQ "Dir" >
    <! - get the full name of this file - >
    < cfset thisFile = expandPath("Attach\#getFiles.Name#") >
    < / cfif >
    < / cfloop >

    < / cffunction >

    < / cfproperty >

    The tutorial doesn't explain how to delete the attachment when the recipient audits post
    in the pop server.

    Assuming that the sender is in a session would be writing code to remove the attachment from the directory on
    the server, a message is sent.

    Can someone explain how to remove attachments from a designated directory or provide me the code that would deal with that once an email is sent with an attachment automatically.



    Thank you

    Tony

    That's how I do it.



    ThisDir = "d:\dw\dwweb\work";
    ThisDate = DateAdd ("d",-90, now());




    Select the name of AllFiles
    where datelastmodified<>






  • iPad 2 is not removal of e-mails from the server

    It is an intermittent problem that caused the problem for several years. We are an independent POP account that we use with a Macbook Pro, iPad 2 and my Android phone. The iPad is set to delete emails from the server when deleting the receipt of the iPad and occasionally it works - but often, deleted messages are charged even after the destruction repeated including the trash dump. This morning more than 300 have been reloaded after a few attempts to get rid of them. The iPad is up-to-date with all its software, and we cannot find anything on this end that could be the cause of the problem. I never have this issue with the Mac - deleted messages are gone, so it seems that the problem is not with our internet service provider.

    This can help. By default, iOS Mail does not remove the server until a week has passed, even if the email is removed from your iOS device.

    I would contact your email provider if you continue to have problems, especially for years. Emails coming back means they are still on the server of the email provider, and they keep you remove server.

    Get help if you have any questions using a POP email with multiple devices - Apple Support account

    In addition, if your e-mail provider allows it, change your IMAP account

  • How to remove 'Save as PDF' from the popup menu

    The item 'Save as PDF' leads to a shopping site called NITRO. I'm trying to eliminate it from the context menu. I installed the add-on Menu Edit and changed the item save as PDF from the visible to hidden on my PC Windows with Firefox 30 8.1. However, the issue has not disappeared from the context menu. Still on my PC with Linux Mint 17 with 30 Firefox for Linux Mint, the point went on the shortcut menu. My PC s linked with Firefox Synch.

    How can I remove this?

    Such an entry in the context menu is probably added by a PDF file about the extension, in order to check your extensions.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem.

    • Put yourself in the DEFAULT theme: Firefox/tools > Modules > appearance
    • Do NOT click on the reset button on the startup window Mode safe
  • How to remove images or themes from the list of display properties for selected wallpapers?

    Well they are. When I go into the Control Panel, click or select the display icon, I come to the display properties.  Kind of dumb pictures obtained in the list of display properties.  I want to remove them from the list.  I n my ending is never trying to clean my computer, I want to delete these images and selected icons.  I really don't remember adding photos to the list of display properties for desktop. But they are there

    You must move the image files where they are now (probably in my pictures). Windows XP retrieves files image from the following paths:

    C:\WINDOWS BMP files

    The files BMP, JPG, GIF, JPE, DIB, PNG, HTM from the following locations:

    C:\Windows\Web\Wallpaper
    C:\Documents and Settings\photos \My Documents\My [& ALL THE sub FOLDERS]
    C:\Documents and Settings\\Application Data\Microsoft\Internet explore
    C:\Program Files\Plus! \Themes [* & ALL subfolders *]

    So for example, if the 'silent pictures' are in your My Documents\My Pictures folder (or a folder in my pictures) and you want to keep them, just move them to the folder My Documents of parent instead. If you don't want to keep them, just delete the files.

    MS - MVP - Elephant Boy computers - don't panic!

  • How to send photos by mms from the server?

    Hello

    I am currently working on mms app.what I do is first download the image of the server and then send.

    but there is a string currentLocation (location of the file we want to fix) parameter to MessagePart.

    so I use it directly from server how can I achieve that.

    pls help...

    thankx.

    Hello

    My problem was solved by using

    Bitmap image=imageObj.originalImage[0];
                PNGEncodedImage encodedImage=PNGEncodedImage.encode(image);
                byte[] contents=encodedImage.getData();
    
  • How can I add new pages in the (fluid) reagent layout with Dreamweaver CC?

    I seem to be screwing up the CSS when I add new pages. I have to do it wrong. Help! @

    Build your prototype of FGLayout page so that it works well in all screen sizes (first mobile, then compressed, finally Office).    To create your home page, index.html SaveAs.   Then SaveAs page2.html, replace content.  Repeat for other pages of the site.

    Nancy O.

  • How to remove "HP recovery manager" from the start menu?

    A year ago, I had a virus attack on my computer. Knocked it completely. In the process of reinstalling the computer, HP Recovery Manager was added to the start menu.

    Now I need to remove it in the start menu because it takes an unnecessarily long time to start Windows. How can I do this?

    Sorry if this has already been written solution, don't know what keywords should I look for in this forum to get answers to my questions.

    Thanks for the reply

    Hi @teddykladdkak

    Welcome to the Forums of HP Support!

    I understand that you are looking for help to edit the boot options for your laptop. I'm happy to help you with this.

    I did some research and found this from Microsoft, and it looks like you need and covers several options:

    Modification of Startup Options - msdn.microsoft.com

    As a tip, I also include this eightforums.com page rom which can also be useful:

    Advanced start to boot in Windows 8 and 8.1 Options

    I hope this helps. Please let me know how it goes for you.

  • How to return a xhtml page from the popup panel

    Hello

    I have two pages xhtml a xhtml page is open by clicking on the first button and as a result of this click on a popup window opens (second form). This new form that has been opened as a popup, I want to make the first forms textbox when I click on a button in the pop-up window.

    Do you think that is it possible? (either by the way, I use jsf 1.2)

    I tried to be clear that I can do, but if not I'll explain it with codes if it is not yet clear.

    See you soon

    924851 wrote:
    This means using jsf1.2 there is no way to do it?

    I have only one thing to say to that: do the JSF, or do it yourself.

    Work with pop - up is not in the design of the framework. Which is a good design IMO decision - there's a reason why most browsers come with a blocker pre-installed popups; people don't like the pop-up windows. These things are really of the previous century. Everything you want to do if you want to use JSF, better to adjust your design for which is more in line with how does the framework. If you don't know what it is its time to buy a good book on JSF. This isn't something that you explain in a post on the single forum or even a blog entry really.

    Modern Web sites who want to imitate a "popup" without actually creating a popup tend to use a "floating div" for such purposes. Extension as Primefaces and Richfaces frameworks provide dialog box components that do just that, but do not expect to have such a thing upwards and the race in a few minutes.

  • How to remove a user name from the logon screen?

    Hi all

    I have an annoying problem and do not know how to solve.

    What happened is that used to use my laptop for the log-in het Skype account my ex-girlfriend. But in the login screen continues to display his name as mine always does.

    I used different registry cleaners and uninstalled and reinstalled Skype and had no results.

    How can I remove users on the logon screen?

    Thanks for all the help.

    Basically, you need to remove the folder of the account. I think the second part of this FAQ Help: https://support.skype.com/en-gb/faq/FA142/How-do-I-delete-my-profile-or-Skype-Name

    André

    If the answer was helpful, please mark with congratulations , and if the problem is resolved you can mark it with solution. This will help other users found this answer more easily. Thanks in advance!

  • How to remove links to adobe from the image viewer

    On my site, I need to post a lot of pictures. I used the flash element of the «insert' - tabs «media» image viewer
    Everything works fine, but a few first photos in the slideshow are clickable and link to the adobe homepage. How can I remove the links and do not clickable pictures. Already, I went in the window of properties of flash element and makes the "image links" and 'image link targets' white. I don't know what else to try. Help, please!
    Thank you: Tibor

    Just post once. No response means that nobody knows
    the answer...

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    http://www.projectseven.com/go - DW FAQs, tutorials & resources
    http://www.dwfaq.com - DW FAQs, tutorials & resources
    ==================

    "serestibi" wrote in message
    News:frm8qo$26V$1@forums. Macromedia.com...
    > On my site, I need to post a lot of pictures. I used the image viewer
    > flash
    > element of the 'insert' - tabs 'media '.
    > Everything works fine, but a few first photos in the slideshow are
    > clickable.
    > and link to the adobe homepage. How can I remove the links and make the
    > photos
    > not clickable. Already, I went to the flash element properties window and
    > fact
    > the "image links" and 'image link targets' white. I don't know what else
    > to
    > try. Help, please!
    > Thanks: Tibor
    >
    >

  • How to remove top sites page of the android version?

    How can I remove top sites and bookmarks in firefox thevandroid version

    Long-tap a bookmark, and select Remove. https://support.Mozilla.org/en-us/KB/Firefox-Android-FAQ?ESAB=a & s = Delete + Bookmark & r = 9 & As=s#w_how-do-i-Remove-a-Bookmark

  • How to remove a program completely from the computer?

    Live OneCare program is NOT in 'Add/Remove' of the population

    You can try to use the trial version of this software.

    http://www.revouninstaller.com/revo_uninstaller_free_download.html

    Good luck.

  • Oracle of the MAF: How get text of a page from the amx and show them in another page of amx

    I created a simple form using amx as below:

    <? XML version = "1.0" encoding = "UTF-8"? >

    " < amx:view xmlns: xsi =" http://www.w3.org/2001/XMLSchema-instance "

    ' xmlns:amx = ' http://xmlns.Oracle.com/ADF/MF/AMX "xmlns:dvtm =" http://xmlns.Oracle.com/ADF/MF/AMX/DVT ">

    < amx:panelPage id = "pp1" >

    < amx:facet name = "header" >

    < amx:outputText value = "Header" id = "ot1" / >

    < / amx:facet >

    < amx:facet = "primary" name >

    < amx:commandButton id = "cb1" / >

    < / amx:facet >

    < amx:facet = "secondary" name >

    < amx:commandButton id = "cb2" / >

    < / amx:facet >

    < amx:panelFormLayout id = "p1" >

    < amx:inputDate id = "i1" label = "Date" / >

    < amx:selectBooleanCheckbox id = "s1" label = "CheckBox" / >

    < amx:selectBooleanSwitch id = "s2" label = "Switch" / >

    < amx:selectOneRadio id = "s3" label = "Radio button" >

    < amx:selectItem id = "s4" / >

    < / amx:selectOneRadio >

    < amx:inputText id = "i2" hintText = 'enter something '.

    Label = "Edit Text" > < / amx:inputText >

    < amx:inputText id = "text1" label = "" enter password: ""

    secret = "true" / >

    < / amx:panelFormLayout >

    < amx:commandButton id = "c1" text = "Send" action = "getFormDetails" > < / amx:commandButton >

    < / amx:panelPage >

    < / amx:view >

    I want to extract the text entries, check box, option button, and display them in another page of amx. Please help me.

    Hello

    Here is an example.

    Assuming that there is a taskflow (as feature) which uses two activities with the name View1 and view2, with a case of View1 to View2 control flow is getFormDetails.

    code View1.AMX:

    "http://www.w3.org/2001/XMLSchema-instance" xmlns:amx ="http://xmlns.oracle.com/adf/mf/amx"

    xmlns:dvtm ="http://xmlns.oracle.com/adf/mf/amx/dvt" >. "

    value="#{pageFlowScope.TestBean.userNameValue}"/ >

    code View2.AMX:

    "http://www.w3.org/2001/XMLSchema-instance" xmlns:amx ="http://xmlns.oracle.com/adf/mf/amx"

    xmlns:dvtm ="http://xmlns.oracle.com/adf/mf/amx/dvt" >. "

    TestBean.java (which is located in pageFlowScope).

    mobile plan;

    public class TestBean {}

    private String _userNameValue;

    Private boolean _checkboxValue;

    public TestBean() {}

    }

    {} public void setUserNameValue (String _userNameValue)

    This ._userNameValue = _userNameValue;

    }

    public String getUserNameValue() {}

    Return _userNameValue;

    }

    {} public void setCheckboxValue (boolean _checkboxValue)

    This ._checkboxValue = _checkboxValue;

    }

    public boolean isCheckboxValue() {}

    Return _checkboxValue;

    }

    }

    Arun-

  • How to migrate a virtual machine from the server with DAS to another server

    Hi guys,.

    questions. 'More' essential Kit. VMotion is available

    I have 2 physical servers, two of them have DAS (not SAN Central). SO I want to migrate a virtual machine on server A to server B. is it possible in this situation?

    Or should I have versions of more expensive VMWare do?

    Thank you
    Dmitry

    You can use clone. I would close first to the bottom of the virtual machine, but a VM slowed would be very nice clone. You can also use the VMware conveter. VMware converter can make a hot clone, including synchronization of last-minute changes, stop the source machine and put under tension the clone.

Maybe you are looking for