У Вас есть один вопрос? - Тогда задайте его тут! new!

Тема закрыта
83.7K
.
Sensus veris
# LoneLionn (05.09.2013 / 00:24)
Подскажите, в каком файле и строке форума 4.4.0
Отредачить эти слова?

Тема: Вопросы Общие
Обращение
   =sabi= , с удовольствием тебе отвечу,
  =sabi= , на твой пост ( 03.09.2013 / 01:02 ) отве
incfiles/languages/язык/forum.lng
строки reply_1, и т.д.
.
Libra, Спасибо, нашел
.
у кого есть сполер как на твиттере ? Когда нажимаешь без загрузки сразу откроеться на твиттере
.
я хотель сказать как на твиттере
.
kandyor
доброго утра всем. нужно при загрузке фото переименовать его в имя из '".$user_id."_".time()."' пользуюсь этим скриптом:
require('../incfiles/lib/class.upload.php');

$handle = new upload($_FILES['imagefile']);
if ($handle->uploaded) {
$handle->allowed = array('image/jpeg', 'image/gif', 'image/png');
$handle->file_max_size = 1024 * $set['flsz'];
$handle->file_new_name_body   = $nid;
$handle->image_resize         = false;
$handle->image_x              = 240;
$handle->image_ratio_y        = false;
$handle->image_convert = 'jpg';
$handle->process('../files/foto/');
if (!$handle->processed) {
echo functions::display_error($handle->error);
}
$handle->clean();
$image = substr($_FILES['imagefile']['name'],0,-4);
}


помогите пожалуйста, спасибо
.
kandyor,
require('../incfiles/lib/class.upload.php');

$handle = new upload($_FILES['imagefile']);
if ($handle->uploaded) {
$handle->file_new_name_body = $user_id._.time();
$handle->allowed = array('image/jpeg', 'image/gif', 'image/png');
$handle->file_max_size = 1024 * $set['flsz'];
$handle->file_new_name_body   = $nid;
$handle->image_resize         = false;
$handle->image_x              = 240;
$handle->image_ratio_y        = false;
$handle->image_convert = 'jpg';
$handle->process('../files/foto/');
if (!$handle->processed) {
echo functions::display_error($handle->error);
}
$handle->clean();
$image = substr($_FILES['imagefile']['name'],0,-4);
}
.
kandyor, Сразу не заметил у тебя её. Убери это
$handle->file_new_name_body   = $nid;
.
(\/)____o_O____(\/)
-sanek-, $handle->file_new_name_body = $user_id._.time();
наверное так
$handle->file_new_name_body = $user_id . '_' . time();
.
# Koenig (05.09.2013 / 12:04)
-sanek-, $handle->file_new_name_body = $user_id._.time();
наверное так
$handle->file_new_name_body = $user_id . '_' . time();
Ну да
.
вот то, что надо, исправил, время в скрипте и в запросе в базу отличалось на секунду и из-за этого в базу шло не то, что надо.
require('../incfiles/lib/class.upload.php');
        $name_foto = $user_id."_".time();
$handle = new upload($_FILES['imagefile']);
if ($handle->uploaded) {
$handle->allowed = array('image/jpeg', 'image/gif', 'image/png');
$handle->file_max_size = 1024 * $set['flsz'];
$handle->file_new_name_body   = $name_foto;
$handle->image_convert = 'jpg';
$handle->process('../files/foto/');
if (!$handle->processed) {
echo functions::display_error($handle->error);
}
$handle->clean();
$image = substr($_FILES['imagefile']['name'],0,-4);
}

       $update = mysql_query("UPDATE `users` SET `main_foto` = '".$name_foto."' WHERE `id` = '".$user_id."' ");

   header('Location: index.php?mode=foto');

но еще вопрос: как удалть предыдущую загруженную фотографию? unlink не работает((
Всего: 6714