What Internet Browser Settings Must Be Enable or Disabled for a PHP Form Script to Send a Form???

Helo,
I am running Windows XP Pro.
What Are the Internet Browser Setting that can Stops my form''s data from being received as  emails.
The Form Date is Received into Selected Email Boxes When the Form is Filled Out from Other PCs.
http://www.collegestudentvoice.com/form.php
1. All Emails boxes are set up.
2. Have turned OFF NetworkSolution Firewall.
3. Firefox  http referer is SET to  2.
4. Form generated NO ERRORS  when I fill it out.
cheers,
Dreamweaver101.1

Hello,
The problem may be in a script but I also believe it has to do with my browser settings.
How else to explain that the form's data is NOT  received  from my laptop but is received  from pc of my friend in LA and the form developer's pc.???
There three files that deal with the form email script:
1.   http://www.collegestudentvoice.com/form.php
2.  http://www.collegestudentvoice.com/send-email-form.php
3      FORM  ACTION.PHP File :
<?php
  require_once('recaptchalib.php');
$privatekey = "6LfwwsISAAAAAAPShkJ6nV3qkgLDHCe2uXj9RTWw";
  $resp = recaptcha_check_answer ($privatekey,
                                $_SERVER["REMOTE_ADDR"],
                                $_POST["recaptcha_challenge_field"],
                                $_POST["recaptcha_response_field"]);
  if (!$resp->is_valid) {
    die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
  else {
include_once('Mail.php');
include_once('Mail/mime.php');
$errors ='';
$max_allowed_file_size = 10000000; // size in KB
$allowed_extensions = array("jpg", "jpeg", "gif", "bmp");
$upload_folder = 'files/';
    $name_of_uploaded_file =  basename($_FILES['uploaded_file']['name']);
    $type_of_uploaded_file = substr($name_of_uploaded_file,
                            strrpos($name_of_uploaded_file, '.') + 1);
    $size_of_uploaded_file = $_FILES["uploaded_file"]["size"]/1024;
    if($size_of_uploaded_file > $max_allowed_file_size )
        $errors .= "\n Size of file should be less than $max_allowed_file_size";
    $allowed_ext = false;
    for($i=0; $i<sizeof($allowed_extensions); $i++)
        if(strcasecmp($allowed_extensions[$i],$type_of_uploaded_file) == 0)
            $allowed_ext = true;       
    if(!$allowed_ext)
        $errors .= "\n The uploaded file is not supported file type. ".
        " Only the following file types are supported: ".implode(',',$allowed_extensions);
    if(empty($errors))
        $path_of_uploaded_file = $upload_folder . $name_of_uploaded_file;
        $tmp_path = $_FILES["uploaded_file"]["tmp_name"];
        if(is_uploaded_file($tmp_path))
            if(!copy($tmp_path,$path_of_uploaded_file))
                $errors .= '\n error while copying the uploaded file';
        $Business = Trim(stripslashes($_POST['Business']));
        $ProfessionalSports = Trim(stripslashes($_POST['ProfessionalSports']));
        $Humor101 = Trim(stripslashes($_POST['Humor101']));
        $CollegeSports = Trim(stripslashes($_POST['CollegeSports']));
        $Politics = Trim(stripslashes($_POST['Politics']));
        $EmailToBusiness = $Business . "@collegestudentvoice.net";
        $EmailToProfessionalSports = $ProfessionalSports . "@collegestudentvoice.net";
        $EmailToHumor101 =  $Humor101 ."@collegestudentvoice.net";
        $EmailToCollegeSports = $CollegeSports . "@collegestudentvoice.net";
        $EmailToPolitics = $Politics . "@collegestudentvoice.net";
        $EmailTo = "[email protected]";
        $EMailSubject = Trim(stripslashes($_POST['Subject']));
        $First = Trim(stripslashes($_POST['First']));
        $Last = Trim(stripslashes($_POST['Last']));
        $Email = Trim(stripslashes($_POST['Email']));
        $Suggestions = Trim(stripslashes($_POST['Suggestions']));
        $Body = "The following form has been filled";
        $Body .= "\n";
        $Body .= "---------------------------------------------------------------------------------";
        $Body .= "\n";
        $Body .= "\n";
        $Body .= "First Name: ";
        $Body .= $First;
        $Body .= "\n";
        $Body .= "Last Name: ";
        $Body .= $Last;
        $Body .= "\n";
        $Body .= "Email: ";
        $Body .= $Email;
        $Body .= "\n";
        $Body .= "Business: ";
        $Body .= $Business;
        $Body .= "\n";
        $Body .= "Professional Sports: ";
        $Body .= $ProfessionalSports;
        $Body .= "\n";
        $Body .= "Humor 101: ";
        $Body .= $Humor101;
        $Body .= "\n";
        $Body .= "College Sports: ";
        $Body .= $CollegeSports;
        $Body .= "\n";
        $Body .= "Politics: ";
        $Body .= $Politics;
        $Body .= "\n";
        $Body .= "Suggestions: ";
        $Body .= $Suggestions;
        $Body .= "\n";
        $Body .= "\n";
        $Body .= "---------------------------------------------------------------------------------\n";
        $Body .= "Emails sent to: " . strtolower($EmailToBusiness) . " / " .strtolower($EmailToProfessionalSports). " / " .strtolower($EmailToHumor101). " / " .strtolower($EmailToCollegeSports). " / ".strtolower($EmailToPolitics). "";
        $to = "[email protected]";
        $subject= $EMailSubject;
        $from = "[email protected]";
        $text = "\n $Body";
        $message = new Mail_mime();
        $message->setTXTBody($text);
        $message->addAttachment($path_of_uploaded_file);
        $body = $message->get();
        $extraheaders = array("From"=>$from, "Subject"=>$subject,"Reply-To"=>$Email);
        $headers = $message->headers($extraheaders);
        $mail = Mail::factory("mail");
        $mail->send($to, $headers, $body);
        if ($Business != "")
                    $mail->send(strtolower($EmailToBusiness), $headers, $body);
        if ($ProfessionalSports != "")
                    $mail->send(strtolower($EmailToProfessionalSports), $headers, $body);
        if ($Humor101 != "")
                    $mail->send(strtolower($EmailToHumor101), $headers, $body);
        if ($CollegeSports != "")
                    $mail->send(strtolower($EmailToCollegeSports), $headers, $body);
        if ($Politics != "")
                    $mail->send(strtolower($EmailToPolitics), $headers, $body);
        print "<meta http-equiv=\"refresh\" content=\"0;URL=form.php?suc=y\">";
?>

Similar Messages

  • What are necessary settings to be enabled or disable while gifting my iDevices to someone..

    In case, I will gift my iDevices to my colleagues or friends, then what are the settings to be disabled.
    How to delete my Apple User ID from the iDevice so that when they want to purchase any App from App Store, they will enter there credentials.
    Can I handover the iDevice with all Music and video loaded and additional Apps installed (without deleting them) ?
    Thanks.

    Look at this link.
    Giving your former iPad to a spouse or family member: the quick guide
    http://www.tuaw.com/2012/03/17/giving-your-former-ipad-to-a-spouse-or-family-mem ber-the-quick/
     Cheers, Tom

  • The answer helped me.But still, what are the settings that I have to change for the behavior of the mouse pointer towards finder? Also the mouse pointer sometimes  doesn't accept my command and start clicking itself.what is the problem and how to fix it?

    The answer helped me.But still, what are the settings that I have to change for the behavior of the mouse pointer towards finder? Also the mouse pointer sometimes  doesn't accept my command and start clicking itself.what is the problem and how to fix it?

    If the mouse clicks something on its own then it looks like you have a hardware problem with the trackpad or possibly the battery that is right underneath the trackpad.
    I have read that the battery can swell and that would put pressure on the trackpad.

  • Enable document management for entities through PowerShell script (Dynamic CRM 2013 on premises)

    Hello,
    Can anybody let me know if it is possible to enable document management for entities through PowerShell script for Dynamic CRM 2013 on premises.
    I want power shall script where user will give the entity (Accounts, Contacts etc.)   for the CRM.
    The script should enable the document management for the entity.
    Thank you for your support.

    Hi Jeff,
    Any updates? If you have any other questions, please feel free to let me know.
    A little clarification to the script:
    function _ErrObject{
    Param($name,
    $errStatus
    If(!$err){
    Write-Host "error detected"
    $script:err = $True
    $ErrObject = New-Object -TypeName PSObject
    $Errobject | Add-Member -Name 'Name' -MemberType Noteproperty -Value $Name
    $Errobject | Add-Member -Name 'Comment' -MemberType Noteproperty -Value $errStatus
    $script:ErrOutput += $ErrObject
    $errOutput = @()
    _ErrObject Name, "Missing External Email Address"
    $errOutput
    _ErrObject Name "Missing External Email Address"
    $errOutput
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support

  • Not null and enable or disable  column in tabular form

    Hi,
    Using apex version 4.1 and working on tabular form.
    ACT_COA_SEGMENT_MAS is Master table
    and
    ACT_SEGMENT_VALUES_MAS is detail table
    I have entered 8 rows in master table and PARENT_SEGMENT_ID is column in master table which is null able. If i specified PARENT_SEGMENT_ID with value in master table then in detail table there is column PARENT_ID that should not be null and enable.
    How i can enable or disable column when in master table PARENT_SEGMENT_ID column is null then in detail table PARENT_ID column should disable and vice versa.
    I have created tabular form on Detail table. before insert into the tabular form Check in master table in first entry if PARENT_SEGMENT_ID is not null in first row of master table then in tabular form PARENT_ID should enable and not null able in corresponding to this first row id's lines in tabular form.
    Same should check for second row in master table if PARENT_SEGMENT_ID is not null then entered rows with PARENT_ID into tabular form corresponding to 2nd id in master table should not nullable and column should enable in tabular form.
    Thanks & Regards
    Vedant
    Edited by: Vedant on Jan 9, 2013 9:12 PM

    Vedant,
    You need to create you own manual tabular form and not use the wizard.
    Using APEX_ITEM api you should be build you own form and you will be able to control how you wan to display the rows. (See Link [Apex Item Help|http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/apex_item.htm#CACEEEJE] )
    select case when PRIMARY_TABLE_COLUMN is null then APEX_ITEM.DISPLAY_AND_SAVE(3 , DETAIL_COLUMN ) else APEX_ITEM.TEXT(2,detail_column) end "ALIAS" from detail table
    Hope that help.
    Vivek

  • I forgot my iphone password, what should i do? it's ben disabled for 60 mins

    What should i do if i lost my iphone password, it's been disabled for 60 minutes, what should i do?

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    Forgotten Restrictions Passcode Help
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    Also, see iTunes- Restoring iOS software.

  • Want to enable Attachment Feature for Lease Detail Form

    Any body can help me to enable the Attachment Feature in lease detail form in the Fixed Assets module.
    The Navigation for Lease Details window is
    Fixed Assets Manager (Responsibility)->Setup-> Asset System->Leases-> Lease Details

    A mini how-to on implementing attachments for Oracle Applications forms.
    Link: [http://knol.google.com/k/cuauhtmoc-amox/adding-attachment-functionality-to-forms/153594c4goidl/5]

  • How to change E71 internet browser settings?

    I bought a new E71 whilst visiting the UK and now using it in my home country in South America.  Wireless internet hotspots in my country require you to change your internet connections LAN settings within the internet explorer browser to "Automatically detect settings".
    I just need to know how to do that on the E71 because I am picking up Wireless Hotspots but cannot use them until the LAN settings are changed on the phone's browser!
    Is there any way I can do that? - HELP!

    Nokia's Wifi is set to automatically detect settings....
    However if you can't access the internet through it you might have to manual change the server ip address etc... but you need to know those details.
    On your E71 go to MENU - TOOLS - SETTINGS - CONNECTION - ACCESS POINTS - Select the access point you want to edit - OPTIONS - EDIT - OPTIONS - ADVANCED SETTINGS.
    But once again would require you to know the DNS etc settings. 
    You might be better off knocking off the Wifi connections in your ACCESS POINTS (link above) and then setup the connection points again from the main screen. 
    How do you connect to wifi in SA? Do you connect to the wifi and then a page opens up where you type your username & password? Or do you have a connection with a WPA type of key that you've already configured on your laptop?

  • Despite having full connection to wi-fi, no matter what internet browsing app i get on it will never connect. Every website says the same thing "Safari could not connect to the webpage because the server has stopped responding."

    Basically what it says above.

    Hi Crich88181,
    Thanks for visiting Apple Support Communities.
    You may find the troubleshooting information in this article helpful:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    Cheers,
    Jeremy

  • I get this message when I try to open email: JavaScript must be enabled in order for you to use gmail in standard view. However it seems javascript is either disabled or not supported by your browser. This is new. JavaScript is enabled.

    I am running Windows xp home edition 5.1.2600 and Firefox 3.6.12. I can use gmail in the HTML view, but would prefer the standard view.

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Can we enable licensing facility for our customized forms and report...?

    He All,
    We have a product and we frequently used to send customized forms and reports to our customers through the shipment team after QC certified. But some of the customized forms and reports have sent to the customers without their knowledge from the development team, it is creating a big problem in the customer site.
    We would like to know that is there any facilities to verify that this shipment has come from through proper channel or not if not they should not open. Is there any license kind of thing that we can do..? If I run some exe file which will check that and let the customer to use it..?
    If any one have the knowledge about this kindly share with us. any kind of information regarding this can be appreciated.
    With Best Regards
    Thangaraj

    So you want the customer to be able to check if the forms where shipped through the proper department from your company?
    First thing that comes to my mind is to pack all the Forms in a JAR file (which is basically a ZIP file) and sign the JAR file with the jarsigner tool. To sign the JAR you need access to the private key that is in a keystore that's only available to this single department. The customer can verify if the JAR was signed with a proper certificate.
    You could issue your own certificate to do this but requires the user to also first import this certificate so it is trusted. You could also buy a commercial certificate from a vendor like Verisign but there are costs involved.
    Just google for jarsigner and keytool to get the idea.

  • What is the name of the Std Print Program for a Delivery Form (VL01)

    How can I find the standard pront programs for SAP executables? I cannot tell by looking at TNAPR alone.
            Thanks.

    Hello Ravi,
    We are currently seeing an issue and we use a custom print program, and a related custom SAPSCRIPT program. SAP suggests I use a standard print program in trx V/38. We are upgrading to 6.0.
    I assume I can just add your SMARTFORM name in V/38 config and this should give me standard output for EK00?
         Thank-You.

  • Extremely slow download speeds and internet browsing on Macbook pro

    I recently got a 13"" macbook pro. System config - Maverick OS/i7 dual core/8GB RAM/750 GB HDD, Almost 690GB of free space available. I am expriencing extremely slow download and internet browsing speed. I have to wait for almost 10-12 seconds for normal sites to download. The app updates and downloads are painstakingly slow.
    The internet speeds are working perfectly fine on my Windows Laptop, and even on my mobile phones. So, the there's no issue of network. Also, I have cleared safari cache etc, just to be sure. But nothing's really helping.
    Can any one help me here.
    Thanks !
    Chetan

    Please answer as many of the following questions as you can. You may already have answered some of them. In that case, there's no need to repeat the answers.
    Have you restarted your router and your broadband device (if they're separate) since you first noticed the problem? If the answer is no, do that now and see whether there's any change.
    Quit and relaunch the browser. Any change?
    Log out and log back in. Any change?
    Enable Private Browsing in the Safari menu. Any change?
    Are any other web browsers installed, and are they the same? What about other Internet applications, such as iTunes and the App Store?
    If other browsers and Internet applications are also affected, follow these instructions and test. Any change?
    If only Safari is affected, launch the Activity Monitor application and enter "web" (without the quotes) in the search box. If a process named "Safari Web Content" is shown in red or is using more than about 5% of a CPU, select it and force it to quit by clicking the X or Quit Process button in the toolbar of the window. There may be more than one such process. Any improvement?
    Again, if only Safari is involved, open the iCloud preference pane and uncheck the box marked Safari, if it's checked. Any change?
    Are there any other devices on the same network that can browse the Web, and are they affected?
    If you can test Safari on another network, is it the same there?
    If you connect to your router with Wi-Fi and you can also connect with Ethernet, do that and turn off Wi-Fi. Any difference?

  • Re: Satellite NB305 - revert to the default for my internet browser

    I don't know where to post this query.
    Took ages to find words 'post new topic' and only by clicking as if to reply to a thread.
    I want to revert to the default for my internet browser.
    I know where to do it. Dumb question but I cannot display okay or apply in the dialogue box.
    Doesn't show, using smallest font or trying to move dialogue box does not work.
    I actually wanted google as the default but have tried unsuccessfully a few times.
    Says I don't have it seplt correctly but I have http:/www.google.com/ same as appears on my desktopPC.
    Question 2: Bought this in the UK but I live in Australia.
    How do I set it up to reflect Aussie not UK? Guess I now won't kknow how to find the answers to this.
    Also when I login here the grey line saying home login profile is across the middle of the screen so hard ro read the words above and below.

    > I want to revert to the default for my internet browser.
    What internet browser do you use? Is it MS Internet Explorer?
    The IE settings can be set to default very easily.
    You have to go to Tools -> Internet Options
    There you will find different tabs like General, Security, Privacy, etc.
    Visit the single tabs and there you will find buttons Reset or Defaults.
    Furthermore you can change the View
    Here you should check Style -> Default Style
    >Question 2: Bought this in the UK but I live in Australia.
    > How do I set it up to reflect Aussie not UK? Guess I now won't know how to find the answers to this.
    I'm afraid I have no idea what you want to change there...

  • CE507 Authentication for Internet Browsing

    Hi,
    I have a CE507. I would like to use Cisco ACS Tacacs+ to authenticate user before allowing them to browse internet.
    I have use tacacs key and tacacs server command to configure the tacacs server. However, I cannot authenticate user for internet browsing.
    Is there any command required for the authentication?
    Thanks.
    Regards,
    Hui

    You also need to put in the command
    tacacs enable
    HTH
    Phil

Maybe you are looking for

  • HT5313 What video issues were there on 10.7.4 that got fixed in 10.7.5? Any details?

    The OS X update bulletin for 10.7.5 lists that one of the fixes in this update is * Resolve a video issue with some VGA projectors when connected to certain Mac notebooks. What is really being addressed? Any details?

  • MacBook Pro I need to know how to adjust the screen?

    Can someone please help me in figuring out how to get my screen back to normal size.  I don't know what I did to get it like this.  It does not cover the entire screen.  The only way I can get it some bigger is to move it to the upper far left corner

  • Spellcheck and other problems on certain websites

    I've posted this before, and haven't received an answer that worked. I visit one message board, 247sports.com, and I have two issues that I simply can't except. 1) Spellchecker keeps turning off. I've enabled it in options, but when I make a post it

  • General Event Handling (Outside AWT)

    Hi all, I am looking for info on allowing my classes to send and recieve events between classes (the set of events is to be defined by me). What is Java's event handling approach? Is there something outside the AWT? I realise there may be design patt

  • Not able to see devices in fault monitor LMS 4.0

    I can see devices in the managed group ,but cannot see devices in fault monitor,its show no device available