Captcha image not working

Here is the link to my contact form page:  http://www.healthquestpt.com/hpc/contact.html  The captcha image isnt working and the form doesnt work.  This image is in the directory "scripts/images"
These are the options I've tried so far:
<?php $random = rand(0,3); ?>
<img src="images/img_<?php echo $random; ?>.jpg"/><br />
<input type="hidden" name="captcha_code" value="<?php echo $random; ?>" />
<?php $random = rand(0,3); ?>
<img src="scripts/images/img_<?php echo $random; ?>.jpg"/><br />
<input type="hidden" name="captcha_code" value="<?php echo $random; ?>" />
<?php $random = rand(0,3); ?>
<img src="/scripts/images/img_<?php echo $random; ?>.jpg"/><br />
<input type="hidden" name="captcha_code" value="<?php echo $random; ?>" />
I've tried moving the images from the "scripts/images" to the "images" file in the main directory.
I've tried moving the contact.html into the "scripts" file
I've tried moving the formmailer.php into the main directory.
None of the above work so  right now I have the contact.html in the main directory, the formmailer.php & images associated with formmailer in the "scripts" file and another set of the images in the "images" file in the main directory.
here is the link to the "scripts" folder:  http://www.healthquestpt.com/hpc/scripts/
Please help.

Ok den I did it but I only uploaded the index.html and the contact.html pages
heres the formmail.php code:
<?php
// dB Masters' PHP FormM@iler, Copyright (c) 2007 dB Masters Multimedia
// http://www.dbmasters.net/
// FormMailer comes with ABSOLUTELY NO WARRANTY
// Licensed under the AGPL
// See license.txt and readme.txt for details
// General Variables
$check_referrer="no";
$referring_domains="http://domain.com/,http://www.domain.com/,http://subdomain.domain.com/";
// options to use if hidden field "config" has a value of 0
// recipient info
$charset[0]="UTF-8";
$tomail[0]="[email protected]";
$cc_tomail[0]="";
$bcc_tomail[0]="";
// Mail contents config
$subject[0]="Home Physician Care Inquiry";
$reply_to_field[0]="Email";
$reply_to_name[0]="Name";
$required_fields[0]="Name,Phone,Email,Comments";
$required_email_fields[0]="Email";
$attachment_fields[0]="";
$return_ip[0]="yes";
$mail_intro[0]="The following inquiry has been made:";
$mail_fields[0]="Name,Address,City,State,Zip,Phone,Email,Comments";
$mail_type[0]="text";
$mail_priority[0]="1";
$allow_html[0]="no";
// Send back to sender config
$send_copy[0]="no";
$copy_format[0]="vert_table";
$copy_fields[0]="Name,Comments";
$copy_attachment_fields[0]="";
$copy_subject[0]="Subject of Copy Email";
$copy_intro[0]="Thanks for your inquiry, the following message has been delivered.";
$copy_from[0]="[email protected]";
$copy_tomail_field[0]="Email";
// Result options
$header[0]="";
$footer[0]="";
$error_page[0]="";
$thanks_page[0]="thanks.html";
// Default Error and Success Page Variables
$error_page_title[0]="Errors:";
$error_page_text[0]="Please use your browser's back button to return to the form and complete the required fields.";
$thanks_page_title[0]="Message Sent";
$thanks_page_text[0]="Thank you for your inquiry";
// Antispam Options
$empty_field[0]="nospam";
$character_scan[0]="Comments,Name";
$time_delay[0]="2";
$captcha_codes[0]="9C2449,EEADC8,77A585,D72838";
$max_urls[0]="2";
$max_url_fields[0]="Comments";
$flag_spam[0]="";
// options to use if hidden field "config" has a value of 1
// recipient info
$charset[1]="";
$tomail[1]="";
$cc_tomail[1]="";
$bcc_tomail[1]="";
// Mail contents config
$subject[1]="";
$reply_to_field[1]="";
$reply_to_name[1]="";
$required_fields[1]="";
$required_email_fields[1]="";
$attachment_fields[1]="";
$return_ip[1]="";
$mail_intro[1]="";
$mail_fields[1]="";
$mail_type[1]="";
$mail_priority[1]="";
$allow_html[1]="";
// Send back to sender config
$send_copy[1]="";
$copy_format[1]="";
$copy_fields[1]="";
$copy_attachment_fields[1]="";
$copy_subject[1]="";
$copy_intro[1]="";
$copy_from[1]="";
$copy_tomail_field[1]="";
// Result options
$header[1]="";
$footer[1]="";
$error_page[1]="";
$thanks_page[1]="";
// Default Error and Success Page Variables
$error_page_title[1]="";
$error_page_text[1]="";
$thanks_page_title[1]="";
$thanks_page_text[1]="";
// Antispam Options
$empty_field[1]="";
$character_scan[1]="";
$time_delay[1]="";
$captcha_codes[1]="";
$max_urls[1]="";
$max_url_fields[1]="";
$flag_spam[1]="";
// Don't muck around past this line unless you know what you are doing //
ob_start();
$config=$_POST["config"];
$debug=0;
$debug_text="";
// fix for Windows email server security
ini_set("sendmail_from",$tomail[$config]);
// email validation regular expression
$regex = "^[-a-z0-9!#$%&\'*+/=?^_`{|}~]+(\.[-a-z0-9!#$%&\'*+/=?^_`{|}~]+)*@(([a-z0-9]([-a-z0-9]*[a -z0-9]+)?){1,63}\.)+([a-z]([-a-z0-9]*[a-z0-9]+)?){2,63}$";
$header_injection_regex = "(\r|\n)";
if($header[$config]!="")
include($header[$config]);
if($_POST["submit"] || $_POST["Submit"] || $_POST["submit_x"] || $_POST["Submit_x"])
// begin global functions //
// get visitor IP
function getIP()
  if(getenv(HTTP_X_FORWARDED_FOR))
   $user_ip=getenv("HTTP_X_FORWARDED_FOR");
  else
   $user_ip=getenv("REMOTE_ADDR");
  return $user_ip;
