Saving in USB and retrieving file problem?

My file was able to be previewed in my computer (imac). However, when file is saved in USB, and reopened, linkage to other pages and pictures were lost. How to solve this?

Check the links in your site to verify they are not absolute paths. You should be using Document Relative paths instead.
So if you see something like...
c://computer/user/site/folder/image.jpg
You'll need to fix them in DW first so they look more like
folder/image.jpg
If the site was set up correctly locally, and your links are no longer absolute paths, you will be able to save it onto a USB and have those files viewable from in IE, Firefox or other browsers.
If you are attempting to modify the USB files from DW, you'll want to create a site from them in DW first or you could end up in the same situation you were in to begin with.
Site > New Site > give it a name > for Local Root Folder, browse to the site's root folder on the USB device.

Similar Messages

  • I have a windows 7 desktop with an external hard drive setup on my home network, will i be able to access this on my home network to save and retrieve files from my mac air?

    i have a windows 7 desktop with an external hard drive setup on my home network, will i be able to access this on my home network to save and retrieve files from my mac air?

    Troubleshooting Home Sharing - http://support.apple.com/kb/TS2972

  • Whats is the easiest way to store and retrieve files using a DB?

    Hello,
    I have a web application where my users need to upload and retrieve files(.doc, .ppt. excel). I want to store them in the database instead of on the server. Anyone have any ideas on the easiest way to do this?
    Thanks,
    Danny

    Well, there's a BFILE data type-- that allows you to store essentially a pointer to a file in the database, though the file itself would be stored externally.
    A better option would be to store the data either as interMedia Text or as a B/CLOB, so all the data from the file would be stored in the file. interMedia Text gives a number of benefits if you're going to be working with the data-- i.e. searching the data, etc, but the additional work & restrictions may not be worth it if you just want to get the data in and out of the database whole.
    Justin

  • Cutting and saving individual video and audio files from a clip

    I have to cut 201 individual video and audio files for separate scenes from an 11-minute animated episode and save them as separate MP4 video and MP3 audio files. What is the most efficient way to do this?

    Without knowing more about your project, it's hard to even guess at the most efficient workflow.
    Like: Do these clips have audio or are you adding it? What format are these clips? What is the intended delivery for the 11 minute movie?
    As a general matter, one creates an event, imports clips to it. Then organizes the clips according to the needs of job, using keyword collections and ratings. Then creates a project and starts a rough cut by marking ranges in the event browser and editing to the time line. Some people start with the music, making that the primary storyline mark where they want the edit to be and cut to that.
    Upon finishing, one can choose one or more of the "destination" presets. It's possible to export Audio only or Video only or both. MP3 is one of the audio choices. Some of the presets are MP4. If you want possibly better quality and more control, export the files as master files and encode in Compressor.
    Good luck.
    Russ

  • Create folder and copy files problem

    Hello all indesign script Members
    where I work we use a permanent folder structure for an example
    a jobnumber called "123123"
    I have wrote a little interface called interface.jsx, this file is saved and located in
    123123/scripts/interface
    I want my interface to navigate two folders up
    to 123123/source/ creates  a folder called "hej" so result is "123123/source/hej"
    then I can pick from a little dialog box the folder 123123/source/a/ copy all .indd files to the folder hej (or any other folder I choose from the dialog box)
    I want the script to know the active path instead of whole locations because, we have different project numbers all the time.
    then run an extern script called hej.jsx
    the best should be also if the script could chose 123123 as default jobnumber too.
    Please could  someone help me to script this?
    /get started I am very newbie
    Thank you so much in advance
    All Adobe Members

    Hi tjacobs01,
    Thanks for reply. I didnt include main method since i dont want to make the problem looks too complicated. I called both of the methods in main. The following is the simplified class code including main method.
    import java.io.File;
    import java.io.IOException;
    public class TestClass{
    public void buildFolder(){
    File f=new File("/documents/hospital_backup");
    if(f.exists()==false){
    f.mkdirs();
    public void copyFile(String file){
    String form_cmd="cp /job_holding/hospital/" + file + " /documents/hospital_backup/"+file;
    String[] command = new String[]{"sh", "-c", form_cmd};
    try{
    Runtime r=Runtime.getRuntime();
    Process p =r.exec(command);
    BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line = null;
    while ((line = in.readLine()) != null) {
    System.out.println(line);}
    int exitVal=p.waitFor();
    System.out.println("Process exitValue:"+exitVal);
    }catch(Exception e){System.out.println(e);}
    public static void main(String[] args) {
    String dir_root="/job_holding/hospital/";
    File f=new File(dir_root);
    File[] fList = f.listFiles();
    for (int i=0; i<fList.length; i++)
    String file=dir_root+fList.getName();
    TestClass test = new TestClass();     
    test.buildFolder();
    test.CopyFile(file);

  • Broken Ftp Connection and big files problem

    I have a problem with big-files downloading.
    Does anybody know how to resume downloading using FTP-connection?
    Or how can I get bytes from FTP connected file using something like random access to avoid the restart of downloading the file?
    "InputStream" does not support "seek"-like methods.

    From RFC 959
    RESTART (REST)
    The argument field represents the server marker at which
    file transfer is to be restarted. This command does not
    cause file transfer but skips over the file to the specified
    data checkpoint. This command shall be immediately followed
    by the appropriate FTP service command which shall cause
    file transfer to resume.
    You should also be aware of RFC 959 Section 3.4.2 on BLOCK MODE transfers which is what allows FTP to REST a connection and "skip" n-bytes of a file.

  • Frontrow movie covers and avi-files problems

    I have a problem with the movie covers in Fontrow.
    I have placed every avi-file in a separate catalogue, and named the catalogue after the movie. I have also placed the movie cover in the same catalogue(preview.jpg). And when I scroll down the list of movie covers in Frontrow everything looks ok... But when I scroll back up again, the movie covers are changed to the first frame of the movie
    To get back to the covers I must re-start Frontrow,and everythins looks ok, but as soon as I scroll back up again Im back to the first frame of the movie.
    Is there something I can do to have Frontrow ignoring the first frame in the avi-file and always show the preview.jpg??

    Varlinge,
    I'm experiencing simular behaviour.
    Frontrow alternates (5 sec) between "preview.jpg" and the "movie.avi" file.
    Did you manage to find a solution / workaround?
    Marco.

  • PHP 5.0.4, php apps and zip file problems

    I use various opensource web apps that allow for files to be uploaded in zip format. The app then unzips the files and does what it needs to do with them. ie: Gallery2 uploading photos that are zipped up and placing the enclosed photos into the gallery.
    Anyway, this was working very well with the base install of OS X Server's PHP4.? and Apache 1.4.3
    I upgraded to PHP 5.0.4 using Entropy PHP (recommended by another OS X Server admin). Anyway, I lost the ability to handle the zip files. I am unsure what to look for.
    phpinfo() shows the following about compressed files:
    Configure Command
    './configure' '--prefix=/usr/local/php5' '--with-config-file-path=/usr/local/php5/lib' '--with-apxs' '--with-iconv' '--with-openssl=/usr' '--with-zlib=/usr' '--with-mysql=/Users/marc/svn/entropy/php-module/src/mysql-standard-*' '--with-mysqli=/usr/local/mysql/bin/mysql_config' '--with-libxml-dir=/usr/local/php5' '--with-xsl=/usr/local/php5' '--with-pdflib=/usr/local/php5' '--with-pgsql=/Users/marc/svn/entropy/php-module/build/postgresql-build' '--with-gd' '--with-jpeg-dir=/usr/local/php5' '--with-png-dir=/usr/local/php5' '--with-zlib-dir=/usr' '--with-freetype-dir=/usr/local/php5' '--with-t1lib=/usr/local/php5' '--with-imap=../imap-2002d' '--with-imap-ssl=/usr' '--with-gettext=/usr/local/php5' '--with-ming=/Users/marc/svn/entropy/php-module/build/ming-build' '--with-ldap' '--with-mime-magic=/usr/local/php5/etc/magic.mime' '--with-iodbc=/usr' '--with-xmlrpc' '--with-expat-dir=/usr/local/php5' '--with-iconv-dir=/usr' '--with-curl=/usr/local/php5' '--enable-exif' '--enable-wddx' '--enable-soap' '--enable-sqlite-utf8' '--enable-ftp' '--enable-sockets' '--enable-dbx' '--enable-dbase' '--enable-mbstring' '--enable-calendar' '--with-bz2=/usr' '--with-mcrypt=/usr/local/php5' '--with-mhash=/usr/local/php5' '--with-mssql=/usr/local/php5' '--with-fbsql=/Users/marc/svn/entropy/php-module/build/frontbase-build/Library/ FrontBase' '--enable-openbase_module'
    Registered PHP Streams
    php, file, http, ftp, compress.bzip2, compress.zlib, https, ftps
    BZip2 Support Enabled
    BZip2 Version 1.0.2, 30-Dec-2001

    I wish I could be as optimistic about your configuration, you have/had more than two issues, even after building a PHP that would work for you it had to be reconfigured to obtain optimal performance.
    I noticed other errors in your logs but since they weren't specifically related to your issue with zip or PHP running properly I place a low priority on them and ignored them.
    I eventually found the build issue with the entrophy PHP however Mark wasn't interested in the fix since it basically performed the majority of the tasks that were expected and everything else was considered experimental with no real support provided.
    You did get a better PHP built in the ADE (Apple Developer Environment) targeted specifically for your CPU (although they are universal binaries) and I included some modules I wrote myself that provide some (IMHO) key functionality for a production web service like scanning uploaded files for viruses and the ability to generate RRDTool graphs natively without slowing the process down by having to rely on external resources.
    While I have thoroughly tested the modules I wrote, I have not had the time (or the help) to write proper documentation for them so I might later provide some sample PHP scripts since they are fairly simple to implement.
    The biggest problem I saw was that you had a lot of nice toys but none of them were designed to work smoothly together and the entrophy PHP is a good alternative for someone who needs more than what apple provides but isn't capable of generating something that integrates well in the environment.
    Also to note, the entrophy (or Server Logistics) PHP is an all-purpose/general-purpose solution and isn't ever going to be optimal for any specific architecture due to the build process which is why the one I provided works significantly better, it was built specifically for both architectures individually then combined into a single binary giving you the ultimate performer for either architecture without sacraficing performance or degrading functionality.
    I tend to use as much Apple provided software as I can since it makes no sense to me to build and install any software that is already available and built specifically for the environment other than to waste disk space, freetype is a good example, any that is provided will never include the same features and functionality as the apple provided installation yet all PHP makers seem to build the basic bare-bones freetype and build their PHP off of it expecting to achieve the same feature-rich functionality which it clearly isn't capable of.
    They also include a lot of features which are never used and I have removed and/or substituted some of these in an attempt to provide a more usefull set of features and functionality and I include a very complete pear installation which also contains just about every feature and functionality you would ever require without providing anything that that would be considered fluff.
    I've been watching the performance of the installation for a couple of days now and I'm more than satified that it's a solid performer for you so smile and enjoy, santa was nice to you this year.

  • Saving XL Reports to Excel file problem

    Dear Experts,
    I have generated a report with XL Reporter, and I save it to disk. However, when I open up the Excel file in another PC that does not have SAP Business One and XL Reporter installed.
    The Excel file content was not displayed, all that was shown are the XL Reporter formulae..etc.
    How can I save the Excel file to disk so that I can display the file properly (with report values, not xlreporter formula) in a PC with no XL Reporter installed?
    Warmest Regards,
    Chinho

    Hi
    We had a problem with reports generated in Excel 2003 and being viewed in Excel 2007. There is a file excel.exe.config which needs to be dropped into: \Program Files\Microsoft Office\OFFICE12 on the machines that need to view the spreadsheets.
    I cannot remember where this file came from but it may cure your problem. It must be on the SAP site somewhere.
    Hope this helps.
    Regards
    Stewart Clark

  • Save and dependant files problem

    hi
    when i press f12 to see in the browser i get the "put
    dependant files" dialogue. why is that and how can i turn it
    off?

    Hi,
    I had that problem when I was working on a website at school
    using a mac but when I used it at home on a pc it was fine. Im not
    sure if this will work for you (it did for me) I just moved the few
    pages into a new folder and redefined the site. It worked for me im
    not sure if it will work for you.

  • Saving for web and devices scaling problem

    Hello,
    Whenever I try and save a 'larger' PSD by slicing it, and saving it for web and devices It always seems to 're-size' it and limit me to a certain percentage such as 70%.
    For the projects I'm working on - I NEED the width to remain at 750 pixels - rather then 70% or even 40% of that - and it won't allow me to change it back to 100%.
    I understand the JPG image will be large - but is there anyway I can turn this setting off? It only seems to be happening since I got Photoshop for creative cloud...
    Thanks!
    Andy

    Because you are slicing, the remaining portion could be a spacer image(s). If you don't need slicing which is used for creating multiple images cut out of the original to allow for clicking to a URL. Then I would advise finding another route.
    Even though you can get a warning the image is too big, there is a possiblity that save for web will still work just fine for that image.
    If not then you can do the work your self, by duplicating the image then either reduce the size of the image with image>Image Size...  or crop the image using the crop tool. (the reason for the duplicate file is a precaution to make sure you don't accidently save the reduced file to the original and therefore throwing out data.)
    That said, you could also use the image processor which can save in psd, jpg, and tiff. It can also be used to reduce the image size. The beauty of image processor is that it can work on single files or a folder of images. The new images will be placed in a new folder with the name of the format and will be located in the same folder as those it is processing.
    Another option is to use camera raw. Since camera raw can load tiff and jpg images (Photoshop CC can also load png files) you can use camera raw to crop images the crop is stored in the metadata therefore the crop is non-destructive. Allowing you to uncrop at any time you choose. If you have photoshop CC you can also use camera raw as a filter which means any layer or all layers in your photoshop file can be edited in camera raw allowing non-destructive crops.
    As you can see with photoshop there are multiple ways to accomplish the same thing, some easier, some quicker some more accurate and they will fall into either a destructructive or non-destructive process.
    So hopefully all this information does not confuse you any as it is meant to help provide alternative approaches to your issue.

  • Photoshop CC Camera RAW and 32bit files problem

    The new Camera RAW from Photoshop CC has problem with 32bit EXR,HDR files when camera calibration is set to 2012 mode. Very bright tones like specular highlights are flattened and there is no possibility to bring them back. Old modes (2010, 2003) are working fine.

    Photoshop CC camera raw 8.5 where is the fill light and recovery buttons
    Hi Teresa, you may have worked this out already? but i just downloaded Photoshop CC and I too used the recovery and fill light buttons and couldnt see them in the raw processing window... HOWEVER!! i did some research and they are available!! YAY, you can toggle between the latest and the older layout... and the recovery and fill optoins ARE  there... the link explains it... but when you open some raw files... on the right you should see a little camera - camera calibration button when you click on there the first drop down PROCESS - change to 2012 mode and then click back to the BASIC processing wheel and they will be there... cheers Danni

  • Saving 3d objects and retrieving back

    I'm using XMLEncoders ....
    its working fine for simple datatypes..but when I tried for Java3D objects.....
    its not saving.....
    For eg :-
    I've variable defined in my class Point.java
    private Point3d first;
    public Point()
    public Point(Point3d f)
    first = new Point3d(f);
    //then get and set methods.....
    public Point3d getFirst()
    return first;
    public void setFirst(Point3d m)
    first = new Point3d(m);
    now the main....when I'm trying to write the Point3d object
    using XMLEncoder.....its internal co-ordinates are not saved
    I mean...first.x,first.y.first.y......
    although I've set these values before writing the object...
    XML file generated says :-
    <void property="first">
    <object class = "javax.vecmath.Point3d>
    </void>
    I've also tried to create a class MyPoint3d.java which extends Point3d and defined getX(),Y,Z and setX(),Y,Z there....and my class Point.java extends MyPoint.java but in that case xml file which is coming is :-<void property="first">
    <object class = "MyPoint3d>
    <void property="x">
    <double>10</double>
    </void>
    same for y and z
    </object>
    </void>
    </void>

    Hi
    This is not an answer, but was wondering how succesful your attempts to use XML Encoder and Decoder were.
    I am about to impliment the xmlencoder on a large java3d scengraph, is it possible to use xml with the top branch group and expect it to save from there?
    Any advice would be greatfully recieved.
    Thanks
    PJ

  • Saving an image and data file

    Am am current developing a program similar to the one below using an elvis module.
    I am trying to save am image of the graph but, the save image window keeps popping up because of the loop.
    I just want to be able to click a button and then save the image to a file without the save window popping up every time. 
    Attachments:
    conor.vi ‏57 KB

    Hi cdwyer,
    In your second example's block diagram, you need to have the save button terminal and the associated case structure within your main loop, otherwise the button/case structure is only read/executed the one time.
    An additional tip: When saving "computer graphics", like LabVIEW panels or diagrams, it's nearly always better to save them using the PNG format. PNG format is both compressed (small file sizes) and yet also "lossless compression" (no image degradation) - also it's usually preferable to use true colour (24 bit colour depth).
    JPEG file type is a "lossy" type of compression that is designed for photographics - it will cause blurring and colour distortions when used with computer graphics.
    Mark.
    P.S. Worth a few star ratings?
    Message Edited by Mark H on 02-02-2006 12:11 PM
    Attachments:
    example2 modified.vi ‏72 KB

  • J2ee1.4 and log file problem

    Hello all,
    I am running J2ee1.4 on Win 2000 Pro. I have 2 problems:
    1) The server.log file becomes too big even I set its size. Seem like it does not rotate when the limit size is reached. (I set it for 2MB)
    2) Under Logging tab, I enabled the option "Log messages to standard error", but when I restart the server It cannot start the server1 instance.
    Can anyone please help me on this. I would like to see messages on standard output screen and I do not want the log file take all my hardrive space. Thank you so much!

    Thank you for responding. When I enable the option "Log messages to standard error" and restart the j2ee1.4 server I got the following message:
    Starting Domain domain1, please wait.
    Log redirected to C:\Sun\AppServer\domains\domain1\logs\server.log
    Subprocess timed out after 600000mS
    CLI156 Could not start the domain domain1
    Press any key to countinue...
    When I look at processes under Window Task Manager, java.exe and javaw.exe is running. At the end, I cannot start it in "verbose" mode. Is there any other thing I need to do beside enable the "Log messages to standard error" ?
    I am appreciated any help.

Maybe you are looking for

  • Event Triggers not getting executed

    I'm having following code in beforeData(PLSQL) event trigger: ADCPackageName.MethodName There is no such package in database, even my report works fine and publish data without any error. Is there any configuration for enabling event triggers. I didn

  • Duplicated Restricted Key Figures?

    My queries for the Sales Overview Cube (0SD_C03) have "duplicated" Restricted Key Figures. Neither myself nor my query designer has created them. Example: Z0COST_1 Z0COST_2 Z0COST_3 Z0COST_4 Has anyone else encountered this problem? Thanks in advance

  • Just bought a season, cant open iTunes any more... Help?

    I just bought Season 1 of It's Always Sunny in Philadelphia, but while they were downloading, one of them didn't start, and when I said "check for purchases" it didn't do anything. So I decided to quit because it would prompt me to resume the downloa

  • How can I tweak my Spry Menubar? What are the limitations

    Hi guys, bit of a beginner here but I am getting on with Dreamweaver. I'm completely competent with computers as long as it's in a GUI, but I do know some basic HTML, know how the .css works and how the program works generally. I've made a really nic

  • Novatel Merlin XU870 no longer supported under WWAN?

    10.7 Lion just installed, but the above seems stuck at the "initializing" stage once plugged in. Any ways of getting round this? Cheers