Search found 5 matches

by klokop
Wed Apr 14, 2004 11:50 am
Forum: Bugs
Topic: 'Send mails to admin' - can't turn it off.
Replies: 2
Views: 4898

ah, yes, that seems to work.
by klokop
Tue Apr 13, 2004 6:29 pm
Forum: Bugs
Topic: 'Send mails to admin' - can't turn it off.
Replies: 2
Views: 4898

'Send mails to admin' - can't turn it off.

Although in the _config table in the db it says 'false' in the 'want_mail' row, I still receive an email every time a visitor writes a comment...
by klokop
Wed Apr 07, 2004 1:23 pm
Forum: Bugs
Topic: image upload bugs...
Replies: 2
Views: 5537

So entering 'no' in the imagemack question should do the trick? Except that the gdlib lib must be available to me. How do I test that? Trying....
by klokop
Wed Apr 07, 2004 1:13 pm
Forum: Bugs
Topic: image upload bugs...
Replies: 2
Views: 5537

image upload bugs...

Ok, installed s9y 6.0-rc1, works excellent, except for image uploads. Created dir on server: uploads/, entered it's name in config. screen under 'paths': relative upload path: uploads/ upload path: uploads/ use imagmagick: yes path to convert lib: /usr/bin/convert Here's the errors I'm getting: Upon...
by klokop
Tue Apr 06, 2004 1:26 pm
Forum: Bugs
Topic: bug in serendipity_functions_images.inc.php
Replies: 0
Views: 3848

bug in serendipity_functions_images.inc.php

Warning: shell_exec(): Cannot execute using backquotes in Safe Mode in "-path to-"/serendipity_functions_images.inc.php on line 134

Found solution already....

replace:

Code: Select all

$res = `$cmd`;
with:

Code: Select all

$res = exec($cmd);