// get value of given key
function parseArray($key)
  $array_value=$_POST[$key];
  $count=1;
  extract($array_value);
  foreach($array_value as $part_value)
   if($count > 1){$value.=", ";}
   $value.=$part_value;
   $count=$count+1;
  return $value;
// stripslashes and autolink url's
function parseValue($value)
  $value=preg_replace("/(http:\/\/+.[^\s]+)/i",'<a href="\\1">\\1</a>', $value);
  return $value;
// html header if used
function htmlHeader()
  $htmlHeader="<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=".$charset[$config]."\"></head>\n<body>\n<table cellpadding=\"2\" cellspacing=\"0\" border=\"0\" width=\"600\">\n";
  return $htmlHeader;
// html footer if used
function htmlFooter()
  $htmlFooter="</table>\n</body>\n</html>\n";
  return $htmlFooter;
// build verticle table format
function buildVertTable($fields, $intro, $to, $send_ip)
  $message=htmlHeader();
  if($intro != "")
   $message.="<tr>\n<td align=\"left\" valign=\"top\" colspan=\"2\">".$intro."</td>\n</tr>\n";
  $fields_check=preg_split('/,/',$fields);
  $run=sizeof($fields_check);
  for($i=0;$i<$run;$i++)
   $cur_key=$fields_check[$i];
   $cur_value=$_POST[$cur_key];
   if(is_array($cur_value))
    $cur_value=parseArray($cur_key);
   $cur_value=parseValue($cur_value);
   if($allow_html[$config]=="no")
    $cur_value=htmlspecialchars(nl2br($cur_value));
   else
    $cur_value=nl2br($cur_value);
   $message.="<tr>\n<td align=\"left\" valign=\"top\" style=\"white-space:nowrap;\"><b>".$cur_key."</b></td>\n<td align=\"left\" valign=\"top\" width=\"100%\">".$cur_value."</td>\n</tr>\n";
  if($send_ip=="yes" && $to=="recipient")
   $user_ip=getIP();
   $message.="<tr>\n<td align=\"left\" valign=\"top\" style=\"white-space:nowrap;\"><b>Sender IP</b></td>\n<td align=\"left\" valign=\"top\" width=\"100%\">".$user_ip."</td>\n</tr>\n";
  $message.=htmlFooter();
  return $message;
// build horizontal table format
function buildHorzTable($fields, $intro, $to, $send_ip)
  $message=htmlHeader();
  $fields_check=preg_split('/,/',$fields);
  $run=sizeof($fields_check);
  if($intro != "")
   $message.="<tr>\n<td align=\"left\" valign=\"top\" colspan=\"".$run."\">".$intro."</td>\n</tr>\n";
  $message.="<tr>\n";
  for($i=0;$i<$run;$i++)
   $cur_key=$fields_check[$i];
   $message.="<td align=\"left\" valign=\"top\" style=\"white-space:nowrap;\"><b>".$cur_key."</b></td>\n";
  if($send_ip=="yes" && $to=="recipient")
   $message.="<td align=\"left\" valign=\"top\" style=\"white-space:nowrap;\"><b>Sender IP</b></td>\n";
  $message.="</tr>\n";
  $message.="<tr>\n";
  for($i=0;$i<$run;$i++)
   $cur_key=$fields_check[$i];
   $cur_value=$_POST[$cur_key];
   if(is_array($cur_value))
    $cur_value=parseArray($cur_key);
   $cur_value=parseValue($cur_value);
   if($allow_html[$config]=="no")
    $cur_value=htmlspecialchars(nl2br($cur_value));
   else
    $cur_value=nl2br($cur_value);
   $message.="<td align=\"left\" valign=\"top\">".$cur_value."</td>\n";
  $message.="</tr>\n";
  $message.="<tr>\n";
  if($send_ip=="yes" && $to=="recipient")
   $user_ip=getIP();
   $message.="<td align=\"left\" valign=\"top\">".$user_ip."</td>\n";
  $message.="</tr>\n";
  $message.=htmlFooter();
  return $message;
// build plain text format
function buildTextTable($fields, $intro, $to, $send_ip)
  $message="";
  if($intro != "")
   $message.=$intro."\n\n";
  $fields_check=preg_split('/,/',$fields);
  $run=sizeof($fields_check);
  for($i=0;$i<$run;$i++)
   $cur_key=$fields_check[$i];
   $cur_value=$_POST[$cur_key];
   if(is_array($cur_value))
    $cur_value=parseArray($cur_key);
   $cur_value=parseValue($cur_value);
   if($allow_html[$config]=="no")
    $cur_value=htmlspecialchars($cur_value);
   else
    $cur_value=$cur_value;
   $message.="".$cur_key.": ".$cur_value."\n";
  if($send_ip=="yes" && $to=="recipient")
   $user_ip=getIP();
   $message.="Sender IP: ".$user_ip."\n";
  return $message;
// get the proper build fonction
function buildTable($format, $fields, $intro, $to, $send_ip)
  if($format=="vert_table")
   $message=buildVertTable($fields, $intro, $to, $send_ip);
  else if($format=="horz_table")
   $message=buildHorzTable($fields, $intro, $to, $send_ip);
  else
   $message=buildTextTable($fields, $intro, $to, $send_ip);
  return $message;
// referrer checking security option
function checkReferer()
  if($check_referrer=="yes")
   $ref_check=preg_split('/,/',$referring_domains);
   $ref_run=sizeof($ref_check);
   $referer=$_SERVER['HTTP_REFERER'];
   $domain_chk="no";
   for($i=0;$i<$ref_run;$i++)
    $cur_domain=$ref_check[$i];
    if(stristr($referer,$cur_domain)){$domain_chk="yes";}
  else
   $domain_chk="yes";
  return $domain_chk;
