Question : Data transfer

I need to zip up a SQL server backup file, and send it via SFTP to a hosting server
Is there any way to encrypt the backup or the zipped file before i transfer it? Is it really required if i am transfering via SFTP?

Answer : Data transfer

>> <cfif IsDefined("article_id") and neq "not_present">

The second condition isn't defined properly, it should be more like

         <cfif IsDefined("article_id") and article_id neq "not_present">

>> I need something that accounts for it either being completely absent OR  
>> being defined as  being  blank

   What do you mean by "blank"?  Do you mean the value of "article_id" is
   literally the string "not_present"

   ie    <cfset article_id = "not_present">

   ... or that it's value is an empty string

   ie    <cfset article_id = "">
Random Solutions  
 
programming4us programming4us