Jump to content

Problem with showing text AFTER upload


Elusid

Recommended Posts

Ok so I have this uploader and it's suposed to show text after the file was uploaded successfully. It was working but I did something to it. No errors and the files upload just fine... just no text... here's the code

[code]
<?php
$dir = 'pending/apps/' . date('l \\t\h\e jS \of F Y g:i:s a').'/';
mkdir($dir);


$file1 = $dir.basename($_FILES['snapshot']['name']);
$file2 = $dir.basename($_FILES['userfile']['name']);

$comments = $_POST['comments'];
$commentsfile = fopen($dir . 'comments.txt','a+');

if (  (move_uploaded_file($_FILES['snapshot']['tmp_name'], $file1 )) &&

(move_uploaded_file($_FILES['userfile']['tmp_name'], $file2))  )
 
      {
            if  (    (filesize($file1) <= 20480) && (filesize($file2) <= 26214400 ) &&

fwrite($commentsfile,$comments)    )  {echo 'All your information has been uploaded

successfully. One of our staff members will look it over and if it passes our inspection,

it will be on as soon as possible. Thank you.';}
} else {
echo 'Something went wrong during the upload please go to our contact page and tell us

what happened.';
          unlink($file1);
          unlink($file2);
}

?>
[/code]
Link to comment
Share on other sites

Try this ok.

[code]

<?php

$dir = 'pending/apps/' . date('l \\t\h\e jS \of F Y g:i:s a').'/';

mkdir($dir);


$file1 = $dir.basename($_FILES['snapshot']['name']);
$file2 = $dir.basename($_FILES['userfile']['name']);

$comments = $_POST['comments'];
$commentsfile = fopen($dir . 'comments.txt','a+');

if ((move_uploaded_file($_FILES['snapshot']['tmp_name'], $file1 )) &&

(move_uploaded_file($_FILES['userfile']['tmp_name'], $file2))  ) {


}elseif ((filesize($file1) <= 20480) && (filesize($file2) <= 26214400 ) &&

fwrite($commentsfile,$comments)    )  {

echo 'All your information has been uploaded

successfully. One of our staff members will look it over and if it passes our inspection,

it will be on as soon as possible. Thank you.';

} else {

echo 'Something went wrong during the upload please go to our contact page and tell us

what happened.';
           unlink($file1);
           unlink($file2);
}

?> [/code]
Link to comment
Share on other sites

maybe try

[code]
<?php
$dir = 'pending/apps/' . date('l \\t\h\e jS \of F Y g:i:s a').'/';
mkdir($dir);


$file1 = $dir.basename($_FILES['snapshot']['name']);
$file2 = $dir.basename($_FILES['userfile']['name']);

$comments = $_POST['comments'];
$commentsfile = fopen($dir . 'comments.txt','a+');

if (  (move_uploaded_file($_FILES['snapshot']['tmp_name'], $file1 )) &&

(move_uploaded_file($_FILES['userfile']['tmp_name'], $file2))  )
 
      {
            if  (    (filesize($file1) <= 20480) && (filesize($file2) <= 26214400 ) &&

fwrite($commentsfile,$comments)    )  {echo ("All your information has been uploaded

successfully. One of our staff members will look it over and if it passes our inspection,

it will be on as soon as possible. Thank you.");}else{echo("The File is too big or somthing");}
} else {
echo 'Something went wrong during the upload please go to our contact page and tell us

what happened.';
          unlink($file1);
          unlink($file2);
}

?>
[/code]

there that should work
Link to comment
Share on other sites

I would say that this condition
[code]
if  (    (filesize($file1) <= 20480) && (filesize($file2) <= 26214400 ) &&

fwrite($commentsfile,$comments)    )
[/code]
is failing, meaning that either filesize($file1) is greater than 20480 or filesize($file2) is greater than 26214400 or fwrite($commentsfile, $comments) failed. If you look at your code you will see that if this condition fails there is no text output.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.