Trial Photoshop Download is Corrupt - Doesn't Work

I have repeatedly tried to download the photoshop trial from adobe however the installation fails with an error message "a problem occured while extracting some files.  Check available space on your computer and the write privileges"
Space and priviledges are not the issue. I am running as administrator on Vista with over 100gb free.  The issue is the file on the server seems to be corrupt.  If I manually use 7zip to explore the archive it tells me some of the files it holds are corrupt.
Annoyingly I have wasted a nearly 5gb of my 10gb monthly bandwith just to repeatedly download these files, thinking that perhaps somehow the files were corrupted in the download process and thus trying again, but I get the same result.  Never had a download issue while downloading from MSDN on Microsoft, where I regularly and reliably download much larger, multigigabyte files, e.g VS2010, Win7.  Pretty sure this is not my internet connection.
What doesn't work are two downloads -
Photoshop_12_LS1.7z is 1,026,293,791 bytes and is corrupt
DesignPremium_CS5_LS1.7z is 3,052,655,417 bytes and is corrupt
I did download photoshop elements (900mb) sucessfully.
Please advise.
Regards
  Ewart.
+64 9 636 4728

Thanks for the link to your website.    I don't think there are any issues based on your websites info, but I re-cleaned my system with CCleaner just in case.  I also tried a seperate clean machine with a different operating system (win7 instead of vista).  Same problem.
I initially did use WinRar which reported that error, hence I switched to 7zip because I figured it was zipped in that and therefore obviously more likely to work, but both show an error.
I would also doubt the archives are damaged on the server or in download however they just don't work (for me)
Regards
  Ewart.

