PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Installation & Upgrades (http://www.photopost.com/forum/photopost-pro-installation-upgrades/)
-   -   Just upgraded from 4.7 to 5.13 and cannot upload movies (http://www.photopost.com/forum/photopost-pro-installation-upgrades/115365-just-upgraded-4-7-5-13-cannot-upload-movies.html)

jeffa August 24th, 2005 01:21 PM

Just upgraded from 4.7 to 5.13 and cannot upload movies
 
We made the big upgrade all the way from 4.7 to 5.13 yesterday across many of our UBB forums and while the upgrade.php app appears to have worked, we still cannot upload movies and other multimedia.

Went into Admin Options and enabled Multimedia Uploads.

Went into Upload Photo Options and set Maximum multimedia upload size to 5 megs.

When i try to upload a 4.1 meg .mov Photopost tells me that the file was uploaded successfully, but the movie does not appear in the gallery that i am redirected to.

Printed out the var_dump for $_FILE and the results are:

array(1) {
["theimage"]=>
array(5) {
["name"]=>
array(1) {
[0]=>
string(7) "01.mpeg"
}
["type"]=>
array(1) {
[0]=>
string(0) ""
}
["tmp_name"]=>
array(1) {
[0]=>
string(0) ""
}
["error"]=>
array(1) {
[0]=>
int(1)
}
["size"]=>
array(1) {
[0]=>
int(0)
}
}
}


Does anyone have any hints or ideas where to debug next? :D

Thanks,
jeffa

Chuck S August 24th, 2005 07:23 PM

How about you check the max uploadfile size in your php settings ;)

If your not limiting filesize in the software settings then errors are defaulted to php and basically whats happening is your upload is dropping cause your max size is most likely 2mb which means you must limit the filesizes to 2mb or alter your php.ini settings

jeffa August 25th, 2005 08:58 AM

It indeed was 2mb. Good call (but you knew that). ;)

Thanks omegatron!

rich s September 5th, 2005 04:42 PM

sorry for sounding dumb on this one, but where would I alter my php.ini settings?

I'm having the same problem.

Thanks,
Rich

andrew September 5th, 2005 09:05 PM

look for "upload_max_filesize" in php.ini and set it to 5M or whatever


All times are GMT -5. The time now is 08:02 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97