Jump to content

ecroskey

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ecroskey's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Can you SSH into the box and look at /var/spool/mqueue? See if they are at least getting to the queue and go from there. BTW are you using just the mail() function?
  2. Same thing. It doesn't show me any of the errors. Back to a white screen.
  3. Yup. If I take this chunk out (top of file) the page will be displayed correctly, it shoots out two emails and the world is good. But as soon as I put this chunk in, with or without it's own php tags, it gets goofy. Nothing displays, no emails, nothing.
  4. Hey gang, I have two different servers running, one using RedHat ES 3 and the other using RedHat ES 4. I have been using the following script in many different flavors for the past four years on my RH ES3 box and it works flawlessly every time. I am trying to use it on the ES4 box and when I include this particular piece of code, it tanks the page. Nothing gets displayed. Any ideas? [code]   $OrdDir="/var/www/telesoc/moreinfo";   $DBAtype="dat";   $ORDtype="tscat";   $odate = date("Ymd");   $adcode = "tsc";   srand ((double) microtime() * 1000000);   $random = (rand()); $wfileP1 = " Request For Category Info: Date = $odate First Name = $_POST['fname'] Last Name = $_POST['lname'] Email Address = $_POST['email'] Category = $_POST['cats'] Drop Code = $adcode ";   $file=$OrdDir."/".$odate.".".$ORDtype."_".$random.".".$DBAtype; $f=fopen($file,'w'); fwrite($f,$wfileP1); fclose($f); [/code] My version of php is 4.3.9 and my version of Apache is Apache/2.0.52 (Red Hat)
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.