Similar Messages

  • Adobe Photoshop Elements 12 Editor doesn't work anymore on my Mac Pro...

    Adobe Photoshop Elements 12 Editor doesn't work anymore on my Mac Pro, running Mac OS X Yosemite 10.10.2. I don't know why, because Photoshop Elements has always worked properly before today.
    Quite disappointing. I installed the application in May, 2014, downloading it from the App Store, and now I would like to re-install Photoshop Elements.
    Can you help me, please?

    Command + shift + alt... and it works again! Thanks a lot.

  • Realplayer "Download this Video" doesn't work on Firefox

    Realplayer "Download this Video" doesn't work on the latest vesrion of Firefox

    I upgraded Firefox from the latest to the latest. I have all the current flash plugins and reverted to RealPlayer 15 because I'd lost all my thumbnails in Windows explorer with RealPlayer 16.
    Funny how RealPlayer 15 works fine with Internet Explorer and not Firefox. Everything worked very well up until this current cycle of continuous upgrades with FF and the addons. Two upgrades ago (on everything) everything worked perfectly. Now, everything is questionable.
    Believe me, I have tried everything, every combination to fix this without something else going haywire and it can't be done at this point.
    If I want to download vidoes in RealPlayer I use Internet Explorer 8, for everything esle I try to use Firefox, but quite frankly it's slower than Internet Explorer.

  • In photoshop CS5, Brush tool doesn't work on an adjustment layer

    In photoshop CS5, Brush tool doesn't work on an adjustment layer

    I Created an adjustment (Curves) layer and did the curves adjustment.  Then I did an Edit Fill (Normal Mode, 100% Opacity and Use: Black).
    I then try to use the brush tool, but it doesn't work.  I've done this hundreds of times before and suddenly it's not working.  Rebooted the system, but that didn't help.
    I know how to do a screen shot, but it doesn't paste onto this screen.  How do I get that to you?
    thanks for your help

  • Photoshop PlugIn error installation doesn't work !

    Download a PlugIn for Adobe Photoshop, in description stand PS CC / CS6 but Plugin doesn't work with CS6 ... error message coming: Photoshop 13,0 or newer need, my actually version is 13.06 but every try the error messager is coming.
    The app is "Beauty Retouching Kit"

    When booted from the Tiger DVD, open Disk Utility from one of the menues at the top. Check that your iMac's hard drive is healthy (don't repair permisssions, but repair disk).
    Exactly when does the system freeze? Do you get to choose any install options, like archive and install? When upgrading from 10.2.8 to 10.4, you should do an Archive and Install.
    Check out the following thread for tips about upgrading Mac OS X:
    http://discussions.apple.com/thread.jspa?messageID=607363
    Good luck

  • L have to have Quicktime loaded to import video to Photoshop CS4 but it doesn't work. Does anyone know why??

    Hello there
    Can anyone tell me how to import video into Photoshop CS4 as l was told to download Quicktime 7.1 or later but this hasn
    not worked. l have read that it is probably that l have not got the right codex but which one is it......If you have an idea or could point me in the right direction this would be really helpful...
    many thanks
    seannybro

    Many Thanks for the reply, Maybe l didn't word it correctly as l've been searching for days now for a solution,sorry, but l have just found out while watching tutorials on a education program that you can actual edit each frame in a video in Photoshop by importing the video into it. In these tutorials they said you have to download Quicktime 7.1 or later in order for this to work and then you can go through every frame of your video and change it, draw on it, do mainly anything you what, basically what you can do on a photo you can do with a video. It works with one of my AVI,files but not on any of my others or on any of my MOV. files. l just get a white screen the video is there in the AVI but l can't get MOV. to import. In AVI format it shows no pictures but it is there in the time/animation dilation and l was wondering does anyone know if l need to upload a new codec for it to work or have to switch or activate something for it to work on quicktime......but l have found others with the same problem but there all say upload a new codec but which??
    any help would be really appreciated
    Seannybro
    (If your wondering how too try changing your workspace from ESSENTIALS to VIDEO the icon is in the right hand corner near the close down button in Photoshop and double click on the grey interface (a photo uploads) to get to upload your videos from files then you should be able to upload from there....Import in the file menu doesn't work...hope this helps you. If it works for you then l must be going wrong somewhere....enjoy:)

  • File download via servlet doesn't work with IE via https

    I have a URL from a jsp page which points to a struts action servlet. This works with firefox via http and https. With IE it works via http but it doesn't work via https. The error message I get is "Internet Explorer cannot download ...File_name.doc from Server_name.
    Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
    Here is my code.
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              String attachmentURL = AppSettings.get("EAIAttachmentURL");
              String encodingScheme = AppSettings.get("EAI_encoding");
              String filename = request.getParameter("URL");
              String fileStr = URLEncoder.encode(filename, encodingScheme);
              fileStr = fileStr.replaceAll("\\+","%20");
              URL targetURL = new URL(attachmentURL + "/" + fileStr);
              URLConnection connection = targetURL.openConnection();
              connection.setDoInput(true);
              connection.setDoOutput(false);
              connection.setAllowUserInteraction(false);
              BufferedInputStream attachmentStream = new BufferedInputStream(
                        connection.getInputStream());
              * Setting the content disposition filename, so that the
              * attachment preserves the original filename
              response.setHeader("Content-Disposition",
                        " attachment; filename=" + filename);
              if (connection.getContentType() != null) {
                   response.setContentType(connection.getContentType());
              else {
                   response.setContentType("application/octet-stream");
              response.setContentLength(connection.getContentLength());
              response.setHeader("Pragma", "public");
              response.setHeader("Cache-Control", "public, max-age=-1, must-revalidate");
              if ( connection.getContentEncoding() != null ) {
                   response.setHeader("Content-Encoding",
                             connection.getContentEncoding());
              BufferedOutputStream responseStream = new BufferedOutputStream(
                        response.getOutputStream());
              byte[] buffer = new byte[4096];
              int bytesRead;
              try {
                   while ((bytesRead = attachmentStream.read(buffer)) != -1) {
                        responseStream.write(buffer, 0, bytesRead);
              } catch (Exception e) {
                   log.error("AttachmentProxy error: " + e.getMessage());
              } finally {
                   if (attachmentStream != null) {
                        attachmentStream.close();
                   if (responseStream != null) {
                        responseStream.flush();
                        responseStream.close();
              return null;
    There is a bug with IE when downloading via https according to Microsoft support site. Refer to http://support.microsoft.com/default.aspx?scid=kb;en-us;812935
    According to this bug, I have set the response header - "pragma" to public and "cache-control" to public. I've also unchecked the Do not save encrypted pages to disk setting in IE Options, Advanced tab.
    Has anyone come across this problem or a similar problem. Any help is appreciated. Thanks.

    I have a URL from a jsp page which points to a struts action servlet. This works with firefox via http and https. With IE it works via http but it doesn't work via https. The error message I get is "Internet Explorer cannot download ...File_name.doc from Server_name.
    Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
    Here is my code.
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              String attachmentURL = AppSettings.get("EAIAttachmentURL");
              String encodingScheme = AppSettings.get("EAI_encoding");
              String filename = request.getParameter("URL");
              String fileStr = URLEncoder.encode(filename, encodingScheme);
              fileStr = fileStr.replaceAll("\\+","%20");
              URL targetURL = new URL(attachmentURL + "/" + fileStr);
              URLConnection connection = targetURL.openConnection();
              connection.setDoInput(true);
              connection.setDoOutput(false);
              connection.setAllowUserInteraction(false);
              BufferedInputStream attachmentStream = new BufferedInputStream(
                        connection.getInputStream());
              * Setting the content disposition filename, so that the
              * attachment preserves the original filename
              response.setHeader("Content-Disposition",
                        " attachment; filename=" + filename);
              if (connection.getContentType() != null) {
                   response.setContentType(connection.getContentType());
              else {
                   response.setContentType("application/octet-stream");
              response.setContentLength(connection.getContentLength());
              response.setHeader("Pragma", "public");
              response.setHeader("Cache-Control", "public, max-age=-1, must-revalidate");
              if ( connection.getContentEncoding() != null ) {
                   response.setHeader("Content-Encoding",
                             connection.getContentEncoding());
              BufferedOutputStream responseStream = new BufferedOutputStream(
                        response.getOutputStream());
              byte[] buffer = new byte[4096];
              int bytesRead;
              try {
                   while ((bytesRead = attachmentStream.read(buffer)) != -1) {
                        responseStream.write(buffer, 0, bytesRead);
              } catch (Exception e) {
                   log.error("AttachmentProxy error: " + e.getMessage());
              } finally {
                   if (attachmentStream != null) {
                        attachmentStream.close();
                   if (responseStream != null) {
                        responseStream.flush();
                        responseStream.close();
              return null;
    There is a bug with IE when downloading via https according to Microsoft support site. Refer to http://support.microsoft.com/default.aspx?scid=kb;en-us;812935
    According to this bug, I have set the response header - "pragma" to public and "cache-control" to public. I've also unchecked the Do not save encrypted pages to disk setting in IE Options, Advanced tab.
    Has anyone come across this problem or a similar problem. Any help is appreciated. Thanks.

  • Downloaded iTunes video - doesn't work

    Hi,
    I am overseas and downloaded an iTunes video direct to my iPad. The download started fine but was going to take a while to download. Whe I looked back soon afer the download had disappeared, I checked the videos on my iPad, it was there. When I tried to play it, it's just a black screen, it's not possible it finished downloading.
    Any thoughts?

    First try updating the video card/driver. If it came with the PC when you bought it, goto the PC makers site. If you installed a video card AFTER buying the PC, goto the maker of the video card.
    If updating the video card doesn't work, try the steps here http://docs.info.apple.com/article.html?artnum=303706

  • Since May 9th 2012, youtube video download in Safari doesn't work

    Anyone else found that downloading music and video files in Safari by right clicking the file in the activity pane in Safari now doesn't work?
    The downloader add-ons in Firefox still fine...

    Yes, I am also having this problem but it seems to be just related to YouTube.
    Other video sites e.g. Vimeo is fine.
    Any thoughts?

  • Can't update camera raw in PSE 10- error message. Tried downloading manually but doesn't work.

    Need help updating to 6.7 RAW for my new camera for PSE 10. Update though help gives error message. Tried to disable firewall but still doesn't work.  Tried to download manually, but the program doesn't acknowledge it, could I have put it in the wrong place? any ideas?

    This has been happening all day.

  • Installation of a trial version of Acrobat XI doesn´t work

    I am trying to install a trial version of Acrobat XI, but it doesn´t work. I am a MAC user. I
    have protected word documents with the possibility to fill out answers in specified areas. Now I like to create protected pdf documents using the word document as a base. The pdf should be protected, but it should be possible to write ansers in specified areas. I think that Acrobat XI could be a solution. I like to try it out but can't install the trial version

    Hi,
    Do you get any error/warning message while installing Acrobat?
    If yes, then please share the screen shot of the error.
    Regards,
    Anand

  • Link to download payment receipt doesn't work

    When I click on the link to download my most recent Creative Cloud payment receipt, I receive the following message:
    We were unable to locate the specific transaction you are trying to access.
    I can download my October receipt without any issues.

    No response at all. Nothing. I actually created this post on accident while trying to find a way to contact their customer service. I eventually was able to create a support ticket, but it still says, Open - Pending Adobe Response and the link still doesn't work.
    Yesterday I tried to sign in and check on the ticket, but the support site threw an error.
    This situation combined with them being hacked doesn't give me much confidence in the Creative Cloud.
    Have you received a response?

  • FM 10: Downloading of trialversion doesn' t work

    Hey,
    I am from Germany. I want to download the trialversion of Framemaker 10. But that isn' t working. What can I do?
    Thanks,
    lola

    the message is "Adobe-Download beginns" but nothing is working. just this message. with the advice that i need to download the downloadmanager. but nothing is happening. i had downloaded the downloadmanager in the past. but when i tried it, i couldn t choose framemaker.

  • Lightroom 4 download button for the trial version of Lightroom 4 doesn't work

    the download button for the trial version of Lightroom 4 at https://www.adobe.com/cfusion/tdrc/index doesn't seem to work
    I have tried this on my pc and laptop both running windows 7

    leahmanzari wrote:
    Not working for me either - anybody out there listening???
    This is a user to user forum, Leah - you get whatever help you get, and be in no doubt, the problem is at your end.
    This question comes up about once every day (despite the fact that there's a fully functioning forum search facility), and the solution of using a different browser usually works fine - have you actually tried that?
    Also, ensure javascript is enabled, and turn off pop-up blockers.
    If none of these work, try downloading from Softpedia or similar.

  • Can't use trial photoshop  -  downloads but can't setup

    I have run CS4 photoshop on my Macbook Pro - but now I can't run the trial of either photoshop or dreamweaver - the error says  You can't open the application AdobePhotoshop CS4.app because it is not supported of this architecture.
    I have OSX 10.5.7 on the newest Macbook Pro - you would think I could use photoshop!
    I'm wondering if anyone knows a work around. I called apple - they say that Adobe just hasn't gotten the trials to work with the newer operating systems of OSX. If that is true it seems like bad business since photoshop is their flagship graphics program and Mac are the graphics computers.
    thx

    i am using the same os x  & recieve the same error message when try to open file after it has 'downoaded' ... all components apart from the actual cs4 photoshop app are there .... i have got elements & had CS3 on my mac with no probs so do not see how / why I can download any adobe apart from this particular program.
    Help Please!!

Maybe you are looking for