• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Download "Verification Failed" error
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Download "Verification Failed" error


  • Subject: Re: Download "Verification Failed" error
  • From: Anthony Boyd <email@hidden>
  • Date: Tue, 02 Mar 2010 23:30:44 -0500

HELP!
When downloading any software from the internet/CD, the download start and when it is almost finish, it stop and the Verification Failed appears.
Can anyone help me with this issue? I have had my internet provider to come by to make sure that everything was good with the connection.


Thanks to all
Tony B

On Feb 26, 2010, at 2:00 PM, Deivy Petrescu wrote:


On 26/02/2010, at 13:10 , Richard Lake wrote:

Hi,

Without giving you the whole script and associated product data etc.. I shall try recreate an example here and explain the problem I am having in Applescript code.

set top to my readfile(a file somewhere containing <HTML> ,<head>, title, meta info etc before main content)
set bottom to my readfile(a file somewhere containing footer eg. </ BODY> and stuff below it)


I use the FindAndReplace routines to replace '||' with quote marks and replace '~~' with a linefeed; this all works fine. So what we end up with
is two variables with delimiters of \" where the quote marks are etc. and nicely paragraphed html code.


code example:

set top to my readfile(a file somewhere containing HTML head data, title, meta info etc)
set bottom to my readfile(a file somewhere containing footer eg. </ BODY> and stuff below it)


read products from csvs into corresponding arrays

set htmlfile to {}
set bodytext to ""

set end of htmlfile to top

repeat with each product in array

set bodytext to bodytext & the product as a <table> to appear in the webpage
set bodytext to findandreplace("~~", return, bodytext)
set bodytext to findandreplace("||", quote, bodytext)


	set end of htmlfile to bodytext - FAILS here

	set end of htmlfile to bottom

	at 10th product exit repeat

end repeat

write to disc

----

So now i have 3 variables, top bodytext and bottom which all contain the applescript marker for a quote mark... \"

htmlfile should contain all 3 parts together.

Now when the program reaches the line ('set end of htmlfile to bodytext') I get the message: 'Can't set end of htmlfile (html code in top) to (bodytext).'

Now I have of course used 'return htmlfile' and 'return bodytext' to ensure they are correct, but I cannot get past this 'Can set end of htmlfile...' message.

I don't really have a clue why this is happening, I thought it was something to do with the quote marks in the variables, but I even commented out the
FindAndReplace calls and still hit the error.


Richard, Beaver Promotions


Richard,
There can be many problems that prevent the text to be added at the end of the list.
Quotes can be one such problem.


However, if you are interested in text, why not use a text instead of a list

set  htmlfile to top

repeat with each product in array

set bodytext to bodytext & the product as a <table> to appear in the webpage
set bodytext to findandreplace("~~", return, bodytext)
set bodytext to findandreplace("||", quote, bodytext)


	set htmlfile to htmlfile & return & bodytext

set end of htmlfile to bottom ---> are you sure this is inside the repeat loop ?

	at 10th product exit repeat

end repeat



Deivy Petrescu
email@hidden



_______________________________________________
Do not post admin requests to the list. They will be ignored.
Automator-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden

_______________________________________________ Do not post admin requests to the list. They will be ignored. Automator-users mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
  • Prev by Date: Re: Help with Logic
  • Next by Date: Apple Timed Out Error
  • Previous by thread: Re: Help with Logic
  • Next by thread: Apple Timed Out Error
  • Index(es):
    • Date
    • Thread