Saving an image in Root folder of tomcat

Hello,
i have an urgent problem with saving an image in the root folder of tomcat, which I want to do without having to specify the entire path.
I have created a class, which i use as a bean in a jsp to save an image to the tomcat root folder.
If I use the following command, the image is saved:
ChartUtilities.saveChartAsJPEG(new File(
"C:/Program Files/Apache Software Foundation/Tomcat 5.5/webapps/trader/images/charts/1.jpg"), chart, 550, 260);
However, I should be doing it like this, which doesn't work and throws me an IO exception:
ChartUtilities.saveChartAsJPEG(new File("images/charts/1.jpg"), chart, 550, 260);
Cheers

Didn't we have this discussion in another thread? You can't give something urgently. It's semantically anaphoricular.

Similar Messages

  • Dreamweaver no longer asks to copy image to root folder

    Dreamweaver CS3 on Mac - whenever I copied an image from my "Pictures" folder into a HTML page, it always used to remind me to copy it into my "images" folder within the site and for some reason it no longer does that.  Does anyone know why and how I change it to ask.  I have looked through Preferences, Googled, looked in the Knowledgebase but can't find any info on this.  Thanks

    In Site > Manage Sites, Edit, Advanced tab > Local info, do you have the Default images folder set correctly?

  • Saving images in local root folder before inserting into website.

    I have a completed website and the client has sent me some images and asked me to insert them into the website, but before I do that I know that they have to be saved in the local root folder - what is the easiest way to do this?

    I have a completed website and the client has sent me some images and asked me to insert them into the website, but before I do that I know that they have to be saved in the local root folder - what is the easiest way to do this?
    If you insert an image on a page in a local site, and if that image is not currently within your local root folder, DW will prompt you to determine if you want to copy that image into your default images folder.  In this case you do.
    Alternatively, you could just copy the images into any folder within your local root using Explorer/Finder.  When you next connect to that site in DW, it will find the images there and you can use them right away.
    Murray

  • Getting error when placing jsp file in tomcat root folder

    hello experts,
    i have developed an application on netbeans 6.1 for mail.
    It is working perfect when i run it from netbeans, but when we copy those jsp files to ROOT folder of tomcat5.5 server, it is showing me following error.
    rg.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 14 in the jsp file: /Mailer1.jsp
    Session cannot be resolved to a type
    11: <%!
    12: String nam = null, email = null, suggestion = null;
    13: RequestDispatcher disp = null;
    14: public static Session sess = null;
    15:
    16: %>
    17: <%
    An error occurred at line: 38 in the jsp file: /Mailer1.jsp
    sess cannot be resolved
    35:
    36: //SecurityManager security = System.getSecurityManager();
    37:
    38: sess= Session.getInstance(props,new javax.mail.Authenticator() //if u uses getDefaultInstance it will raise Security Exception
    39: {
    40: protected PasswordAuthentication getPasswordAuthentication()
    41: {
    An error occurred at line: 38 in the jsp file: /Mailer1.jsp
    Session cannot be resolved
    35:
    36: //SecurityManager security = System.getSecurityManager();
    37:
    38: sess= Session.getInstance(props,new javax.mail.Authenticator() //if u uses getDefaultInstance it will raise Security Exception
    39: {
    40: protected PasswordAuthentication getPasswordAuthentication()
    41: {
    An error occurred at line: 38 in the jsp file: /Mailer1.jsp
    javax.mail.Authenticator cannot be resolved to a type
    35:
    36: //SecurityManager security = System.getSecurityManager();
    37:
    38: sess= Session.getInstance(props,new javax.mail.Authenticator() //if u uses getDefaultInstance it will raise Security Exception
    39: {
    40: protected PasswordAuthentication getPasswordAuthentication()
    41: {
    An error occurred at line: 45 in the jsp file: /Mailer1.jsp
    sess cannot be resolved
    42: return new PasswordAuthentication("[email protected]","ratatouille");
    43: }
    44: });
    45: sess.setDebug(true);
    46:
    47:
    48: //sess = Session.getDefaultInstance(props);
    An error occurred at line: 50 in the jsp file: /Mailer1.jsp
    Transport cannot be resolved to a type
    47:
    48: //sess = Session.getDefaultInstance(props);
    49: //sess.setDebug(true);
    50: Transport trans = sess.getTransport();
    51: Message msg = new MimeMessage(sess);
    52: msg.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
    53: msg.setFrom(new InternetAddress(this.email));
    An error occurred at line: 50 in the jsp file: /Mailer1.jsp
    sess cannot be resolved
    47:
    48: //sess = Session.getDefaultInstance(props);
    49: //sess.setDebug(true);
    50: Transport trans = sess.getTransport();
    51: Message msg = new MimeMessage(sess);
    52: msg.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
    53: msg.setFrom(new InternetAddress(this.email));
    An error occurred at line: 51 in the jsp file: /Mailer1.jsp
    Message cannot be resolved to a type
    48: //sess = Session.getDefaultInstance(props);
    49: //sess.setDebug(true);
    50: Transport trans = sess.getTransport();
    51: Message msg = new MimeMessage(sess);
    52: msg.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
    53: msg.setFrom(new InternetAddress(this.email));
    54: msg.setSubject(this.nam);
    An error occurred at line: 51 in the jsp file: /Mailer1.jsp
    MimeMessage cannot be resolved to a type
    48: //sess = Session.getDefaultInstance(props);
    49: //sess.setDebug(true);
    50: Transport trans = sess.getTransport();
    51: Message msg = new MimeMessage(sess);
    52: msg.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
    53: msg.setFrom(new InternetAddress(this.email));
    54: msg.setSubject(this.nam);
    An error occurred at line: 51 in the jsp file: /Mailer1.jsp
    sess cannot be resolved
    48: //sess = Session.getDefaultInstance(props);
    49: //sess.setDebug(true);
    50: Transport trans = sess.getTransport();
    51: Message msg = new MimeMessage(sess);
    52: msg.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
    53: msg.setFrom(new InternetAddress(this.email));
    54: msg.setSubject(this.nam);
    An error occurred at line: 52 in the jsp file: /Mailer1.jsp
    Message.RecipientType.TO cannot be resolved to a type
    49: //sess.setDebug(true);
    50: Transport trans = sess.getTransport();
    51: Message msg = new MimeMessage(sess);
    52: msg.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
    53: msg.setFrom(new InternetAddress(this.email));
    54: msg.setSubject(this.nam);
    55: msg.setContent(suggestion, "text/plain");
    An error occurred at line: 52 in the jsp file: /Mailer1.jsp
    InternetAddress cannot be resolved to a type
    49: //sess.setDebug(true);
    50: Transport trans = sess.getTransport();
    51: Message msg = new MimeMessage(sess);
    52: msg.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
    53: msg.setFrom(new InternetAddress(this.email));
    54: msg.setSubject(this.nam);
    55: msg.setContent(suggestion, "text/plain");
    An error occurred at line: 53 in the jsp file: /Mailer1.jsp
    InternetAddress cannot be resolved to a type
    50: Transport trans = sess.getTransport();
    51: Message msg = new MimeMessage(sess);
    52: msg.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
    53: msg.setFrom(new InternetAddress(this.email));
    54: msg.setSubject(this.nam);
    55: msg.setContent(suggestion, "text/plain");
    56: trans.connect();
    Stacktrace:
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:93)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)
         org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:435)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:298)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:277)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:265)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:564)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:302)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    i m unable to find out the solution,
    please help me to resolve it.
    thnaks.

    Hi shams.hq,
    I don't understand how you bother to copy an application in your server directories. It's really piece of cake to deploy with Tomcat.
    All you have to do :
    - with Netbeans, you build the project : a WAR file will be created in the dist directory of your project;
    - launch the server, if it's not running;
    - with your web browser, connect to the Tomcat Manager;
    - from there, you may upload and deploy the WAR file of your project.
    Et voilà ! Tomcat will unzip the WAR and install your classes and libraries at the right place.

  • Problems while accessing images outside the web document-root folder

    Our application runs on Oracle application server on Linux. Facing problems while accessing images outside the web document-root folder. This works with changes in global-web-application.xml by including the <virtual-directory> tag. The same change does not work when done on Linux machine. It is unable to find the image. Please help in resolving this issue.
    </locale-encoding-mapping>
    </locale-encoding-mapping-list>
    </web-app>
    <virtual-directory virtual-path="/img" real-path="/home/eposuat/" />
    </orion-web-app>
    Code in the jsp:
    <img width=700 height=700 src="/img/3.tif"></img>
    <img width=700 height=700 src="/img/WB.gif"></img>

    This is one of the least satisfactory aspects of site management in Dreamweaver, and several developers, including myself, have been pressuring the Dreamweaver team for some years to improve this. Who knows? They might eventually take notice.
    The only way to do this at the moment is to create two site definitions, one nested inside the other. Set up the site definition normally based on htdocs as your site root. Then create a new site definition based on site. Dreamweaver will nag you that it can cause problems, but it won't actually stop you from doing it. The only potential problem is with site synchronization.
    The problem with using site as the only basis for your site definition is that Dreamweaver automatically puts things like the Connections, Scripts, and other folders in the site root. So, everything ends up at the wrong level of the site hierarchy. Quite frankly, the whole thing is a bit of a pain. Dynamic site development was added to Dreamweaver only in version 6 (Dreamweaver MX), and no one had really thought through the need to store files outside the site root.

  • I am using a MacPro running OS 10.6.8. When saving an image in PS CC I no longer have a thumbnail of the image in my folder , just a generic PS symbol thumbprint. What do I do to get my image thumbnail back?

    I am using a MacPro running OS 10.6.8. When saving an image in PS CC I no longer have a thumbnail of the image in my folder , just a generic PS symbol thumbprint. What do I do to get my image thumbnail back?
    Adobe Creative Cloud

    Photoshop CC needs at least OSX 10.7-10.9
    You may be able to install and run it on 10.6.8, but as I understand it the rules for generating thumbnails has changed with Apple and CC writes them to suit the required OSX.
    Photoshop CS6 will always give you image thumbnails but CC and CC 2014 have had thumbnails generated differently for the required OSX.
    You will have to upgrade to 10.7,10.8, or 10.9
    My file saving preferences are set like this:

  • Deleting unused images in RH8 project root folder.

    Hi:
    I have a large number of unused images in the root folder of my RH8 project. Is there a way to delete them in bulk from inside of RH8? What if I deleted them from outside of RH8 through the Windows Explorer?
    Thanks,
    K

    I find the easiest way to deal with unwanted files is to run the Usused Files report from the Tools > Reports menu. This lists (surprisingly) all your unused files. You can then delete them from Windows Explorer. There you can multi-select the files to make things easier.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • Saving message to root folder

    I want to save a message to the root folder.
    In remote mode the root folder name returned by get_RootFolder method of the
    IGWAccount object corresponds to the 'From name' of the default GW account
    instead of the displayed name. Moreover, the ItemSaveMessageDraft token
    fails if this root folder name is used and the display name of the root
    folder is different from the 'From name'.
    Does anybody know any other method to save a message to the root folder in a
    TPH?
    Saurabh

    I have some basic troubleshooting steps here http://thunderbirdtweaks.blogspot.com.au/2014/02/basic-troubleshooting-for-thunderbird.html
    Please report back your results.

  • Problem in Saving Images in Single Folder in Nokia...

    I want to know how to transfer images keeping it in folder. I connect my E63 with USB.I copied my "Photos" folder from my laptop,then opened "File Manager" in Nokia PC suit. There I get 2 options. 1)Memory Card 2) Phone Memory.I select memory card, In that I opened Images Folder which is default in Memory card. I paste My "Photo" folder here in "Images" folder in Memory Card.After disconnecting my phone from USB cable when in my E63 I open Media->Gallery->Images I can see all my images of that folder differently and not in a single folder "Photos" which i pasted.So what should I do?I want all images in folder as I copied and pasted. Am I suppose to create new folder manualy in Phone's Media Gallary?But in phone when I go to Office->File Manager and browse through Images folder of Memory card, I find all images in same folder "Photos" which i pasted(copied), but in Gallary->Images i find all images seperately and not in folder. What should I do? Please help me.
    Solved!
    Go to Solution.

    Hey bro thanks for reply..My main purpose for asking this question was related to xplore only. I tried xplore on my E63. When we hide folder by xplore, we browse through file manager.I mean xplore shows Folders that are in File Manager.After Hiding folder, when I go to Gallery->Images, all the images in folder which I have made hiden, are visible,but...but....all the images are converted in one images. Let me explain, Suppose my folder contains 15 images named IM1,IM2,IM3....IM15. ok. After hiding folder in gallery when i See, there are total 15 images but all are IM1.Again when I unhide folder, its normal. I also tried ticking system option along with hide option in Attributes of xplore as someone suggested me to do so.But didn't worked. My main purpose for asking to move all images into single folder was this only.I didn,t knew you too would be using xplore or else i would have directly asked you this question only.
    Thanks.
    Message Edited by ved123 on 06-Aug-2009 11:52 AM

  • Error message: local root folder does not exist

    Greetings,
    I'm working on a MacPro 2x2.66Ghz, running DW from CS2 and
    through a strange combination of keyboard keystrokes while cleaning
    my keyboard yesterday I inadvertantly renamed my hard drive "-OX"
    from it's default. I can't seem to remember what the default name
    of my hard drive was, but i think it was simply "Macintosh". I've
    renamed it that, but on launching DW for the first time today I got
    an error message saying that "The local root folder, web_content,
    does not exist" and it gave me the option to manage sites and set
    my local root folder again. Is there a way to re-establish my local
    root folder for every site that I currently manage in one swipe, or
    do I have to go in and manually do this for each and every Site
    within my Files panel?
    Thanks for your ideas,
    Pedro

    Actually, it solved one issue but seems to have created
    another! So, at least now my Sites are all working okay with
    respect to a local root folder. But let's say I open an .html file
    by double-clicking it in the Files panel. With that file active if
    I choose Preview in Browser I get a "File Not Found" error message
    from Firefox.... even though it looks like the path to that file is
    correct.
    One thing I notice about the path in the address bar of
    Firefox is that there are 3 forward-slashes after the file: bit at
    the beginning of the line.
    For example, the page generating the error has this address:
    file:///Macintosh%20HD/Users/peter/Sites/MySite/web_content/index_vertical.html
    If you notice carefully there are 3 slashes at the beginning
    of the line. If I go to "Manage Sites" I have the settings set to
    "links relative to document" and my root folder and images folder
    show the proper locations. What have I done?
    The error message also says the following in the details
    section: Firefox can't find the file at /Macintosh
    HD/Users/peter/Sites/MySite/web_content/index_vertical.html.
    so there's a forward-slash before the hard drive.... is that
    okay?
    Thanks for your ideas!
    Pedro

  • Error:  The local root folder, ZZZZZZ, does not exist.  Please...

    Dreamweaver newest - Cloud
    Windows 7 Prof 64b SP1
    Everyday now upon firing up Dreamweaver I am getting the same error. As long as I worked on this certain site last the day before, dreamweaver of course tries to load that site upon the next startup.
    The error:  The local root folder, ZZZZZZ, does not exist.  Please choose a new local root folder
    I have typed the path myself and browsed to it many times.  When I go into the Site manager/edit site to correct this, it already has the correct path listed there.  If I just leave what is there and hit save, it doesn't work.  Once re entering is done it allows me to work on the site again. Connecting to remote/upload files and everything works fine.  I can close DW and reopen and all will be fine, for a while.    If I close it and maybe two hours later come back to work on it, DW will report that same error again on startup.
    Other editors of the site with same cloud version of DW and same site settings are not having this error. We've combed for differences.
    I've deleted the site definition altogether and recreated it.  It does not stop the error.
    I found some old references to this issue in the old macromedia forums dealing with Mac and spaces or odd characters being an issue in the local folder path. I'm on windows, but the complaints sounded so similar I decided to try a test suggested there.  Their suggestion was to create a new blank html file, without saving, add some text, select the text, use the link icon in the properties manager to drag a link out to any file in the files panel.  Upon doing so, DW creates a full local path that you can see in your html since you haven't saved the file yet.  The suggestors of this test said you should see if your "mac" and DW was having trouble with spaces or odd characters in the path.   Well the following path shows a PIPE character being created in the path by DW on my test page. 
    file:///W|/private/09 Websites/zzzzzz/index.html
    Could this be showing there is some kind of issue that I need to correct?  Or is this typical?  See the pipe character being listed after the network drive letter of W
    Our local root folder path:
    W:\private\09 Websites\zzzzzz\
    Server Settings:
         Root Directory:
    public_html/zzzzzz.com/
         Web URL:
    HypertextTransferProtocolCOLON//worldwideweb.zzzzzz.commercial/
    Any help or suggestions would be appreciated.

    Sudarshan Thiagarajan wrote:
    remote
    /home/zzzzz/public_html/zzzzz.com
    Is this how your remote setting is defined? If it is, do you have a folder called zzzzz.com on your remote server trailing public_html? Ideally public_html is your website root - index.html resides within that, unless your configuration states otherwise.
    To come to your actual question of the local root folder, yes, your file manager wont show files if the connection fails. However, accessing it depends on the permissions you have on your network drive. Have you checked that?
    I'm not sure why our guy has another folder underneath public_html. My guess is he has some company related hosted test folders for various things under there.  I can see a couple other folders under public_html while checking with filezilla. I suppose he just directed our domain to our web folder under public_html. 
    Again, two others here are using these exact same settings with no root folder errors from DW. We've checked many times and all is the same for them.
      Here are some screen grabs of the settings if this makes it more clear.
    This last one showing the remote connection address under the files/assets panel is the one that looks strange to me.  It shows a home folder / then a folder with our site name / then public_html / then our sitename.com .    Seems convoluted to me.  But it works for everyone else so I'm not sure if this error I'm getting has anything to do with these settings or if there is just some old DW settings file hung up in my system that I need to find and delete or what.
    Thanks for any ideas.

  • Sent messages aren't saved in the Sent Items folder in Outlook 2013

    When we send a message in Outlook 2013, a copy of the message should be saved in the Sent Items folder by default. If Outlook doesn’t save a copy of the sent message, it may be caused by any one of the following
    reasons:
    The “Save copies of messages in the Sent Items folder”
    option in Outlook is disabled.
    The save location for sent messages was changed to another folder.
    There is a custom view set on Sent Items folder, or the view on
    Sent Items is corrupt.
    Outlook Data File may be damaged.
    To resolve the issue, use the appropriate method for your situation.
    Enable the Save copies of messages in the Sent Items folder
    option
    To configure Outlook 2013 to save copies of your sent messages in the Sent Items folder, please follow these steps:
    1. Click File tab > Options.
    2. Click Mail on the left pane.  
    3. Scroll to the Save Messages section, select the check box before “Save copies of messages in the Sent Items folder”.
    4. Click OK.
    If it is the replying message that is not saving to the Sent Items folder, we need to disable the “When replying to a message that is not in the Inbox, save the reply in the same folder” option in the location mentioned above.
    If you’re using an IMAP account, please also make sure you didn’t select the “Do not save copies of sent items” in Account Settings. To check this, Please refer to the following steps:
    1. In Outlook, click File tab > Info.
    2. Click Account Settings > Account Settings, and then double-click your IMAP account to open the
    Change Account wizard.
    3. Click More Settings button.
    4. Under Sent Items heading, clear the check box before “Do not save copies of sent items”.
    5. Click OK and click Next to complete the configuration.
    Make sure there is no rule or anything else to redirect sent messages to other folders
    To check if it is caused by Outlook rules, please follow these steps:
    1. In Outlook 2013, click Home tab.
    2. Click Rules > Manage Rules & Alerts.
    3. In the rules list, check if there is any rule that applied to the sent messages may cause this issue.
    In addition, some rules may be corrupt or hidden and we cannot see them from the rules list. We need to use the MFCMAPI tool to find and delete the corrupt/hidden rules. To do this, we can use the following steps:
    1. Download MFCMAPI tool from: http://mfcmapi.codeplex.com/
    2. Start MFCMAPI tool.
    3. Click Session menu >
    Logon, select the Outlook profile you are using and click OK.
    4. Double-click the mailbox that contains the inbox rules that you want to delete.
    5. A new window will open. In the new window, expand
    Root Container or Root – Mailbox, and then expand
    Top of Information Store or IPM_SUBTREE.
    6. Right click on Inbox and select
    Open associated contents table.
    7. In the Inbox window, locate and then right-click the items that have the
    IPM.Rule.Message message class, and then click Delete Message.
    To identify a specific rule, you’ll have to select the rule in the top pane in MFCMAPI and then scroll down in the lower pane and look at the
    Property name(s) column. Find the ptagRuleMsgName property name and check the value against the rule name you were trying to delete in Outlook.
    8. In the Delete Item dialog, select
    DELETE_HARD_DELETE from the Deletion Style drop-down menu.
    9. Click OK.
    Reset the view settings on Sent Items folder
    If you accidently changed the view settings on Sent Items folder, this may cause some sent messages not visible in the folder. To check if you’ve set any view settings on Sent Items folder, please follow:
    1. In Outlook, select Sent Items folder.
    2. Click View tab from the Ribbon.
    3. Click View Settings button. If you notice the
    Reset Current View button is clickable, it means the view settings for Sent Items have been changed before.
    4. Click the Reset Current View button and then check the Sent Items folder again.
    Scan and repair the Outlook Data File
    To repair the .pst file, please follow:
    1. Find and start the Inbox Repair Tool in the following path:
    For Outlook 2013 on a 32-bit version of Windows:
    <disk drive>\Program Files\Microsoft Office 15\root\office15
    For Outlook 2013 on a 64-bit version of Windows:
    <disk drive>\Program Files(x86)\Microsoft Office 15\root\office15
    2. In the Inbox Repair tool, click Browse to locate the PST file by using the Windows file system.
    3. Click Start.
    4. After the analysis scan has completed, it will present you with a scanning report and options for the next step. Click Repair button.
    To repair the .ost file, since this type of data file is a copy of information saved on your mail server, we can just delete the OST file and restart Outlook to re-create a new one.
    For more information about repair Outlook data files, please refer to this article:
    Repair Outlook Data Files (.pst and .ost).
    If you have any comments on this topic, please feel free to post here.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Same problem here, connecting to a Groupwise (not latest) server. Whenever Mail.app 3 tries to upload/save a new messsage to the server, it would not save and completely lose the message!
    I found slightly more information by turning off the "Save to server" option for Sent and Drafts, created a new message that I saved as draft, and then tried to manually move items to the Drafts or Sent folder on the IMAP server.
    The error I received was: The message <message> could not be moved to the mailbox <mailbox>-<account>. The IMAP command "APPEND" (to <mailbox>) failed with server error: APPEND NotJunk.
    To my inexperienced eyes, it looks like the latest version of Mail changed it's default IMAP handling commands that may be incompatible with older IMAP servers. Anyone else have more insight or know how I can get back Mail.app 2.x from Tiger?

  • Moving a folder from one local root folder to another

    I've used Dreamweaver CS4 to build my website, and I've become basically familiar with the way it works. Now I'm just starting to build a second site - and I've run into a baffling problem.
    I've defined the new site in the normal way, and created the local root folder.
    I've got a folder full of image files that is currently sitting in the local root folder of my old site - I'd like to put this into the local root folder of my new site.
    This may seem silly, but I can't find a way to move that images folder from one local root folder to the other. I thought it would be a simple drag & drop move, but there doesn't seem to be a way to do this. I've moved the images folder to the desktop, from where it should be easy to drag it over the new local root folder icon in Dreamweaver and drop it in - but it doesn't work.
    Am I missing something obvious here...?

    You should be able to access your entire computer directory structure through the Files Panel in Dreamweaver.
    Click the drop down arrow next to the named site (the open site) at the top of the Files Panel and navigate up into the rest of your computer. You can then Ctrl-C (copy) the folder, re-select the name of your site (the green folders at the bottom of the directories, not in the computer structure), and Ctrl-V (paste) the folder where you want it. Contents will of course come with it.
    You could (alternately) just copy and paste it working within the computer's directory structure. Paste it into the new root folder and, in Dreamweaver, refresh the view in the Files Panel. The folder should show up fine.
    Notice that I have not been drag and dropping, though that should work with the last-mentioned technique.
    Beth

  • Itunes can't locate root folder on ext HD

    Having solved half of my problem, I started a new thread for this problem. I now have Itunes not able to find the root folder on my external hard drive (f:) I have located Itunes library in several different locations on my C:, everywhere from My Music, my documents\my music, on my F:,etc. The only place where I can actually locate and access the complete updated list of music is when I have the F: connected,under the following path: C:\Documents and Settings\all users\Documents\Itunes library\itunes music.
    How do I get the Itunes to find the path anytime I click on a particular song without having to re-enter each song? Katrina S. has been a great help getting me to this point, but I lose myself in the different threads from others. I know I am a few steps away... Please help

    No I  get the error message
    but the insert image works fine thanks
    this is the error message generated when I try to create a new folder
    thanks ed

  • How to see all image types when saving an image without selecting "all files"every time

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/951766]]</blockquote>
    Hallo, and thank you for reading this.
    I am a person who saves a lot of images online and renames them in different folders in different names like B - 34 or G - 56. I have been working with firefox 10 for quite some time and it had a pretty handy bug (I guess) where I could save an image and firefox would just save the image in it's original type (JPEG,PNG etc) while "save as type" was empty.
    It also always has shown all the image types in the folder where I save the images (except for GIF) and that helpes me quite a lot by saving me the trouble of selecting "all files" every time I save or going to the folder to rename every image.
    Now this seems to be lacking in the newest firefox versions and my question is if I can set firefox to always show me all the image file types when saving an image, instead of only showing JPEG's when I try to save a JPEG.
    Thank you for your time.

    I suspect this is a Windows problem. I am surmising the FilePicker uses the Operating System or Desktop facilities. Does Windows 7 offer any other file categories like ''images'' ?
    I do not normally use Windows 7, but may the option depend upon the directory being an indexed one, I ask after finding this thread ''Bring File types tab back'' [http://www.windows7taskforce.com/view/819]
    This question is a duplicate of [/questions/951764]
    Normally I would lock the duplicate question, but in this instance I will leave it open as it is unanswered and someone may give a better reply.

Maybe you are looking for

  • What is the wrong in this utl_file

    declare      f utl_file.file_type;      --v_str varchar2(32000);      TYPE TAB_COL IS TABLE OF VARCHAR2(30);      V_TAB_COL TAB_COL;      FILE_NAME VARCHAR2(32000);      V_LEN NUMBER;      V_TOT_SIZE VARCHAR2(32000);      V_TOT_SIZE1 VARCHAR2(32000);

  • GROUP BY in SPRY DATASET

    Hi, how can I set a GROUP BY in my Spry-Dataset? I got lots of <city> tags that sometimes contain the same city. And I dont want them all to be shown in the list only 1 time. Thanks for help, Denis

  • Purchase order field optional for Movement type

    Hi SAP friends , Please let me know the config path to make the purchase order field as optional for particular mvt types that are used in MIGO transaction to receive the overage stock or reversal of overage stock Regards, JR.

  • Problem when using IF and ENDIF in SAPScript

    Hi everyone,     I'm still new at using sapscript. I want to use IF....ENDIF but i confused how to use it in my sapscript. Here is the logic that i get from my functional designer : IF t8jvb03-ceind = 'C' THEN   <E>JIBCL_N     /* Element JIBCL_N */  

  • WS_FILENAME_GET  in a initial dynpro

    Hi. how i can to use the function to obtain the file directory WS_FILENAME_GET in a program that the inicial selection screen is a dynpro or other function for it. thanks.