Скажите, а как изменить размер аватар?
я попробовал так:
в \blog\includes\blog_data.php заменил
Код: Выделить всё
// Avatar
$row['avatar'] = get_user_avatar($row['user_avatar'], $row['user_avatar_type'],
$row['user_avatar_width'], $row['user_avatar_height']);
на
Код: Выделить всё
// Avatar
$row['avatar'] = get_user_avatar($row['user_avatar'], $row['user_avatar_type'], ($row['user_avatar_width'] > $row['user_avatar_height'])? 100 : ( 130 / $row['user_avatar_height']) * $row['user_avatar_width'],
($row['user_avatar_height'] > $row['user_avatar_width']) ? 130 : ( 100 / $row['user_avatar_width']) * $row['user_avatar_height']);
аватар изменил в принципе размер, но теперь возникли проблемы с кодировкой, преобразовал в utf-8 без BOM, все равно, даже если в браузере изменить кодировку вверху появляется:
Код: Выделить всё
[phpBB Debug] PHP Notice: in file /blog/includes/blog_data.php on line 1014: Division by zero
[phpBB Debug] PHP Notice: in file /blog/includes/blog_data.php on line 1015: Division by zero
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4522: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3715)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4524: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3715)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4525: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3715)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4526: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3715)
и плюс вся страница в кракозябрах..
Подскажите, как исправить кодировку, или где копать хотя бы?