Спасибо за раздачу и оценка релиза

brootos

Пользователь
#
#-----[ FIND ]---------------------------------
#

if ($tor_reged && $tor_info)
{
$tor_size = ($tor_info['size']) ? $tor_info['size'] : 0;
$tor_id = $tor_info['topic_id'];
$tor_type = $tor_info['tor_type'];

#
#-----[ AFTER, ADD ]---------------------------------
#
$rate_html = '';
for ($r = 5; $r >= 1; $r-- ) {
$rate_html .= '<input type="radio" name="rate'.$attach_id.'" value="'.$r.'" onClick="ajax_do(\''
. append_sid("rate.php?a=" . $attach_id . "&v=" . $r ) .'\');" />'
. '<span onclick="nodeClick(this);">' . $lang['RATING_'.$r] . '</span>';
}

После добавления сайт выдает 500
 

brootos

Пользователь
#
#-----[ FIND ]---------------------------------
#

if ($tor_reged && $tor_info)
{
$tor_size = ($tor_info['size']) ? $tor_info['size'] : 0;
$tor_id = $tor_info['topic_id'];
$tor_type = $tor_info['tor_type'];

#
#-----[ AFTER, ADD ]---------------------------------
#
$rate_html = '';
for ($r = 5; $r >= 1; $r-- ) {
$rate_html .= '<input type="radio" name="rate'.$attach_id.'" value="'.$r.'" onClick="ajax_do(\''
. append_sid("rate.php?a=" . $attach_id . "&v=" . $r ) .'\');" />'
. '<span onclick="nodeClick(this);">' . $lang['RATING_'.$r] . '</span>';
}

После добавления сайт выдает 500

Прочел форум. Все норма.
 

Dr_Brown

Пользователь
Короче мод стоял все время по Феруму, все было ок....Но, если открыть возможность скачивать торренты гостям, то в логах сервера лезет ошибка:

Код:
[Tue Oct 16 14:25:16 2012] [error] [client 195*.*.* ] PHP Notice:  Undefined index: rating in /var/www/dr_brown/data/www/freebie.net.ua/attach_mod/displaying_torrent.php on line 69, referer: http://freebie.net.ua/index.php
[Tue Oct 16 14:25:16 2012] [error] [client 195*.*.*] PHP Notice:  Undefined index: thanked in /var/www/dr_brown/data/www/freebie.net.ua/attach_mod/displaying_torrent.php on line 71, referer: http://freebie.net.ua/index.php

Код:
69 - $your_vote      = $attachments['_'. $post_id][$i]['rating'];
71 - $thanked        = $attachments['_'. $post_id][$i]['thanked'];

Даже при условии что закрываешь вывод в viewtopic_attach.tpl с помощью
<!-- IF LOGGED_IN -->

Lion18, скорее всего в запросе забыл добавить колонки rating и thanked

Запросы и таблицы в базе правильные проверял.
 
B

Bustra

Гость
$your_vote = $attachments['_'. $post_id][$i]['rating'] ? $attachments['_'. $post_id][$i]['rating'] : '';
$thanked = $attachments['_'. $post_id][$i]['thanked'] ? $attachments['_'. $post_id][$i]['thanked'] : '';
 
Сверху