// checking required fields and email fields
function checkFields($text_fields, $email_fields, $regex)
       $error_message="";
  if($debug==1)
   $error_message.="<li>text_fields: ".$text_fields."<br />email_fields: ".$email_fields."<br />reply_to_field: ".$reply_to_field."<br />reply_to_name: ".reply_to_name."</li>";
  if($text_fields != "")
   $req_check=preg_split('/,/',$text_fields);
   $req_run=sizeof($req_check);
   for($i=0;$i<$req_run;$i++)
    $cur_field_name=$req_check[$i];
    $cur_field=$_POST[$cur_field_name];
    if($cur_field=="")
     $error_message.="<li>You are missing the <b>".$req_check[$i]."</b> field</li>\n";
  if($email_fields != "")
   $email_check=preg_split('/,/',$email_fields);
   $email_run=sizeof($email_check);
   for($i=0;$i<$email_run;$i++)
    $cur_email_name=$email_check[$i];
    $cur_email=$_POST[$cur_email_name];
    if($cur_email=="" || !eregi($regex, $cur_email))
     $error_message.="<li>You are missing the <b>".$email_check[$i]."</b> field or it is not a valid email address.</li>\n";
  return $error_message;
// attachment function
function getAttachments($attachment_fields, $message, $content_type, $border)
  $att_message="This is a multi-part message in MIME format.\r\n";
  $att_message.="--{$border}\r\n";
  $att_message.=$content_type."\r\n";
  $att_message.="Content-Transfer-Encoding: 7bit\r\n\r\n";
  $att_message.=$message."\r\n\r\n";
  $att_check=preg_split('/,/',$attachment_fields);
  $att_run=sizeof($att_check);
  for($i=0;$i<$att_run;$i++)
   $fileatt=$_FILES[$att_check[$i]]['tmp_name'];
   $fileatt_name=$_FILES[$att_check[$i]]['name'];
   $fileatt_type=$_FILES[$att_check[$i]]['type'];
   if (is_uploaded_file($fileatt))
    $file=fopen($fileatt,'rb');
    $data=fread($file,filesize($fileatt));
    fclose($file);
    $data=chunk_split(base64_encode($data));
    $att_message.="--{$border}\n";
    $att_message.="Content-Type: {$fileatt_type}; name=\"{$fileatt_name}\"\r\n";
    $att_message.="Content-Disposition: attachment; filename=\"{$fileatt_name}\"\r\n";
    $att_message.="Content-Transfer-Encoding: base64\r\n\r\n".$data."\r\n\r\n";
  $att_message.="--{$border}--\n";
  return $att_message;
// function to set content type
function contentType($charset, $format)
  if($format=="vert_table")
   $content_type="Content-type: text/html; charset=".$charset."\r\n";
  else if($format=="horz_table")
   $content_type="Content-type: text/html; charset=".$charset."\r\n";
  else
   $content_type="Content-type: text/plain; charset=".$charset."\r\n";
  return $content_type;
// end global functions //
// begin procedural scripting //
// anti-spam empty field check
if($_POST[$empty_field[$config]] != "")
  $empty_message = "<li>This submission failed and was flagged as spam.</li>\n";
// anti-spam character scan check
if(strlen($character_scan[$config]) > 0)
  $spam_message="";
  $field_check=preg_split('/,/',$character_scan[$config]);
  $field_run=sizeof($field_check);
  for($i=0;$i<$field_run;$i++)
   $cur_field_name=$field_check[$i];
   $cur_field=$_POST[$cur_field_name];
   if(preg_match("/<(.|\n)+?>/", $cur_field) || preg_match("/\[(.|\n)+?\]/", $cur_field))
    $spam_message.="<li>This message contains disallowed characters.</li>\n";
// anti-spam time delay check
if((strlen($time_delay[$config]) > 0 && strlen($_POST["time"]) > 0) || (strlen($time_delay[$config]) > 0 && (strlen($_POST["time"]) == 0 || !$_POST["time"])))
  if((time() - $_POST["time"]) < $time_delay[$config])
   $time_message = "<li>This has been stopped by the timer, and is likely spam.</li>\n";
// anti-spam CAPTCHA check
if(strlen($captcha_codes[$config]) > 0)
  $captcha_check=preg_split('/,/',$captcha_codes[$config]);
  if(strtolower($_POST["captcha_entry"]) != strtolower($captcha_check[$_POST["captcha_code"]]))
   $captcha_message = "<li>CAPTCHA test did not match.</li>\n";
// anti-spam max URL check
if(strlen($max_url_fields[$config]) > 0)
  $max_url_message="";
  $field_check=preg_split('/,/',$max_url_fields[$config]);
  $field_run=sizeof($field_check);
  for($i=0;$i<$field_run;$i++)
   $cur_field_name=$field_check[$i];
   $cur_field=$_POST[$cur_field_name];
   preg_match_all("/http:/", $cur_field, $matches);
   if(count($matches[0]) > $max_urls[$config])
    $max_url_message.="<li>This message contains too many URL's.</li>\n";
// set anti-spam flagging option
if(strlen($empty_message.$spam_message.$time_message.$captcha_message.$max_url_message) > 0 && strlen($flag_spam[$config]) == 0)
  $set_flag = 2;
else if(strlen($empty_message.$spam_message.$time_message.$captcha_message.$max_url_message) > 0 && strlen($flag_spam[$config]) > 0)
  $set_flag = 1;
else
  $set_flag = 0;
// header injection check
    $security_filter="";
if(strlen($_POST[$reply_to_field[$config]]) > 0)
  if(eregi($header_injection_regex,$_POST[$reply_to_field[$config]]))
   $security_filter.="<li>Header injection attempt detected, mail aborted.</li>\n";
  else
   $reply_to_field_checked=$_POST[$reply_to_field[$config]];
if(strlen($_POST[$reply_to_name[$config]]) > 0)
  if(eregi($header_injection_regex,$_POST[$reply_to_name[$config]]))
   $security_filter.="<li>Header injection attempt detected, mail aborted.</li>\n";
  else
   $reply_to_name_checked=$_POST[$reply_to_name[$config]];
