Question : Cannot update McAfee 8.0.0

We have Mcafee 8.0i installed on our email server. Our virus definitions are 17 months out of date. I have tried updating and it keeps failing. Is there a way to update the software? Verified the repositories have the correct address for update. Can paste the log of the failed updates if necessary. Our email server also has a Symantec AV on demand scanner which is sold with the email client. This is working fine, but the McAfee product will not update. Found similar questions in the knowledgebase, but wasn't able to resolve.

Answer : Cannot update McAfee 8.0.0

No need to loop over the form variable.  The value of the form variable should be a comma delimited listed of numbers.  So you can just use the "IN" statement of the query to fetch all the values.

The cfif statement below is used in case someone didn't check any boxes, then the query would have errored, so this makes sure it just returns no records.

<cfquery name="getIt" datasource="grabdata">  
  SELECT event, dateOfCall, orc, typeOne, RepStat, synopsis, pk_id  
  FROM "tbl_phone"
 <cfif len(form.pickThis)>
  WHERE pk_id in (#form.pickThis#)
 <cfelse>
   where 1=2
 </cfif>
  order by "Date/Time of Phone Call" desc
</cfquery>
Random Solutions  
 
programming4us programming4us