gwenhastings
gwenhastings
just as I was going to suggest running 256bit+ hashes on each routine individually...(to check which routine got hooked / updated changed) . :) I have looked at the code...
really cool.. I have it running at https://zerobin.permutation.net no matter what I set https://github.com/sebsauvage/ZeroBin/blob/master/index.php#L152 to it would appear that its limited to about 512 kb nothing larger seems to work....
Hi Hex, its a OpenBSD 5.1/AMD64 with php 5.3 server I have with other php based upload scripts doing up to 512M uploads via php quite successfully(its under apache right...
to answer more exhausively.. this is a real server that I control .. down to the bare iron.. the /etc/php-5.3.ini is: file_uploads = On upload_tmp_dir = tmp upload_max_filesize = 512M...
naw thats NOT the issue.. and it should allow a 2mb upload and at least one person trying the code reports sucess.. and I reference that above if you read...
Actually without getting into a pissing match about debug methodologies firebug(zerobin is after all primarily javascript based in the browser) is quite useful here after I un minified all the...
ARGHHHH!!!!! this appears to be an OpenBSD 5.1 Php5.3 bug as it fails in exactly the same way as my production server , I just finished testing on a one...
double argh.. its NOT a bug its suhosin!ARGH!!! put: php_value upload_max_filesize 32M php_value post_max_size 32M php_value max_execution_time 200 php_value max_input_time 200 php_value memory_limit 1024M php_flag suhosin.simulation On in an .htaccess...
further updates is that the directive suhosin.simulation On does NOT work in an .htaccess file only as a php_admin_flag within a\ < Directory > ... scope as per http://stackoverflow.com/questions/11537965/php-flag-in-htaccess ```...
further updates.. found had to change suhosin.post.max_value_length = 16000000 suhosin.request.max_value_length = 16000000 and then could co exist with suhosin.simulation Off[default setting] BTW really loving this patch.. have been wanting the...