// check domain referrer and continue
$domain_chk=checkReferer();
if($domain_chk=="yes")
  $error_message=checkFields($required_fields[$config], $required_email_fields[$config], $regex);
  if(strlen($error_message) < 1 && strlen($security_filter) < 1 && $set_flag < 2)
   // build appropriate message format for recipient
   $content_type=contentType($charset[$config], $mail_type[$config]);
   $message=buildTable($mail_type[$config], $mail_fields[$config], $mail_intro[$config], "recipient", $return_ip[$config]);
   // build header data for recipient message
   //$extra="From: ".$_POST[$reply_to_field[$config]]."\r\n";
   $extra="From: ".$reply_to_name_checked." <".$reply_to_field_checked.">\r\n";
   if($cc_tomail[$config]!="")
    $extra.="Cc: ".$cc_tomail[$config]."\r\n";
   if($bcc_tomail[$config]!="")
    $extra.="Bcc: ".$bcc_tomail[$config]."\r\n";
   if($mail_priority[$config]!="")
    $extra.="X-Priority: ".$mail_priority[$config]."\r\n";
   // get attachments if necessary
   if($attachment_fields[$config]!="")
    $semi_rand=md5(time());
    $border="==Multipart_Boundary_x{$semi_rand}x";
    $extra.="MIME-Version: 1.0\r\n";
    $extra.="Content-Type: multipart/mixed; boundary=\"{$border}\"";
    $message=getAttachments($attachment_fields[$config], $message, $content_type, $border);
   else
    $extra.="MIME-Version: 1.0\r\n".$content_type;
   // send recipient email
   if($debug==1)
    if($set_flag == 1)
     $debug_text.="<p><b>Mail would have sent flagged for spam if not in debug mode.</b></p>";
    else
     $debug_text.="<p><b>Mail would have sent if not in debug mode.</b></p>";
   else if($debug==0)
    if($set_flag == 1)
     $subject = $flag_spam[$config]." ".$subject[$config];
    else
     $subject = $subject[$config];
    mail("".$tomail[$config]."", "".stripslashes($subject)."", "".stripslashes($message)."", "".$extra."");
   // autoresponse email if necessary
   if($send_copy[$config]=="yes")
    // build appropriate message format for autoresponse
    $content_type=contentType($charset[$config], $copy_format[$config]);
    $message=buildTable($copy_format[$config], $copy_fields[$config], $copy_intro[$config], "autoresponder", $return_ip[$config]);
    // build header data for autoresponse
    $copy_tomail=$_POST[$copy_tomail_field[$config]];
    $copy_extra="From: ".$copy_from[$config]."\r\n";
    // get autoresponse  attachments if necessary
    if($copy_attachment_fields[$config]!="")
     $semi_rand=md5(time());
     $border="==Multipart_Boundary_x{$semi_rand}x";
     $copy_extra.="MIME-Version: 1.0\r\n";
     $copy_extra.="Content-Type: multipart/mixed; boundary=\"{$border}\"";
     $message=getAttachments($copy_attachment_fields[$config], $message, $content_type, $border);
    else
     $copy_extra.="MIME-Version: 1.0\r\n".$content_type;
    // send autoresponse email
    if($debug==1)
     if($set_flag == 1)
      $debug_text.="<p><b>Autoresponder would have sent flagged for spam if not in debug mode.</b></p>";
     else
      $debug_text.="<p><b>Autoresponder would have sent if not in debug mode.</b></p>";
    else if($debug==0)
     $send_copy = 1;
     if($copy_tomail=="" || !eregi($regex,$copy_tomail))
      $send_copy = 0;
     if($send_copy == 1)
      if($set_flag == 1)
       $copy_subject = $flag_spam[$config]." ".$copy_subject[$config];
      else
       $copy_subject = $copy_subject[$config];
      mail("$copy_tomail", "".$copy_subject."", "$message", "$copy_extra");
   // showing thanks pages from a successful submission
   if($thanks_page[$config]=="")
    echo "<h3>".$thanks_page_title[$config]."</h3>\n";
    echo "<p>".$thanks_page_text[$config]."</p>\n";
    if(strlen($debug_text) > 0)
     echo "<p><b><i>".$debug_text."</i></b></p>\n";
   else
    header("Location: ".$thanks_page[$config]);
  else
   // entering error page options from missing required fields
   if($error_page[$config]=="")
    echo "<h3>".$error_page_title[$config]."</h3>\n";
    echo "<ul>\n";
    echo $security_filter.$empty_message.$error_message.$spam_message.$time_message.$captcha_messa ge.$max_url_message;
    echo "</ul>\n";
    echo "<p>".$error_page_text[$config]."</p>\n";
   else
    header("Location: ".$error_page[$config]);
else
  echo "<h3>".$error_page_title[$config]."</h3>\n";
  // message if unauthorized domain trigger from referer checking option
  echo "<p>Sorry, mailing request came from an unauthorized domain.</p>\n";
// end procedural scripting //
else
echo "<h3>Error</h3>";
echo "<p>No form data has been sent to the script</p>\n";
if($footer[$config]!="")
include($footer[$config]);
ob_end_flush();
?>

