FORALL in Forms wont work

Hello!
Anyone tried to use FORALL statement within Oracle Forms? (6i).
It wont recognize the statement and give error messages.
I could use "execute immediate", but my array is filled with data I took from within Forms methods.
Thanks for any help!
Paulo.

It is a Server Side instruction that could not be used within a Forms module, and it is exactly the same with EXECUTE IMMEDIATE.
Francois

Similar Messages

  • In Browser .PDF forms wont' work

    I am so frustrated right now. Can someone please guide me on how to open, fill out, and submit .PDF forms using ANY broswer (I don't care which one)  on the MAC?
    I've tried extensions, plug ins, Adobe reader itself, Adobe Pro, reading for 2 days and for the life of me I can't fill out and submit forms on Safari, Firefox, OR Chorome.
    My frustration is multiplied by the fact that this worked in safari before I updated to 10.6.8, which also updated Safari to 5.1.2 at the same time.
    I've read in several places that there is an issue with Adobe and Safari, but to not be able to accomplish this in any browser is unbelievable to me.
    I have the latest of everything, browsers, OS, adobe, you name it I've updated it.
    Can someone please help me throught this?? I would be so greatful !!!

    had the same problem but found a workaround. If you have created your form in Adobe Acrobat Professional X you will have to first choose file and then save as your form and select reader extended pdf and select enable additional features. The will allow your users to save a copy of the form as well as the data in the fields. once this has been done you simple email it to yourself and open it in Adobe Acrobat Reader on the iPad then select the printer and and select print on the iPad. But the key to making this all work the form must forst be ceated in Adobe Acrobat Professional version X or greater. I have tried this and it works fine, it will also enable your form users to save the form and print to any printer with the saved field data. Hope this helps. I contacted Adobe and they say that they do not provide any support for the airprint feature. I suspect that the print protocol for the field data created in Adobe is not recognized by the airprint application. But if they investigate why we are able to print it only after saving it in reader extended pdf followed by enable additional features they should be able to resolve this issue by examining the difference between both print protocols. Hope this helps. If anyone out their has found a better way please let me know.
    Rick

  • Fill in and save data in forms wont work.

    Hello experts,
    Software Version: 11.0.0
    Devices: iPhone 5 and iPad mini
    Operating System: iOS 7 beta 5 and iOS 6.1.2
    Example file: http://www.damme.de/templates/images/documents/40.pdf
    Thank you in advence.
    kr

    I am able to open the 40.pdf file, fill, save, and re-open to see my filled content.  For this file, it is possible you were not using the Mobile Reader to fill, or it is possible you were not using the Mobile Reader to view the filled form.  Some apps (like Apple's PDF viewer) are not capable of processing filled PDF forms.
    For the Antrag_Hayn_Beruftst_tige.pdf file, the file is protected, though it appears to be protected with an owner password and is therefore still viewable.  However, the Mobile Reader cannot currently save changes to protected PDF files, therefore, user interaction is disabled.
    To correct an earlier post, the Mobile Reader does support some level of javascript.  For example, calculations, validations, and some other basic javascript support is provided.  The support is provided via Apple's own UIWebView and is therefore permitted by Apple. 
    Hope this helps,
    Darrell

  • Mail-form from dB Masters + reCaptcha - Things wont work the way i want.

    I used a mail-form from dB Masters because someone here gave me the tip.
    And its great! But it uses a simplefied Captcha script.
    I tryd to change the code myself and got to this: http://www.wientjesvoegwerk.nl/PHP/form.php
    If you try to send mail it wont work.....
    form.php
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Email Form</title>
    </head>
    <body>
    <center>
    <form id="form" method="post" action="../formmailer.php" enctype="multipart/form-data">
    <input type="hidden" name="action" value="verify">
    <table cellpadding="4">
    <tr><td  style="text-align: left;" valign=top><font size="2" FACE="Verdana" color="#000000">Uw naam:</font><small><span style="color:#E00000;" title="Required field">*</span></small></td><td align="left">
    <input type="text" name="Naam" value=""/>
    </td></tr>
    <tr><td  style="text-align: left;" valign=top><font size="2" FACE="Verdana" color="#000000">Email:</font><small><span style="color:#E00000;" title="Required field">*</span></small></td><td align="left">
    <input type="text" name="Email" value="" />
    </td></tr>
    <tr><td  style="text-align: left;" valign=top><font size="2" FACE="Verdana" color="#000000">Telefoonnummer:</font><small><span style="color:#E00000;" title="Required field">*</span></small></td><td align="left">
    <input type="text" name="Telefoonnummer" value="" />
    </td></tr>
    <tr><td  style="text-align: left;" valign=top><font size="2" FACE="Verdana" color="#000000">Onderwerp:</font><small><span style="color:#E00000;" title="Required field">*</span></small></td><td align="left">
    <select name="Onderwerp">
        <option value="0">Algemene Informatie</option>
        <option value="1">Offerte</option>
        <option value="2">Overige</option>
        </select>
    </td></tr>
    <tr><td  style="text-align: left;" valign=top><font size="2" FACE="Verdana" color="#000000">Bericht:</font><small><span style="color:#E00000;" title="Required field">*</span></small></td><td align="left">
    <textarea name="Bericht" rows="7" cols="40"></textarea>
    </td></tr>
    <tr><td align=right>CAPTCHA TXT</td>
    <td align="left">
    <form method="post" action="verify.php">
       <?php
         require_once('recaptchalib.php');
         $publickey = "I hide the key on this forum dont know if its ok to show";
         echo recaptcha_get_html($publickey);
       ?>
    </form>
    </td>
    </tr>
    <tr><td></td><td align="left">
    <input type="submit" name="submit" value="Submit" />
    <input type="reset" name="Reset" value="Clear Form" />
    <input type="hidden" name="config" value="0" />
    <input type="hidden" name="nospam" value="" />
    </td></tr>
    </table>
    <div style="height:1px; display: none; visibility: hidden;">
    <input type="text" name="email">
    </div>
    </form>
    </center>
    </body>
    </html>
    formmailer.php
    <?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="www.wientjesvoegwerk.nl";
    // 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]="Onderwerp van de Email";
         $reply_to_field[0]="Email";
         $reply_to_name[0]="Naam";
         $required_fields[0]="Naam,Email,Telefoonnummer,Onderwerp,Bericht";
         $required_email_fields[0]="Email";
         $attachment_fields[0]="";
         $return_ip[0]="yes";
         $mail_intro[0]="Er is een bericht gestuurd vanuit Wientjesvoegwerk.nl:";
         $mail_fields[0]="Naam,Email,Telefoonnummer,Onderwerp,Bericht";
         $mail_type[0]="text";
         $mail_priority[0]="1";
         $allow_html[0]="no";
    // Send back to sender config
         $send_copy[0]="yes";
         $copy_format[0]="vert_table";
         $copy_fields[0]="Naam,Onderwerp,Bericht";
         $copy_attachment_fields[0]="";
         $copy_subject[0]="Kopie van uw bericht naar Wientjesvoegwerk.nl";
         $copy_intro[0]="Dank u voor uw bericht!<br />Om veiligheidsredenen is uw email adres en telefoonnummer niet in deze mail te zien.<br /> Het volgende is verstuurd;";
         $copy_from[0]="[email protected]";
         $copy_tomail_field[0]="Email";
    // Result options
         $header[0]="";
         $footer[0]="";
         $error_page[0]="";
         $thanks_page[0]="";
    // Default Error and Success Page Variables
         $error_page_title[0]="Errors:";
         $error_page_text[0]="Ga a.u.b. terug naar de vorige pagina om alle benodigde velden in te vullen.";
         $thanks_page_title[0]="Bericht verzonden.";
         $thanks_page_text[0]="Dank u voor uw bericht!";
    // Antispam Options
         $empty_field[0]="nospam";
         $character_scan[0]="Bericht,Naam,Email,Telefoonnummer,Onderwerp";
         $time_delay[0]="2";
         $captcha_codes[0]="9C2449,EEADC8,77A585,D72838";
         $max_urls[0]="2";
         $max_url_fields[0]="Bericht";
         $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]="bait";
         $character_scan[1]="Naam,Email,Telefoonnummer,Onderwerp,Bericht";
         $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)
              $arrayvalue=$_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];
                   $curvalue=$_POST[$cur_key];
                   if(is_array($cur_value))
                        $curvalue=parseArray($cur_key);
                   $curvalue=parseValue($cur_value);
                   if($allow_html[$config]=="no")
                        $curvalue=htmlspecialchars(nl2br($cur_value));
                   else
                        $curvalue=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];
                   $curvalue=$_POST[$cur_key];
                   if(is_array($cur_value))
                        $curvalue=parseArray($cur_key);
                   $curvalue=parseValue($cur_value);
                   if($allow_html[$config]=="no")
                        $curvalue=htmlspecialchars(nl2br($cur_value));
                   else
                        $curvalue=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];
                   $curvalue=$_POST[$cur_key];
                   if(is_array($cur_value))
                        $curvalue=parseArray($cur_key);
                   $curvalue=parseValue($cur_value);
                   if($allow_html[$config]=="no")
                        $curvalue=htmlspecialchars($cur_value);
                   else
                        $curvalue=$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_message.$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();
    ?>
    verify.php
    <?php
    require_once('recaptchalib.php');
    $privatekey = "i hide this on the forum";
    $resp = recaptcha_check_answer ($privatekey,
                                   $_SERVER["REMOTE_ADDR"],
                                   $_POST["recaptcha_challenge_field"],
                                   $_POST["recaptcha_response_field"]);
    if (!$resp->is_valid) {
       // What happens when the CAPTCHA was entered incorrectly
       die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
            "(reCAPTCHA said: " . $resp->error . ")");
    } else {
       // Your code here to handle a successful verification
    ?>
    We have a saying in the Netherlands; "Not being abled to see the tree's trough the forest"
    Well i dont see it anymore...
    I managed to get it in the code but it doesnt work.
    I hope someone can help me out!

    @Nancy O.
    Thanks for your support i appreciate it that you helped me out a many times.
    However i have read all of the topics you posted.
    I know in the mail form i can disable the "sort of Captcha". I wanted to disable it and insert reCaptcha instead.
    I will re-make the form because like you said (and i already figured it out myself) ;
    "b) Don't modify forms until you get a very basic form working on your server."
    And youre right, im taking too much work at once.
    @CowboyInAZ
    Im a hobbyist that learns really really fast.
    Before March 23 i never used CSS, Javascript and XHTML. And never combined them all together with PHP. (never ever created a php based file from scratch)
    The reason why i use other persons code is because i learn faster with examples, and because i dont need to reinvent the wheel if someone already invented it. The only thing i do with it is learn the workings, customise it and at last, rewrite the code when i understand it.
    If you look at my current site: http://www.wientjesvoegwerk.nl/
    You will notice that the site is validated by W3C with no errors and warnings.
    I think it was Nancy O. that gave me the link to the validator. Thats how i discovered the service.
    You need to know that in 1 day (from 63 errors and 12 warnings) i removed all errors. And i didnt knew much about it, and why errors happend while the site looks fine.
    So im just curious how things work and thats why i "steal" codes and adjust them to learn myself.
    I also want a education like you spoke of, but im interested in a different media.
    I want to be abled to create my dream project wich involves new ways for game studios to earn money.
    This is just a simple start, im also taking tutorials in C#, C++.

  • Fillable form that i can fill in but the submit button wont work

    i have adobe pdf reader that will open a fillable form allow me to fill in the details but the submit button wont work the lap top has windows 8 on my other laptop with windows vista i can fill in and submit the same form help needed please

    also adobe reader touch wont submit either

  • SetFocus wont work after setting presence="invisible"

    Hi,
    i got a form with a button in it, that should jump to a combobox on another page which is hidden by setting this.presence="invisible" in its initialize event. The code in the click event of the button is the following:
    comboBox1.presence="visible";
    xfa.host.setFocus("comboBox1");
    it does setting the presence to visible, but the setFocus seems to be ignored. When i click the button the second time, it will jump to the specified item.
    Same phenomenon the other way round. When a value in the comboBox is chosen, i want the value to be copied to a textfield, set the presence of the combobox to invisible again, and return to the button with another setFocus instruction. To reach this, i did the following in the exit event of the ComboBox:
    if(this.rawValue){
        textField1.rawValue = this.rawValue;
        this.presence="invisible";
        xfa.host.setFocus("button1");
    the value and the presence got set, but (again) the setFocus instruction seems to be ignored.
    it all works fine, if i outcomment the presence assignments. Could somebody tell me the reason why it wont work this way?

    Ok, you have some script problems going on. I've attached a new file with them fixed up.
    When you are in the Script Editor and want to get the path to another object use the CTRL key and click on the object whose path you are trying to get. Your cursor needs to be in the Script Editor and you need to be able to see the object you are trying to click on. When you hold down the CTRL key and mouse over a valid object it will turn to a "V" - click on the object and the path will be inserted in your script.
    So, where you had:
    DropdownListe1.presence="visible";
    xfa.host.setFocus("DropdownListe1");
    It should be:
    xfa.resolveNode("#subform[1].DropdownListe1").presence="visible";
    xfa.host.setFocus(xfa.resolveNode("#subform[1].DropdownListe1"));
    File attached - I moved the second subform to the first page so it was easier to see what was going on.
    The code on the dropdown list looks a little odd, but I'm not sure exactly what you're trying to do - seems to work though.

  • Speed Touch 330 Modem wont work in OSX but it does in XP Pro..

    My old emac with OSX 10.4.7 works with the 330 Modem,
    My iMac Intel with OSX 10.4.7 wont work with 330 Modem,
    My iMac Intel with XP Pro works with 330 Modem,
    So it's gotta be something to do with the OSX Intel version. :">
    I dont wanna pay £60 for a new modem, just payed like £3k on new stuff..

    Zero7497
    If you knew the history of this modem you would not have ever plugged into your Mac.
    This modem has been around in one form or another for the last 6 years and it has NEVER improved on the Mac.
    It has caused kernel panics, crashes, breaking your OS, never working, never connecting working 1 minute not the next etc.
    USB modems can't be networked
    USB modems dont work with airport technology
    USB modems provide no firewall security
    USB modems will not work with ADSL2 so will be obsolete in 1 year anyway!!!!
    If you really knew about networking then you would not even use this modem on a windows box either.
    USB modems should not be used for networking ADSL because they are in efficient and require drivers to work. The Drivers are often buggy.
    The ONLY long term solution is to use an ethernet adsl modem/router.
    Why do you think ISP's give them away free of charge?
    I dont wanna pay £60 for a new modem, just payed like £3k on new stuff..
    hmm, why use a 'piece of rubbish' modem worth nothing on your £3k equipment.
    That is like spending 3k on a hi fi system and using £3 audio cables. for a 3k hifi you should be spending £200 on cables if not more.
    Anyway it does not cost £60 for an ethernet ADSL modem you can get them for as little as £30.

  • HT5312 my rescue email address wont work

    i have a rescue email address but it wont work even those i need to us it now. HELP!!!!

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (102981)

  • Code wont work when trying to upload image!

    My Code wont work when I try to upload an image to mysql. (Field in mysql is BLOB)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>insert</title>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <?php require_once('Connections/drama_database.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO databaseimage (name, image) VALUES (%s, %s)",
                           GetSQLValueString($_POST['name'], "text"),
                           GetSQLValueString($_POST['image'], "double"));
      mysql_select_db($database_drama_database, $drama_database);
      $Result1 = mysql_query($insertSQL, $drama_database) or die(mysql_error());
    mysql_select_db($database_drama_database, $drama_database);
    $query_image = "SELECT * FROM databaseimage";
    $image = mysql_query($query_image, $drama_database) or die(mysql_error());
    $row_image = mysql_fetch_assoc($image);
    $totalRows_image = mysql_num_rows($image);
    ?>
    </head>
    <body>
    <form action="<?php echo $editFormAction; ?>" method="POST" enctype="multipart/form-data" name="form1" id="form1">
    Name:  <span id="sprytextfield1">
      <label for="name"></label>
      <input type="text" name="name" id="name" />
      <span class="textfieldRequiredMsg">A value is required.</span></span>
      <p>
        <label for="image"></label>
        <input type="file" name="image" id="image" />
      </p>
      <p>
        <input type="submit" name="Upload" id="Upload" value="Upload" />
      </p>
      <input type="hidden" name="MM_insert" value="form1" />
    </form>
    <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($image);
    ?>
    Any help would be very much appreciated!

    OK, that tutorial is different than what I assume you want. I suspect you want the ability to have users upload images and store the metadata of those images in a database, correct? That tutorial only shows how to upload to a specific location so the image can
    be displayed in an iframe.
    Search for "php file upload scripts" to see how to upload to a file system and store the metadata in the database.
    >and no, mostly i have used the dreamweaver features to avoid it as much as possible
    As you are seeing, DW code is very limited in what it can do. It also generates code that is not up to current standards,and is very difficult to work with if you need to modify it. Basically, it's junk. Forget it and learn how to read and write code. There are tons on tutorials on how to get started with PHP.  DW Server behaviors only seem like a time saver in the beginning. In the end, you'll end up wasting more time using them than learning how to code yourself.

  • OLD iMac 1.8 GHz PPC G5...running 10.3.9, mail wont work (vs 1.3.11)

    I have had this computer running all the way up to snow leopard but it just about cant handle it and it sounds like it is going to turn into an airplane and take off!
    So, today, I clean swiped the whole thing and put back on Panther that came with it.  I updated it up to 10.3.9 but that is as far as I can go.  I dont have any disks for Tiger and Im not going to buy them still for over $120 at this point.
    My problem is...the mail wont work now.  I have set up my mail accounts a million times....we have iPhones, iPads, iPods, multiple MacBook Pros, all the computers at my office are Macs and I upgrade all of them, set up the mail, etc.  So basically, I know that my server settings, passwords, usernames, etc are all spot on.
    Is this version of mail just so old that it isn't going to work right?  Anyone else still running an ancient machine? Tips? Help?  Also, is there anywhere that I can just download Tiger 10.4?  Id love to get it updated to at least that OS so that my daughters can use the computer for games, etc but the version of flash that their sites is requiring isn't available until we are running at least 4.0.
    So basically....mail not working and upgrade advice needed!
    Any suggestions....TYIA!!! Im dying here...
    Julie

    Doug:
    Your computer meets the minimum system requirements for Tiger. However, the major Operating Systems: Jaguar, Panther, Tiger, Leopard must be installed from an install disk, which, as Niel indicated, needs to be purchased. Updates within an OS, from 10.4.4 to 10.4.11 for example, can be installed either via Software Update or downloaded as stand-alone updates form the Apple website and then installed.
    If you do not already own the Tiger install disk, you might consider Leopard instead, since your computer meets the technical specifications for Leopard, and the cost of Tiger and Leopard are essentially the same $129 from Apple.
    I would suggest that you seriously consider upgrading your RAM. Although the RAM you have will run Tiger, it will run much better by boosting your RAM by installing at least one 1 GB module. Your compuuter will support 2 - 184-pin PC-3200 (400MHz) DDR SDRAM up to 1 GB each. You can upgrade them both or upgrade to 1.5 GB for now.
    Please do not hesitate to post back should you have further questions.
    Good luck.
    cornelius

  • Java just wont work on my computer

    i reinstllsd it more then 3 times alredy and tried using diffrent browsers
    i have the newst one instelld right now
    i have windows xp most updated
    but no matter what java applet i am tring to open online it just wont work
    it gives me three eror messges
    on after the ather and then the file just has a red x on it
    first this
    java.security.PrivilegedActionException: java.io.IOException: ???? ?????, ?? ?????? ?? ?????? ?? ????? ????? ?????? ??????
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.CredentialManager$CredentialPersistor.openInputStream(Unknown Source)
         at com.sun.deploy.security.CredentialManager$CredentialPersistor.getAllPersistedCredentials(Unknown Source)
         at com.sun.deploy.security.CredentialManager$CredentialPersistor.access$000(Unknown Source)
         at com.sun.deploy.security.CredentialManager.<init>(Unknown Source)
         at com.sun.deploy.security.MSCredentialManager.<init>(Unknown Source)
         at com.sun.deploy.security.MSCredentialManager.getInstance(Unknown Source)
         at com.sun.deploy.services.WPlatformService.getCredentialManager(Unknown Source)
         at com.sun.deploy.security.DeployAuthenticator.<init>(Unknown Source)
         at sun.plugin.AppletViewer.initEnvironment(Unknown Source)
         at sun.plugin.AppletViewer.initEnvironment(Unknown Source)
    Caused by: java.io.IOException: ???? ?????, ?? ?????? ?? ?????? ?? ????? ????? ?????? ??????
         at java.io.WinNTFileSystem.createFileExclusively(Native Method)
         at java.io.File.createNewFile(Unknown Source)
         at com.sun.deploy.security.CredentialManager$CredentialPersistor$1.run(Unknown Source)
         ... 11 more
    then this one
    java.lang.NullPointerException
         at java.io.ObjectInputStream$PeekInputStream.read(Unknown Source)
         at java.io.ObjectInputStream$PeekInputStream.readFully(Unknown Source)
         at java.io.ObjectInputStream$BlockDataInputStream.readShort(Unknown Source)
         at java.io.ObjectInputStream.readStreamHeader(Unknown Source)
         at java.io.ObjectInputStream.<init>(Unknown Source)
         at com.sun.deploy.security.CredentialManager$CredentialPersistor.getAllPersistedCredentials(Unknown Source)
         at com.sun.deploy.security.CredentialManager$CredentialPersistor.access$000(Unknown Source)
         at com.sun.deploy.security.CredentialManager.<init>(Unknown Source)
         at com.sun.deploy.security.MSCredentialManager.<init>(Unknown Source)
         at com.sun.deploy.security.MSCredentialManager.getInstance(Unknown Source)
         at com.sun.deploy.services.WPlatformService.getCredentialManager(Unknown Source)
         at com.sun.deploy.security.DeployAuthenticator.<init>(Unknown Source)
         at sun.plugin.AppletViewer.initEnvironment(Unknown Source)
    and then this one
    java.lang.NullPointerException
         at java.io.ObjectInputStream$PeekInputStream.read(Unknown Source)
         at java.io.ObjectInputStream$PeekInputStream.readFully(Unknown Source)
         at java.io.ObjectInputStream$BlockDataInputStream.readShort(Unknown Source)
         at java.io.ObjectInputStream.readStreamHeader(Unknown Source)
         at java.io.ObjectInputStream.<init>(Unknown Source)
         at com.sun.deploy.security.CredentialManager$CredentialPersistor.getAllPersistedCredentials(Unknown Source)
         at com.sun.deploy.security.CredentialManager$CredentialPersistor.access$000(Unknown Source)
         at com.sun.deploy.security.CredentialManager.<init>(Unknown Source)
         at com.sun.deploy.security.MSCredentialManager.<init>(Unknown Source)
         at com.sun.deploy.security.MSCredentialManager.getInstance(Unknown Source)
         at com.sun.deploy.services.WPlatformService.getCredentialManager(Unknown Source)
         at com.sun.deploy.security.DeployAuthenticator.<init>(Unknown Source)
         at sun.plugin.AppletViewer.initEnvironment(Unknown Source)
    the a red x where the applet shold be
    agein it happens to every java applet i see online

    Britteney26 wrote:
    i bought a gatway computer with windows 7 on it and the linksys wusb600n wireless adapter-its supposed to be compatible with windows seven but its really not. does anyone know a good adapter that works? i have a linksys router too.
    Brittney26, A Windows Vista Driver should be compatible with the item in the event you cannot obtain a Windows 7 Driver for it. Have you also tried to perform an update through the Windows Update function of your operating system?
    *******DISCLAIMER********
    I am not an employee of BBY in any shape or form. All information presented in my replies or postings is my own opinion. It is up to you , the end user to determine the ultimate validity of any information presented on these forums.

  • ReCAPTCHA wont work...

    I asked this on the reCAPTCHA forum as well.
    But because of the many people here i see more chance that i get my awnser here. (reCAPTCHA forum is a bit slow)
    I did a simple test to look if reCAPTCHA works.
    These following 2 PHP files; "form" and "verify" should work but dont.
    The reCap img shows but the verification goes wrong.
    It always result in this text:
    The reCAPTCHA wasn't entered correctly. Go back and try it again.
    (reCAPTCHA said: )
    This is my php test form (only recaptcha);
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
    www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <form method="post" action="verify.php">
       <?php
         require_once('recaptchalib.php');
         $publickey = "xXxXxXxXxXxXxXxXx";
         echo recaptcha_get_html($publickey);
       ?>
    </form>
    </body>
    </html>
    And this the verify.php :
    <?php
    require_once('recaptchalib.php');
    $privatekey = "xXxXxXxXxXxXxXxXx";
    $response = recaptcha_check_answer ($privatekey,
                                   $_SERVER["REMOTE_ADDR"],
                                   $_POST["recaptcha_challenge_field"],
                                   $_POST["recaptcha_response_field"]);
    if (!$resp->is_valid) {
       // What happens when the CAPTCHA was entered incorrectly
       die ("The reCAPTCHA wasn't entered correctly. Go back and try it
    again." .
            "(reCAPTCHA said: " . $resp->error . ")");
    ?>
    The problem are the 2 php files above. They wont work and i dont know
    why.
    Its the basic code from the reCAP site.
    It should work but it doesnt.
    HELP!
    (I need to keep those 2 files seperated. An example from reCAPTCHA wich came with the library file works, but has both functions in the same file. And its different from the code i got from the recap site. The weirdest thing is that im not the only one using this code but probably one of the few who dont get it working.)

    I went round and round with reCAPTCHA scripts too. I could get the form to work, but the validation was non existent. When I got the validation to work, all of the form data disappeared.
    Unfortunately, my school schedule has PHP fundamentals set for a July start, and I needed to kill spambots in January so I went with a form service.
    http://www.mycontactform.com/index.php
    $29.99 a year for unlimited forms on multiple domains and 5,000 emails per month per form.
    Once I get through the PHP class I'll do this on my own, but for now, these guys pulled my hiney out of the water.

  • I have just changed my sim from vodaphone to tmobile and my new sim wont work it is coming up emergency calls only, the iphone is not a vodaphone phone and as i am awhere it is a unlocked handet, can anyone give me advice pls

    i have just changed my sim from vodaphone to tmobile and my new sim wont work it is coming up emergency calls only, the iphone is not a vodaphone phone and as i am awhere it is a unlocked handet, can anyone give me advice pls

    You will have to ask Vodafone to do it for you.
    Here is a link to their online form http://campaigns.vodafone.co.uk/UnlockCodeRequestForm/

  • My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs?

    My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs? My apple ID is my Yahoo mail it self, but not able to log in to  Icloud, Can any body guide, Why, I can not.

    Hi dip_kinu,
    I apologize, I'm a bit unclear on exactly what device you are trying to set up and what is happening when you try to do so. If you are having issues remembering your Apple ID, or feel like you may have set up multiple Apple ID's, you may find the following page helpful:
    Apple - My Apple ID: Find your Apple ID
    https://iforgot.apple.com/appleid
    Regards,
    - Brenden

  • Ipod is recognised under my computer but wont work in itunes,

    My ipod worked fine on my old computer i dont think i had the most recent itunes but everything was working fine i had windows XP. Now i have a new laptop with windows 7 and my ipod wont work in itunes, i have uninstalled and reinstalled itunes 9 and even tried itunes 8 but nothing seemed to help the situation, i know its not the cable as it shows under my computer, i have taken all my music off the ipod because it asked to reformat it i have tried that twice, i get the message your ipod needs to be reformatted for windows i click ok and it opens itunes but nothing happens, iv downloaded the 64 bit itunes as it doesnt like the 32 bit one. Iv ran a diagnostic test on my ipod but cant get past the firewire detect and usb detect maybe this is because i dont have itunes installed at the moment, any suggestions please?

    I had the same problem with my iPod classic. I got a new laptop that has windows 7 and downloaded itunes 9. As soon as itunes 9 was downloaded my ipod would not be recognised anymore. I tried everything like reformatting etc and nothing was helping. What I did was downloaded itunes 7 and my ipod was then recognised. Your problem may be that your software on your ipod is not up to date enough to run on itunes 9 (that was the problem with mine) and may also not be up to date enough to run on itunes 8. Try itunes 7 (or if that doesn't work even itunes 6) then once your ipod is recognised go to the summary page on your ipod and update your software to the current version. Once i did this my ipod was recognised on itunes 9 when i plugged it in and worked perfectly. Hope this helps!

Maybe you are looking for

  • MSI Live Update Installation Causes Windows XP To CRASH!!

    I have a MSI K9VGM-V (MS-7253). Product specs are here: http://www.msicomputer.com/product/p_spec.asp?model=K9VGM-V I have attempted to obtain my updates for my drivers and utilities. MSI uses the Live Update to detect and suggest these for your syst

  • How to copy Value of fright from pricing procedure to the tax procedure

    Dear All, Please note, I have a condition type in Pricing procedure i.e. ZRCO-this is for fright which will be added by the user in the PO. I want to copy the same value to  ZRC1 which is a condition type in tax procedure. Kindly advise, is there any

  • Dynamic update another html from pop

    Hi, I have a main html(jsp) page which calls a pop up window to let user to add some items. When user finished adding items in popup window, how can I update the main page(to show some items, like the finished uploading of attachment in "Yahoo Compos

  • Do Spry widgets work in a Dreamweaver Template

    I can get the Spry widgets to work in a normal HTML page but when I try to use the widget in a template it doesn't work. Is there a limitation on using Spry in templates? Any help would be appreciated. I've looked thru the docs and searched the web b

  • Creating multiple hyperlinks to listbox items

    I need all the items in my list box to link to a url. Im very new at livecyle and Im having some serious problems doing this. Does anyone know if this is even possible? Thanks :-)