Why is download time taking so long? (76 hours to go!)

downloading adobe download assistant for photoshop elements free trial and download time currently states 76 hours to go! Why is it taking so long? Help please!

Try downloading directly instead.  If you still see a problem with the time it is most likely something related to you internet service.
Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
Photoshop/Premiere Elements 13: http://prodesigntools.com/photoshop-elements-13-direct-download-links-premiere.html

Similar Messages

  • Why is downloading lion taking so long?

    I started downloading lion at 3pm and its now 830pm and its mad almost no progress, why? and if i cancel and redownload will i have to pay again?

    michellefromsutton wrote:
    I started downloading lion at 3pm and its now 830pm and its mad almost no progress, why?
    It depends on the speed of your internet connection.
    michellefromsutton wrote:
    and if i cancel and redownload will i have to pay again?
    No, you can redownload it for free again from the app store.

  • I am downloading lion from the app store and the downloading is taking a long time. also my internet stopped for a few minutes. will that affect the download content.

    i have done an online payment for the new mac os. and the downloading is taking a long time . why is it so. its been more than half a day.
    also my internet was down for a couple of minutes and so does this affect the integrity of the software and would it be corrupted.
    if the software is downloaded is corrupt will i be able to retrieve another copy or have i lost my money in thos.

    My download took about 4 hours on a 6 Mbps connection, and I noticed from the winking router light that it paused from time-to-time. The download was successful. It operated perfectly, probably because I did a clean installation rather than the simpler upgrade.

  • I,tried,using,a,trial,version,of,creative,cloud.,I,signed,up,and,started,the,download.,The ,download,was,taking,a,long,time,so,I,decided,to,cancel,it,and,buy,a,year,plan,paying,mont hly.,I,started,downloading,creative,cloud,again,but,the,download,was,inte

    I,tried,using,a,trial,version,of,creative,cloud.,I,signed,up,and,started,the,download.,The ,download,was,taking,a,long,time,so,I,decided,to,cancel,it,and,buy,a,year,plan,paying,mont hly.,I,started,downloading,creative,cloud,again,but,the,download,was,interrupted,by,my,dau ghter,by,inserting,a,usb,device,into,the,usb,port.,I,could,not,find,the,download,,I,signed ,into,adobe,and,now,it,tells,me,that,i,have,a,30,day,trial.,My,account,shows,that,I,have,p aid,my,first,monthly,installment,but,i,can,only,use,a,trial,version,,which,says,will,expir e,in,30,days.,What,can,I,do,to,get,the,full,yearly,plan,version???

    Jacobm51486856 please see Sign in, activation, or connection errors | CS5.5 and later for information on how to resolve the connection error preventing your membership from being authorized.

  • Why this Query is taking much longer time than expected?

    Hi,
    I need experts support on the below mentioned issue:
    Why this Query is taking much longer time than expected? Sometimes I am getting connection timeout error. Is there any better way to achieve result in shortest time.  Below, please find the DDL & DML:
    DDL
    BHDCollections
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[BHDCollections](
     [BHDCollectionid] [bigint] IDENTITY(1,1) NOT NULL,
     [GroupMemberid] [int] NOT NULL,
     [BHDDate] [datetime] NOT NULL,
     [BHDShift] [varchar](10) NULL,
     [SlipValue] [decimal](18, 3) NOT NULL,
     [ProcessedValue] [decimal](18, 3) NOT NULL,
     [BHDRemarks] [varchar](500) NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_BHDCollections] PRIMARY KEY CLUSTERED
     [BHDCollectionid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    BHDCollectionsDet
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[BHDCollectionsDet](
     [CollectionDetailid] [bigint] IDENTITY(1,1) NOT NULL,
     [BHDCollectionid] [bigint] NOT NULL,
     [Currencyid] [int] NOT NULL,
     [Denomination] [decimal](18, 3) NOT NULL,
     [Quantity] [int] NOT NULL,
     CONSTRAINT [PK_BHDCollectionsDet] PRIMARY KEY CLUSTERED
     [CollectionDetailid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    Banks
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Banks](
     [Bankid] [int] IDENTITY(1,1) NOT NULL,
     [Bankname] [varchar](50) NOT NULL,
     [Bankabbr] [varchar](50) NULL,
     [BankContact] [varchar](50) NULL,
     [BankTel] [varchar](25) NULL,
     [BankFax] [varchar](25) NULL,
     [BankEmail] [varchar](50) NULL,
     [BankActive] [bit] NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_Banks] PRIMARY KEY CLUSTERED
     [Bankid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    Groupmembers
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[GroupMembers](
     [GroupMemberid] [int] IDENTITY(1,1) NOT NULL,
     [Groupid] [int] NOT NULL,
     [BAID] [int] NOT NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_GroupMembers] PRIMARY KEY CLUSTERED
     [GroupMemberid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[GroupMembers]  WITH CHECK ADD  CONSTRAINT [FK_GroupMembers_BankAccounts] FOREIGN KEY([BAID])
    REFERENCES [dbo].[BankAccounts] ([BAID])
    GO
    ALTER TABLE [dbo].[GroupMembers] CHECK CONSTRAINT [FK_GroupMembers_BankAccounts]
    GO
    ALTER TABLE [dbo].[GroupMembers]  WITH CHECK ADD  CONSTRAINT [FK_GroupMembers_Groups] FOREIGN KEY([Groupid])
    REFERENCES [dbo].[Groups] ([Groupid])
    GO
    ALTER TABLE [dbo].[GroupMembers] CHECK CONSTRAINT [FK_GroupMembers_Groups]
    BankAccounts
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[BankAccounts](
     [BAID] [int] IDENTITY(1,1) NOT NULL,
     [CustomerID] [int] NOT NULL,
     [Locationid] [varchar](25) NOT NULL,
     [Bankid] [int] NOT NULL,
     [BankAccountNo] [varchar](50) NOT NULL,
     CONSTRAINT [PK_BankAccounts] PRIMARY KEY CLUSTERED
     [BAID] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[BankAccounts]  WITH CHECK ADD  CONSTRAINT [FK_BankAccounts_Banks] FOREIGN KEY([Bankid])
    REFERENCES [dbo].[Banks] ([Bankid])
    GO
    ALTER TABLE [dbo].[BankAccounts] CHECK CONSTRAINT [FK_BankAccounts_Banks]
    GO
    ALTER TABLE [dbo].[BankAccounts]  WITH CHECK ADD  CONSTRAINT [FK_BankAccounts_Locations1] FOREIGN KEY([Locationid])
    REFERENCES [dbo].[Locations] ([Locationid])
    GO
    ALTER TABLE [dbo].[BankAccounts] CHECK CONSTRAINT [FK_BankAccounts_Locations1]
    Currency
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Currency](
     [Currencyid] [int] IDENTITY(1,1) NOT NULL,
     [CurrencyISOCode] [varchar](20) NOT NULL,
     [CurrencyCountry] [varchar](50) NULL,
     [Currency] [varchar](50) NULL,
     CONSTRAINT [PK_Currency] PRIMARY KEY CLUSTERED
     [Currencyid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    CurrencyDetails
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[CurrencyDetails](
     [CurDenid] [int] IDENTITY(1,1) NOT NULL,
     [Currencyid] [int] NOT NULL,
     [Denomination] [decimal](15, 3) NOT NULL,
     [DenominationType] [varchar](25) NOT NULL,
     CONSTRAINT [PK_CurrencyDetails] PRIMARY KEY CLUSTERED
     [CurDenid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    QUERY
    WITH TEMP_TABLE AS
    SELECT     0 AS COINS, BHDCollectionsDet.Quantity AS BN, BHDCollections.BHDDate AS CollectionDate, BHDCollectionsDet.Currencyid,
                          (BHDCollections.BHDCollectionid) AS DSLIPS, Banks.Bankname
    FROM         BHDCollections INNER JOIN
                          BHDCollectionsDet ON BHDCollections.BHDCollectionid = BHDCollectionsDet.BHDCollectionid INNER JOIN
                          GroupMembers ON BHDCollections.GroupMemberid = GroupMembers.GroupMemberid INNER JOIN
                          BankAccounts ON GroupMembers.BAID = BankAccounts.BAID INNER JOIN
                          Currency ON BHDCollectionsDet.Currencyid = Currency.Currencyid INNER JOIN
                          CurrencyDetails ON Currency.Currencyid = CurrencyDetails.Currencyid INNER JOIN
                          Banks ON BankAccounts.Bankid = Banks.Bankid
    GROUP BY BHDCollectionsDet.Quantity, BHDCollections.BHDDate, BankAccounts.Bankid, BHDCollectionsDet.Currencyid, CurrencyDetails.DenominationType,
                          CurrencyDetails.Denomination, BHDCollectionsDet.Denomination, Banks.Bankname,BHDCollections.BHDCollectionid
    HAVING      (BHDCollections.BHDDate BETWEEN @FromDate AND @ToDate) AND (BankAccounts.Bankid = @Bankid) AND (CurrencyDetails.DenominationType = 'Currency') AND
                          (CurrencyDetails.Denomination = BHDCollectionsDet.Denomination)
    UNION ALL
    SELECT     BHDCollectionsDet.Quantity AS COINS, 0 AS BN, BHDCollections.BHDDate AS CollectionDate, BHDCollectionsDet.Currencyid,
                          (BHDCollections.BHDCollectionid) AS DSLIPS, Banks.Bankname
    FROM         BHDCollections INNER JOIN
                          BHDCollectionsDet ON BHDCollections.BHDCollectionid = BHDCollectionsDet.BHDCollectionid INNER JOIN
                          GroupMembers ON BHDCollections.GroupMemberid = GroupMembers.GroupMemberid INNER JOIN
                          BankAccounts ON GroupMembers.BAID = BankAccounts.BAID INNER JOIN
                          Currency ON BHDCollectionsDet.Currencyid = Currency.Currencyid INNER JOIN
                          CurrencyDetails ON Currency.Currencyid = CurrencyDetails.Currencyid INNER JOIN
                          Banks ON BankAccounts.Bankid = Banks.Bankid
    GROUP BY BHDCollectionsDet.Quantity, BHDCollections.BHDDate, BankAccounts.Bankid, BHDCollectionsDet.Currencyid, CurrencyDetails.DenominationType,
                          CurrencyDetails.Denomination, BHDCollectionsDet.Denomination, Banks.Bankname,BHDCollections.BHDCollectionid
    HAVING      (BHDCollections.BHDDate BETWEEN @FromDate AND @ToDate) AND (BankAccounts.Bankid = @Bankid) AND (CurrencyDetails.DenominationType = 'COIN') AND
                          (CurrencyDetails.Denomination = BHDCollectionsDet.Denomination)),
    TEMP_TABLE2 AS
    SELECT CollectionDate,Bankname,DSLIPS AS DSLIPS,SUM(BN) AS BN,SUM(COINS)AS COINS  FROM TEMP_TABLE Group By CollectionDate,DSLIPS,Bankname
    SELECT CollectionDate,Bankname,count(DSLIPS) AS DSLIPS,sum(BN) AS BN,sum(COINS) AS coins FROM TEMP_TABLE2 Group By CollectionDate,Bankname
    HAVING COUNT(DSLIPS)<>0;

    Without seeing an execution plan of the query it is hard to suggest something useful. Try insert the result of UNION ALL to the temporary table and then perform an aggregation on that table, not a CTE.
    Just
    SELECT CollectionDate,Bankname,DSLIPS AS DSLIPS,SUM(BN) AS BN,SUM(COINS)AS COINS  FROM
    #tmp Group By CollectionDate,DSLIPS,Bankname
    HAVING COUNT(DSLIPS)<>0;
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Why are my apps taking a long time to update both on my phone and iPad?

    Why are my apps taking a long time to update both on my phone and iPad?

    Hi ariasm21,
    Thanks for visiting Apple Support Communities.
    If the App Store on your iPhone seems unresponsive or app updates are not completing, try the steps below.
    First force close the apps using these steps:
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app's preview up to close it.
    These steps come from this article:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Next, restart your device:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Try updating an app again. If the issues persist, you may want to troubleshoot your internet connection next:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    All the best,
    Jeremy

  • Why is N-Gage taking so long??

    Why is N-gage taking so long to finish games like asphalt etc?? Happy with first access on n81 but the games I like are not available yet

    CT - do you have any of that Pixie Dust left over from last time?

  • Why is my ipad taking so long to charge now that I upgraded to ISO 7. Not happy

    Why is my ipad taking so long to charge.  I upgraded to iso7.01 and it takes forever and I am not happy

    Have you reset you iPad,or tried deleting the apps that are crashing and then opening them again.  Or closing them and reopening them. Also clear Safari and see it that helps. There have been a few other posts like yours , and I can't figure out why it happens to some ipads and not others. I have not even seen what happens with a "crash" occurs and I use mine all the time. Good luck.

  • Why is my mac taking so long to load videos

    why is my mac taking so long to load videos

    This may have something to do with your Internet connection, the size of the video you are watching or the amount of items running in your Mac at the same time.

  • I can not download firefox, taking too long. 4% uploaded, says will be another 12 hours. Computer is under 1 year old

    can not download firefox, taking too long. 4% uploaded, says will be another 12 hours. Computer is under 1 year old edit

    Step by step, how did you arrive at seeing this agreement?

  • Why are my songs taking so long to download?????

    I just bought songs from iTunes fromt he first time and they are taking forever to download. I have a 6GB ipod mini and I only have 189 songs on it. Its taken over 2 hours for 11 songs of about 2-4 min. to download. Why is this taking so long and is there anyhting i can do to speed up the process?
    Sony Vaio   Windows XP  

    Not sure what you are downloading, but it isn't a 4MB music file within 2 seconds.
    Even if you could get a true 56K speed (which does not exist) for dial-up, each 4MB file would take you 10 minutes to download.
    Most 56K modems are limited to around 40-50K at their fastest.
    Your times for the 11 songs seems about right.
    -- 11 songs @ an average of 3 minutes in length & 1MB/min = 33 MB total to download
    -- 33MB @ 56K = 1h23m
    -- 33MB @ 34K = 2h17m
    You are probably getting between 30K and 42K of real download speed from the modem.

  • Why is the game taking so long to download

    when i purchased deus ex: human revolution from the mac app store it kept saying error occured and then it started to download and now it is taking too long to download the finishing time says 6-8 hours i have tried restarting the download but it is still taking too long what should i do?

    How much RAM do you have?
    You might want to build it out to the max.
    Macs are not gaming consoles, as such are not maximized for such use. They are computers, not gaming consoles, that is not to say they can't play games. Just understand that they will generate more heat and if you are using a game that is using a high number of CPU/GPU cycles, you may have to use an additional cooling apparatus.
    All the best

  • HT1766 Why is my restore taking so long?

    Why is my iPhone 5 restore from iCloud taking so long?

    I FOUND A SOLUTION as to why the iCloud restore to my iPhone 5 was taking so long (3 days).
    It basically boiled down to my phone trying to download & restore iTunes music from my other apple id. It asked for it initially, but the tech on the phone told me I could skip it...don't skip it. My music is with one id (macbook) and my apps are with my most used id (iphone).
    I checked my phone to see if I had iTunes music waiting to download/reinstall...and there was, but it wasn't downloading. 
    On my phone, I went to settings, icloud, signed out of my most used id, signed in to my other id, downloaded that music, then signed back out.
    My phone was ready to go in seconds!
    **I highly suggest using wifi to perform your iCloud restore***
    I was on my way to the Genius Bar in the morning, but now things are resolved. I really hope this helps someone!

  • Why is my restore taking so long

    i had to restore my iphone 4. so i did. then it extracted all software and now its restoring it all back but ive literally been at this exact point for about 2 hours now and still nothing. ive been having trouble with this specific phone since i got it.
    i just wanna update my phone to ios 5 and i cant even do that cause my phone wont restore.
    please help

    I FOUND A SOLUTION as to why the iCloud restore to my iPhone 5 was taking so long (3 days).
    It basically boiled down to my phone trying to download & restore iTunes music from my other apple id. It asked for it initially, but the tech on the phone told me I could skip it...don't skip it. My music is with one id (macbook) and my apps are with my most used id (iphone).
    I checked my phone to see if I had iTunes music waiting to download/reinstall...and there was, but it wasn't downloading. 
    On my phone, I went to settings, icloud, signed out of my most used id, signed in to my other id, downloaded that music, then signed back out.
    My phone was ready to go in seconds!
    **I highly suggest using wifi to perform your iCloud restore***
    I was on my way to the Genius Bar in the morning, but now things are resolved. I really hope this helps someone!

  • Why is my shipping taking so long?

    i ordered my macbook pro 15 inch 2.2 gig for college about 2 weeks ago and have seen nothing about the product being shipped, i called up my college's book store where i ordered the computer and asked them what the problem was, to which i was told that the order was sent to apple and now you have to wait for them to ship (i was told that they had recieved the order but the person i was talking to said that nothing was showing up about the computer being shipped), why is apple taking so long to ship? is there anyway i can find out if apple has shipped?

    CT - do you have any of that Pixie Dust left over from last time?

Maybe you are looking for