Similar Messages

  • Audio captcha is not working in mac safari 5.1.7. We used below code snippet that is working in other browser like IF 7,8,9, crome and firefox. Audio refresh is also not happening. When submit Audio Captcha then jcapcha framework giving InvocationTargetEx

    Audio captcha is not working in mac safari 5.1.7.
    We used a code snippet that is working in other browser like IF 7,8,9, crome and firefox.
    Audio refresh is also not happening.
    When submit Audio Captcha then jcapcha framework giving InvocationTargetException.
    <Edited By Host>

    Audio captcha is not working in mac safari 5.1.7.
    We used a code snippet that is working in other browser like IF 7,8,9, crome and firefox.
    Audio refresh is also not happening.
    When submit Audio Captcha then jcapcha framework giving InvocationTargetException.
    <Edited By Host>

  • RH 8 Shed images not working

    1.  Shed images not working as of Nov. 12 2009

    Hi all
    Thanks for all the info - but I'm still stumped. I have tried generating my .chm
    files to the default SSL folders, manually copying all the child chms to the SSL
    folder for the master project, letting RH copy them, generating all chms to an
    external folder... no matter what I do, every time I recompile the master
    project it picks up random old stuff. I have checked and rechecked that my
    merged TOC items are to the latest child chms...
    Sometimes when I recomplie the master project, even the content in that reverts
    back to a previous version, sometimes it doesn't...
    I have looked at the Merged Files list in the hhp file, I have deleted this file
    and started my merge from scratch, I have manually deleted some paths (some
    paths are to directories on the server where any files for this project have
    long since been deleted...) directly in this file, but again every time I
    recompile the master project it picks up random old versions of the child chms (
    and the huge list of old merged files are put back in the hhp file. Even when I
    delete all chms from all locations in the folder I'm working in on my C drive,
    delete all the merged TOC items from the master project, save it, and
    recompile it, the list of old merged files reappears in the hhp file).
    Any more thoughts gratefully received:-)
    Also - I don't have a Baggage Files folder??
    One more thing... If I delete ALL the files under Merged Files in the hhp file using HTML Help Workshop, it crashes

  • Google Images not working in Safari on Iphone

    Since a while back the "images"-tab in google does'nt work on the iPhone in any of the browsers I've tried. I've searched the net to find others with the same problem but with little luck. Here's a description of the problem.
    For example I search for "dog" in google in the Safari browser, this works just fine.
    Then I press the "images"-tab and get a thumbnail view with pictures of dogs, of course.
    But this is where it all goes wrong, when touching one of the images I get an enlarged view of an image next to it. The "back to the results" and "full image" buttons dim out (without being touchable) and swiping does not work. I don't know what has caused this to stop working properly, I know its not the new iOS version though.
    HERE is a youtube video I prepared that explains the problem.
    First, is there anyone else out there with this problem?
    Second, this is what I've tried:
    - Other iPhone web browser applications, for example "Mercury", "Opera Mini", "Skyfire" and none of them works except "Dolphin" (good work).
    - Resetting any of the settings in the phone, clearing cache and such have no effect.
    - Resetting the iPhone totally, factory settings. No effect.
    - Using someone elses iPhone. I've tried on an iPhone 4 and iPhone 3S, same problems (with iOS 5.01).
    - Trying out all of the settings in google, no change.
    - Setting the google view to "classic" instead of "mobile" works of course, but that makes the site look just like on a PC or Mac and is not what I'm after.
    Third, this problem seems to just affect Swedish users from what I can tell. There would be thousands of posts about this if everyone in the world was affected by it, but so far I've seen no posts on this matter. But after searching a while I found a swedish forum site on the subject. Link (in swedish). Also, when visiting google from Sweden some form of script automatically changes the url from .com to .se. I don't know if this has something to do with it?
    Anyone know what causes this problem and how It might be resolved?
    Best Regard
    Stefan, Sweden

    Hi Stefan,
    First; this must be the most thorough error discription I have ever seen. Impressive.
    Second; yep for a couple of weeks now I've been having exactly the same problems as you describe. One other thing that I've noticed, is that for me, the 'word suggestion drop down list' or whatever it's name is, no longer works. More specificly:
    I open Safari in my iPhone, surf to Google image search and type for example "dog" in the search field. Below the field, I now get a list of suggested words or phrases that I think is based on the most popular searches. For me, the first suggestion in this list is "dogo argentino" (a specific and popular breed of dogs). When I tap on the words "dogo argentino", the search field normally would switch input from "dog" to "dogo argentino" AND starts the image search automatically. However, since the problem showed up, when I tap on "dogo argentino" the input field is not affected (still reads "dog") and I would have to type "dogo argentino" manually and hit "search".
    I use a Swedish iPhone 4S (5.0.1 (9A406)) in the Telenor network. I also have tested the same possible solutions that you describe in your post, but with no luck.
    All the best,
    Ingo

  • Why is code to get center of image not working?

    Hey there. I have am trying to establish the center of the imags that load so that I can put them in the center of the stage. I am doing this as each image is a different size.
    Here is the code i have gotten to work before but its not working now and I have been searching to find what I have done wrong with no luck. : (
    Would you look it over and maybe you will see what I am doing wrong?
    public function placePicture(e:Event = null):void {
         rawImage = imageData.image[imgNum].imageURL;
         lastImageIndex = imageData.*.length() - 1;
         imageLoader = new Loader;
         imageHolder = new Sprite;
         imageLoader.load(new URLRequest(rawImage));
         imageLoader.x -= imageLoader.width/2; //this should set the image to the center no?
         imageLoader.y -= imageLoader.height/2;
         imageHolder.x = 640; //this is the center of the stage
         imageHolder.y = 100;
         imageHolder.addChild(imageLoader);
         masterHolder.addChild(imageHolder);    
    The result when I publish is the picture comes on stage but the top left corner goes to 640 instead of the center of the image going to 640.
    I tried several variations of this all with the same result:
    imageLoader.x = -1*imageLoader.width/2;
    I tried using setRegistrationPoint with the following tutorial: http://flashscript.ca/set-registration-as3.php
    and I tried doing all of the above by inserting the loader into a sprite and then applying the code to the sprite and then adding that sprite to another sprite and putting that at 640 and not inserting it in another sprite and trying to straight up put the existing sprite at 640 (hopefully that all makes sense). And I have tried to put it to width/3 and nothing different happens.
    If you have any other ideas or can see what I am doing wrong I would really be gratefull for some tips! : )
    Thanks for any help!
    oh, and I am getting no errors on this.

    the image's width and height are not available until loading is complete.  ie, use a complete listener/listener function.

  • Anychart save as pdf/image not working

    A while ago I posed this question when the right click, save as stopped working on my APEX charts
    Apex charts - right click, save as image (not responding)
    The problem resolved when anychart.com was back up, but the problem is occurring again and I wonder if they've moved their php files.  Not even in Hilary's sample app is working. We think this happened within the last month.
    After choosing save as image and a location, the "saving" just keeps spinning.
    Most anychart google results at the moment seem to revert to the same landing page, and webcached copies refer to locations that no longer exist.
    I wonder with post anychart7 cleanup, have they moved the supporting php files? For instance, this location no longer exists
    http://www.anychart.com/products/anychart/saveas/pdf/PDFSaver.php
    A workaround is to use a local copy of the php file with custom XML
      <settings>
        <pdf_export file_name="mychart.pdf" use_title_as_file_name="true" url="/i/AnyChart4_SaveAsPDF_php4/PDFSaver.php" image_type="jpg" />
    But I only have the PDFSaver, not the AnyChartPNGSaver.php
    This file no longer exists either:
    http://anychart.com/products/anychart/docs/users-guide/export_image_scripts/php.zip
    Does anyone know where I can source the png saver php, or suggest another workaround? Or have any other information on this issue.
    An email to [email protected] back in 2013 got no reply.
    APEX 4.2.0
    Scott.

    Hi Scott,
    So, if i understand properly, making this change
    <settings><pdf_export file_name="mychart.pdf" use_title_as_file_name="true" url="/i/AnyChart4_SaveAsPDF_php4/PDFSaver.php" image_type="jpg" />
    will avoid atleast PDF issue? And as i dont have privileges to install or deinstall anything on /i/ folder, still this will work and URL path will remain same for each installation?
    Adding another question, as you said "it sends base64 information when converting to PDF", does it mean i will not be able to convert to PDF, if i am using intranet and PC's not accessible to internet?
    Thanks
    Sunil Bhatia

  • Swap Image not working Except in IE

    I am working on a class project, and we've just learned how
    to do "swap image" on rollover. It's working beautifully when in
    IE, but in Firefox it's not working at all and in Opera it's
    working strangely (only when on the "edges" of the flash text not
    when rolling over the flash text) Any ideas as to the problem? The
    flash text rollover works (changes colors), but the "bubbles" are
    supposed to swap images. BTW, I thought it might be a setting in my
    browser disabling something, but the swap image on classmates'
    sites show up fine.
    http://198.86.244.3/drsimpson/WEB140/drsimpsongallery/
    Thanks

    I can't see what is the problem. :-(
    Try replacing your flash buttons with plain gif images, it
    works the same way and you will have much less code on your page. I
    don't think the problem is there but you can always try.

  • Splash image not working in JNLP

    Hi all...
    Splash image is not get displayed in my Application..
    Here is my JNLP file.
    <jnlp spec="6.0+" codebase="http://localhost:8080/MyProject/">
      <information>
        <title>MyProject1.0</title>
        <vendor>My Company.</vendor>
        <homepage href="null"/>
        <description>Application Launcher For MyProject1.0</description>
        <icon href="http://localhost:8080/MyProject/images/Splash_MyProject.jpg" height="300" width="560" kind="splash"/>
        <offline-allowed/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <update check="timeout" policy="always"/>
      <resources>
        <java version="1.6"/>
        <jar href="http://localhost:8080/MyProject/SwingApplication/mysql-connector-java-5.0.6-bin.jar" download="eager" main="false"/>
        <jar href="http://localhost:8080/MyProject/SwingApplication/MyProject1.0.jar" download="eager" main="true"/>
        <jar href="http://localhost:8080/MyProject/SwingApplication/liquidlnf.jar" download="eager" main="false"/>
      </resources>
      <application-desc main-class="com.mycompany.ui.MainWindow">
        <argument>production%0%3#com.mysql.jdbc.Driver#MyProject4%jdbc:mysql://10.100.1.89:3306/MyProject4%MyProject%info123#MyProject2%jdbc:mysql://10.100.1.89:3306/MyProject2%MyProject%info123</argument>
      </application-desc>
    </jnlp>Splash image not get displayed and then I change *<java version="1.6"/>* to *<java java-vm-args="-splash:resource/images/Splash_MyProject.jpg" version="1.6"/>*
    still splash image not get shown on application startup..
    no java.awt.SplashScreen() class instance found.
    Plz anybody give some idea...

    I have also a problem with the splash screen not displaying. This is the first relevant portion of the jnlp:
    <jnlp spec="1.5+" codebase="http://www.i-modulas.nl/downloads/"
    href="imodulas.jnlp">
    <information>
    <title>i-Modulas Thin Client</title>
    <vendor>i-Modulas Software BV</vendor>
    <icon kind="splash" href="http://www.i-modulas.nl/downloads/javathinsplash.jpg"/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.5+"/>
    <jar href="isrun.jar"/>
    <property name="iscobol.conf" value="http://www.i-modulas.nl/downloads/javaclientproperties.txt"/>
    </resources>
    <resources os="Windows">
    <property name="swing.defaultlaf" value="com.sun.java.swing.plaf.windows.WindowsLookAndFeel" />
    </resources>
    <resources os="Linux">
    <property name="swing.defaultlaf" value="com.sun.java.swing.plaf.gtk.GTKLookAndFeel" />
    </resources>
    The application starts normal and uses a different look and feel under Windows as under Linux, but I do not see the splash screen. I tried different ways of referencing to the picture and I also tried using a .gif format. It never worked!
    Any suggestions are welcome!
    Ren�

  • Copy and Paste of Images NOT working.

    When I right click on an image and choose 'copy image' and then try to paste it into my editing software, all i get is a string of text that is the location of the image as if I had chosen 'copy image location' instead. what gives?

    I too was unable to copy & paste ''IMAGES'' suddenly. This function continued to work correctly in my Internet Explorer and Chrome browsers while not working in Firefox. (I WAS able to copy & paste ''''TEXT'''' however in all 3 browsers.)
    As described by another poster, I would click on "Copy image" as I always did, but instead of the image appearing when I clicked paste, the ''URL'' of the image appeared instead.
    My computer developed this problem suddenly yesterday after downloading and installing the newest version of Firefox, which is 12. I tried some of the suggested solutions here to no avail, but I strongly suspected the problem was with Firefox 12. To test this, I re-installed Firefox 11 and immediately my copy & paste function started to work correctly once again and I am now able to copy & paste images once again.
    I will not install Firefox 12 again until Firefox corrects this problem. I need this function and do not want to have to deal with a convoluted method of saving a graphic with unnecessary extra steps, thank you. Every single time I upgrade Firefox, something is incompatible with the new version and no longer works. This is always a nuisance, especially when it is my Norton toolbar.
    This time it was my copy & paste function (again, for images only.) Anyone else with this problem should re-install Firefox 11 to see if their copy & pasting of images function is suddenly restored, as mine was. Good luck! :)

  • Uploading Images - Not Working?

    My company updated to the Dreamweaver CC version and I’m having trouble getting the images to upload.  The text and hyperlinks come through, but no new photos.  We are using Dell PCs, Windows 7, and a 64-bit OS.
    Examples:
    http://www.pookandpook.com/categories/moderndesign.php (should be the fourth photo down in the second column - Italian Lucite and Leather Living Room Suite $2,460)
    http://www.pookandpook.com/categories/jewelry.php (Half way down below the green jade brooch – photo for Diamond 14K White Gold Ring $5,904)
    I’m not getting an option to “Check Out” the pages like I used to with the old version of Dreamweaver we were using. The text is there, but it is grayed out and not "clickable."  When I select “Get”, it runs through some things, but nothing opens.  When I double-click it finally opens.  But when I save, nothing is saving to the local view.
    I’m just totally confused that the text is coming up, but not photos.  Any thoughts on what I am doing wrong?  I don’t know much about Dreamweaver… I just basically add photos, text, and links to existing pages.
    Someone told me my image folder may be located in the wrong place, but I don't know where the right place is?

    Something isn't quite right with the image paths on those few images.  When I view the page most work and point to ../pookSite.  On the ones that are not working they are showing a path 4 levels deeper ../../../../ .  If you update those paths on the page the problem should be resolved.

  • Why does 'insert image' not work?

    If I use Insert Image, the image appears on the email, but is not sent to the recipient. Why?
    Whats the point of it if it appears to work but doesn't?

    <blockquote>The fact that WYSIWYG does not work sometimes is no reason to regard it as not sensible to try and achieve. </blockquote>
    Never is more the point. It never works on the internet, every browser and mail client renders fonts and forms and images differently. That is why most web sites use the browser string to choose which version of the site to offer up.
    Change printers in a word processor and see WYSIWG change. Field questions from users who have suddenly manager to get their document on a 30 degree slant because their document formatting resembles a typewriter.
    <blockquote>If what you see on the screen is completely different from what you send, how are you supposed to make quality judgements? </blockquote>
    People writing computer programs and HTML have been doing it ever since there have been computers. Imagination and knowledge of the rendering capabilities to the expected client give some level of confidence. and KISS applies. The less complex the less likely it is to go spectacularly wrong
    <blockquote>Having a link to a persons computer from another computer is an invitation to hackers. </blockquote>
    That is what every address on the internet is, a link from one computer to another. Usually, your computer to someone elses. It is also why windows supports UNC names for files.
    <blockquote>Why would you do that?</blockquote
    Perhaps so content can be created once and use repeatedly without having to copy the data and perhaps corrupt it in the process. It also allows for content to be changed after the fact, so you can do a countdown due in X days
    <blockquote>
    Also,it still doesn't work. I tried sending myself an email, </blockquote>
    Did you get the email, many providers just don't deliver mail to yourself anymore.
    <blockquote>
    and it should have referenced the file on my computer, but it didn't.
    </blockquote>
    What did the HTML img tag actually contain?
    <blockquote>
    The concept of sending half a document, and referencing the rest of the document from a computer somewhere on the Internet (which might be off), absolutely stupid from many points of view.</blockquote>
    Depends, remote images in email are a perfect example of it. Many of today's emails would not be sent due to their size if the images were not remote, and how to marketers get to know who you are unless there are remote images so they can track you.
    In a corporate environment there are places where you would be sacked for actually attaching documents to an email. A link to them on the server maintains the companies control of their intellectual property. Placing it in an email obviates all of that.
    So get used to the fact that email is not WYSIWYG. It does not even use the same fonts you do, unless by happen-chance the recipient also has the same ones.
    What does the message source say about the IMG tag for the image.
    <preformat>
    ><img alt="" src="file:///C:/Users/Matt/Desktop/CSV%20how%20to/more%20images/blinkers.png" height="315" width="392">
    </preformat>
    It will look something like this for a local link with moz-do-not-send="true" set if I specify not to include the image with the message.
    <blockquote>If Thunderbird has some inherent problem with incorporating image files into a document, then it should not allow it as an option. </blockquote>
    I am afraid is simply do not understand that statement at all. You are the only person I have ever encountered that could not include an image in their email.
    <blockquote>One thing that most Windows software now allows is transferring files between formats, </blockquote>
    How come I can not get mail out of outlook in a usable format? Are BMP, JPEG and PNG images interchangeable?
    I previously asked <blockquote>So what format is this image? (What file type) How large is it? What anti virus program do you use?</blockquote>

  • Imaging not working (3.2 SP3 on NW6SP4) - works at three sites but not fourth...

    About a month ago we set up ZfD3.2, SP3 on our NW6 SP4 servers. All of the
    client workstations are XP Pro with client 4.9.0 SP2. We manually installed
    the Linux partition on all machines and that is mostly working. I say
    mostly because some of the workstations don't import into NDS the first
    time - have to push on a few of them. That's not the question though.
    At three sites, once the machines are in NDS clean, we can from C1 push down
    a new images on reboot. It works - client reboots, ZfD partition sees that
    the machine is to be re-imaged, and the workstation pulls down a new image.
    One site doesn't reimage though. At this fourth site, the Linux partition
    boots, and you see the message "Task Completed" but the imaging doesn't
    happen. If you then go into C1 you'll see that the workstation has had the
    "Reimage on reboot" flag cleared. The sites were all set up at the same
    time - what could cause this one to fail? If you boot to the Linux
    partition you can manually pull down an image. Just the auto-image doesn't
    work...
    I should say that after the time these servers/sites were set up, I found
    that the Public Key Certificates had expired. Ran PKIDIAG and it rebuilt
    the keys but, I still can't RConsoleJ into the server (that is running
    Imaging and Inventory) using Secure IP - have to use Unsecure IP. The other
    three sites I can use Secure IP. Don't know if that's a factor or not and
    haven't found out why (Secure IP doesn't work) but that's the only
    difference I've found between sites.
    Need to reimage some labs at this site pretty regularly and don't want to
    have to do it manuallly each time!
    Thoughts/Comments/Insight???
    Thx - Owen

    Well manually shutting down the database, inventory service, java, etc
    didn't affect the prob. Restarting the server and letting everything come
    back up did. Imaging is working now...
    FWIW - Owen
    "Owen Squires" <[email protected]> wrote in message
    news:[email protected]...
    > About a month ago we set up ZfD3.2, SP3 on our NW6 SP4 servers. All of
    > the client workstations are XP Pro with client 4.9.0 SP2. We manually
    > installed the Linux partition on all machines and that is mostly working.
    > I say mostly because some of the workstations don't import into NDS the
    > first time - have to push on a few of them. That's not the question
    > though.
    >
    > At three sites, once the machines are in NDS clean, we can from C1 push
    > down a new images on reboot. It works - client reboots, ZfD partition
    > sees that the machine is to be re-imaged, and the workstation pulls down a
    > new image. One site doesn't reimage though. At this fourth site, the
    > Linux partition boots, and you see the message "Task Completed" but the
    > imaging doesn't happen. If you then go into C1 you'll see that the
    > workstation has had the "Reimage on reboot" flag cleared. The sites were
    > all set up at the same time - what could cause this one to fail? If you
    > boot to the Linux partition you can manually pull down an image. Just the
    > auto-image doesn't work...
    >
    > I should say that after the time these servers/sites were set up, I found
    > that the Public Key Certificates had expired. Ran PKIDIAG and it rebuilt
    > the keys but, I still can't RConsoleJ into the server (that is running
    > Imaging and Inventory) using Secure IP - have to use Unsecure IP. The
    > other three sites I can use Secure IP. Don't know if that's a factor or
    > not and haven't found out why (Secure IP doesn't work) but that's the only
    > difference I've found between sites.
    >
    > Need to reimage some labs at this site pretty regularly and don't want to
    > have to do it manuallly each time!
    >
    > Thoughts/Comments/Insight???
    >
    > Thx - Owen
    >

  • Dynamic Picture/Image Not Working

    CR XI R1 - I believe it is the most recet service pack available (4?)
    VBScript is being used to query the database and provide the recordset data to the crystal report via a data definition file.  All other data displays properly on the report.
    The 'placeholder' image is one that says 'image not found'.  It "should" be getting replaced at runtime with the dynamic image specified in the graphic location formula but it is not and the image always remains the same.
    In the graphics location I have tried in multiple ways to enter a path with a http:// reference, a file:// reference, a local drive C: reference, and a reference relative to the report's current directory on the server.
    Nothing seems to work.
    Could someone help me understand the requirements of the graphics location field in crystal reports in order for it to dynamically locate the file at run time.?
    My current assumption is that the graphics location requires a path in text form (surrounded in quotes) to an image file to be returned.  I also am assuming it doesn't matter when the graphics location field evaluates itself relative to other fields/formulas - especially if the path is static.
    I should note that a static path entered and print previewed does switch the picture.

    Please disregard.  I believe I have solved the issue.  The crystal reports viewer on the server was version 9, not 11.  Changing it to 11 appears to have resolved the issue.

  • PHOTO BOOTH EFFECTS WITH BACKGROUND IMAGES NOT WORKING

    JUST TO KNOW HOW THE IMAGES BACKGROUND WORKS ON PHOTO BOOTH
    EXAMPLE PARIS THERE IS A SPACE TO PLACE THE FACE AND IS NOT WORKING.
    TKS.
    MARIA

    Just a quick update with the Zip files.
    I've downloaded 'The Unarchiver' and that will unzip fine. it seems to be an issue with apples 'Archive Utility' over network I suppose?

  • Jquery Loading Image not working at Page Load

    Hi,
    I developed a page using Jquery, want to load an image at the page load. I am using .show() and .hide() functions, but it is not working. I am using "async;false" in all my SPServices. Can i load the image without setting "async: true"?
    shanthan

    Hi,
    According to your post, my understanding is that you had an issue about the JQuery loading image.
    I think the issue is related to the browser. Did you use the IE 8?
    The hide() and show() method not work in IE 8.
    http://social.technet.microsoft.com/Forums/en-US/a8e17024-bea3-4cb7-8283-bcbcf8955e18/jquery-loading-image-issue?forum=sharepointgeneralprevious
    http://stackoverflow.com/questions/21876416/show-hide-not-working-in-ie8-jquery
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • (My post isn't showing up?) Sound effect muffles/is louder than the other audio layers

    I want to point out that the last time I posted this, the discussion was completely blank. This is a repost and hopefully it won't be blank this time In my most recent short movie, I decided that I would focus a lot more on sound than I normally do,

  • Issue with migration DB from SQL Server 2005 to Oracle 11.2 using SQL Developer Migration workbench

    Hi, We face an issue while migrating an SQL Server 2005 DB to Oracle 11.2.  It fails during the process.  I hope someone on the forum has seen this before and can give us some advice. I use the latest version of SQL Developer with JRE included (3.2.2

  • XL Reporter error in Client machine

    Dear all when i generate XL reporter i am getting below mentioned error "A required COM add-in program for XL reporter has not been loaded and prohibits Microsoft excel from running" So please help me.

  • Where should i include my conn.close() command

    Hi, My code frequently fetches data from database, so i created a class like this public class ConnectToDatabase { /*            public ConnectToDatabase()                 {                                 Connection conn;                 } */ public

  • EXP 9i , 10g

    Is exp dmp file from 10g database compatible with 9i database. In the other words Is export from 10g database using 10g exp command be impoted in 9i database using 9i exp command. Thx