ggggus
Programmer
- Jul 5, 2003
- 114
I'm setting up a new server, and in testing a site that I plan on moving over, I've run into a bit of snag.
On the old server, my LAMP scripts work fine for uploading and resizing images, but on the new server I'm setting up, when I try to upload a file, I get a blank screen after hitting the submit button.
Where to I start? Unfortunately, I'm moving from a large hosting company to a dedicated server, so I don't have access to the php.ini or httpd.conf files on the old host to compare against.
That's the relevant code from my php.ini.
***************************************
J. Jacobs
On the old server, my LAMP scripts work fine for uploading and resizing images, but on the new server I'm setting up, when I try to upload a file, I get a blank screen after hitting the submit button.
Where to I start? Unfortunately, I'm moving from a large hosting company to a dedicated server, so I don't have access to the php.ini or httpd.conf files on the old host to compare against.
Code:
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
upload_tmp_dir = /tmp/http
; Maximum allowed size for uploaded files.
upload_max_filesize = 20M
***************************************
J. Jacobs