I am running several shops using 2.2 RC2a and have received the following from my host (United Hosting)
Quote
Now I am in a blind panic ! Which is the best thread to read on the minimum I need to do to ensure my shops still function?
Many Thanks
Posted 05 January 2012 - 03:32 PM
Quote
Posted 05 January 2012 - 03:36 PM
Posted 05 January 2012 - 04:07 PM
Posted 05 January 2012 - 05:45 PM
Posted 05 January 2012 - 06:57 PM
Posted 05 January 2012 - 07:13 PM
Posted 05 January 2012 - 07:34 PM
Posted 05 January 2012 - 08:44 PM
Posted 05 January 2012 - 09:04 PM
Posted 05 January 2012 - 09:43 PM
Posted 05 January 2012 - 09:44 PM
Posted 05 January 2012 - 10:17 PM
Posted 05 January 2012 - 10:19 PM
Posted 05 January 2012 - 11:36 PM
Mort-lemur, on 05 January 2012 - 03:32 PM, said:
Edited by justinswa, 05 January 2012 - 11:37 PM.
Posted 05 January 2012 - 11:40 PM
Posted 06 January 2012 - 04:22 PM
Edited by Mort-lemur, 06 January 2012 - 04:22 PM.
Posted 06 January 2012 - 10:29 PM
return eregi("^https?://[a-z0-9]([-_.]?[a-z0-9])+[.][a-z0-9][a-z0-9/=?.&\~_-]+$",$url);
return ereg('^[0-9]{1,50}.?[0-9]{0,50}$', $param);
if(eregi("^$host", $line)) {
if (eregi($mail_pat, $email, $components)) {
if (eregi($user_pat, $user)) {
if (eregi($ip_domain_pat, $domain, $ip_components)) {
if (eregi($domain_pat, $domain)) {
if (eregi("<a(.*)</a", $lines[$i], $out))
if (eregi("tep_href_link((.*))", $out[1], $locn))
if (eregi('^[-a-z0-9._]+@([-a-z0-9_]+\.)+[a-z]{2,6}$',$row['customers_email_address'])) {
$keyword = ereg_replace("(,)|('s)", "", $keyword);
Posted 07 January 2012 - 11:18 AM
Posted 07 January 2012 - 11:39 AM
return ereg('^[0-9]{1,50}.?[0-9]{0,50}$', $param);
if(eregi("^$host", $line)) {
return preg('/^[0-9]{1,50}.?[0-9]{0,50}$/', $param);
if(preg_match("/^$host/", $line)) {
Posted 07 January 2012 - 11:46 AM
return eregi("^https?://[a-z0-9]([-_.]?[a-z0-9])+[.][a-z0-9][a-z0-9/=?.&\~_-]+$",$url);
return preg_match("/^https?://[a-z0-9]([-_.]?[a-z0-9])+[.][a-z0-9][a-z0-9/=?.&\~_-]+$/",$url);