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
https://forums.phpfreaks.com/topic/15996-problem-with-showing-text-after-upload/
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]
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
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.

Archived

This topic is now archived and is closed to further replies.

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