On Mon, Oct 12, 2009 at 11:07:29AM +0200, Ronny Coolen wrote: > I seem to have problems with uploading attachments that are bigger than 1MB. > Under 1MB, it works perfectly. > > I am using PHP sockets to connect to the couchdb server.
Just a guess, but it could be the PHP max file size (usually is with large upload problems in PHP). Check php.ini for upload_max_filesize (probably the culprit) and post_max_size (if you're POST'ing). Adjust accordingly, as they are probably set to < 1MB. -- Sam Bisbee
