I'm doing a page that allows people in my group to upload files to our server and I seem to be running into a snag.
For small files (I haven't pinpointed the size yet but around a 2 megs I'd say) it uploads no problem, everythings happy. But on larger files, almost instantaneously I get a "Cannot Find Server" page. I've gutted the form call (I'm using PHP) to see if it was something in the code I'm using, so when the button is pressed, nothing should happen atleast in terms of PHP code. Again, in the small files nothing happens as expected but on the bigger files I get "Cannot Find Server". This leads me to believe it has something to do with the server but I'm not sure where to look. I've taken out any calls to check for file sizes.
Some Details:
Server: Linux
Form:
<form action="/upload.php" method="post"
enctype="multipart/form-data">
<p> Select a Document to upload:</p>
<input type="file" name="uploadedfile" size="60" />
<p><input type="submit" name="submit" value="Submit" /></p>
<p><input type="reset" name="reset" value="Reset" /></p>
</form>
I've edited php.ini, php.conf in the apache directory, extending any number that has anything remotely to do with file uploads to 10 times what is used to be.
Anyone else have this problem or have any ideas?
For small files (I haven't pinpointed the size yet but around a 2 megs I'd say) it uploads no problem, everythings happy. But on larger files, almost instantaneously I get a "Cannot Find Server" page. I've gutted the form call (I'm using PHP) to see if it was something in the code I'm using, so when the button is pressed, nothing should happen atleast in terms of PHP code. Again, in the small files nothing happens as expected but on the bigger files I get "Cannot Find Server". This leads me to believe it has something to do with the server but I'm not sure where to look. I've taken out any calls to check for file sizes.
Some Details:
Server: Linux
Form:
<form action="/upload.php" method="post"
enctype="multipart/form-data">
<p> Select a Document to upload:</p>
<input type="file" name="uploadedfile" size="60" />
<p><input type="submit" name="submit" value="Submit" /></p>
<p><input type="reset" name="reset" value="Reset" /></p>
</form>
I've edited php.ini, php.conf in the apache directory, extending any number that has anything remotely to do with file uploads to 10 times what is used to be.
Anyone else have this problem or have any ideas?