lamont-granquist
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] No image resizingi had to bump up post_max_size in my php.ini file to be able to get the flash uploader working with nextgen-resize.
works fine now. with a little modification i made it so that it resizes so that the max of either width or height is 800 (makes portrait sizes the same as landscape).
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] No image resizingyou can use nextgen-resize, however it looks like you need to disable the flash uploader, which seems to break my ability to do batch uploads…
Forum: Plugins
In reply to: [Plugin: Amazon S3 for WordPress] any updates?you need the php5-curl and php5-simplexml php extensions loaded.
Forum: Fixing WordPress
In reply to: Error after 2.9 installyour php probably doesn’t have the ctype module installed:
# php -r ‘print ctype_digit(1234);’
Fatal error: Call to undefined function ctype_digit() in Command line code on line 1
that one-liner should instead return:
# php -r ‘print ctype_digit(1234);’
1I use FreeBSD, so to fix it all I did was:
cd /usr/ports/textproc/php5-ctype
make installYou probably do not use FreeBSD, so you’ll have to figure out how to install the php ctype module for your O/S.