Weird error

If you don't know russian language or can't post in russian please, post your questions about TB Dev SZ Edition here. You're not allow to post your's questions at another forums of this category.
Правила форума
Only non-russian talks here.

Re: Weird error

Сообщение Nafania » 17 сен 2008, 09:54

Run docleanup.php - it will fix this error
Аватара пользователя
Nafania
Администратор
 
Сообщения: 1207
Зарегистрирован: 30 июн 2007, 16:10

Re: Weird error

Сообщение o0osko0o » 18 сен 2008, 16:06

The ip problem still exit, the tracker still store user's ip for a long time. If you shutdown the Pc suddenly or have problem with power supply, when the utorrent start it has "you can't leech or seed 1 torrent from one IP or more than one time" error. Stop and update tracker won't do anything. I must delete their peers in SQL database which is so troublesome :?
o0osko0o
 
Сообщения: 53
Зарегистрирован: 23 авг 2008, 07:43

Re: Weird error

Сообщение Nafania » 18 сен 2008, 16:50

in acp, lower the peers autoclean value
Аватара пользователя
Nafania
Администратор
 
Сообщения: 1207
Зарегистрирован: 30 июн 2007, 16:10

Re: Weird error

Сообщение o0osko0o » 29 сен 2008, 07:48

In index release how can I set 10 or more torrents/a page ?
o0osko0o
 
Сообщения: 53
Зарегистрирован: 23 авг 2008, 07:43

Re: Weird error

Сообщение Nafania » 29 сен 2008, 09:29

In index.php find lines
Код: Выделить всё
$sql = 'SELECT COUNT(i.id) AS count FROM ' . INDEXRELEASES_TABLE . ' i, ' . CATEGORIES_TABLE . ' c, ' . TORRENTS_TABLE . ' t
        WHERE t.category = c.id AND i.torrent_id = t.fid AND t.banned = 0 AND t.hidden = 0' . ( $userdata['uid'] == ANONYMOUS ? ' AND c.anonymous_view = 1' : '' );
$result = $db->sql_query($sql, 31536000);
$count = ( $row = $db->sql_fetchrow($result) ) ? $row['count'] : 0;
$db->sql_freeresult($result);
$perpage = 6;


change number 6 in line
Код: Выделить всё
$perpage = 6;


to what you want
Аватара пользователя
Nafania
Администратор
 
Сообщения: 1207
Зарегистрирован: 30 июн 2007, 16:10

Re: Weird error

Сообщение o0osko0o » 29 сен 2008, 18:12

thanks
Uhm..how can I send mass pm to all members? There's only mass emai though
o0osko0o
 
Сообщения: 53
Зарегистрирован: 23 авг 2008, 07:43

Re: Weird error

Сообщение Nafania » 30 сен 2008, 08:52

There is no mass pm in this source and it not will be.
You can use news and news announcments instead of this.
Аватара пользователя
Nafania
Администратор
 
Сообщения: 1207
Зарегистрирован: 30 июн 2007, 16:10

Re: Weird error

Сообщение o0osko0o » 04 окт 2008, 17:29

thanks for replying

Another problem: when users set their privacy in high mode, even I(Sysop) can't see their status in Downloaded(Snatched) for checking hit & run ...
o0osko0o
 
Сообщения: 53
Зарегистрирован: 23 авг 2008, 07:43

Re: Weird error

Сообщение Nafania » 04 окт 2008, 19:58

I know. It will be fixed with next patch
Аватара пользователя
Nafania
Администратор
 
Сообщения: 1207
Зарегистрирован: 30 июн 2007, 16:10

Re: Weird error

Сообщение o0osko0o » 04 окт 2008, 21:03

great news, thanks :D

btw I can't use unicode in index page(poll, news ..etc). Comments, forum posts are fine though
o0osko0o
 
Сообщения: 53
Зарегистрирован: 23 авг 2008, 07:43

Re: Weird error

Сообщение Nafania » 05 окт 2008, 08:21

Why you can't use it?
Аватара пользователя
Nafania
Администратор
 
Сообщения: 1207
Зарегистрирован: 30 июн 2007, 16:10

Re: Weird error

Сообщение o0osko0o » 08 окт 2008, 14:52

Because it don't show correctly.

Another bug: If the torrent name were too long, the layout will be out of place.

Изображение
Free Image Hosting by ImageBam.com

Also I have a suggestions: when users make offers, the offers link will change to red and show how many new offers just like Tech. Support and Report ;)
o0osko0o
 
Сообщения: 53
Зарегистрирован: 23 авг 2008, 07:43

Re: Weird error

Сообщение Nafania » 09 окт 2008, 12:44

Because it don't show correctly.

Did you change encoding to unicode after post news, polls, etc?
If yes, then delete all *.php files from cache dir (cause main content of index page cached and for you it cached in wrong encoding).

Another bug: If the torrent name were too long, the layout will be out of place.

It's not bug. Do not allow such long names. Edit it manually and replace any '.' to space

Also I have a suggestions: when users make offers, the offers link will change to red and show how many new offers just like Tech. Support and Report

Tech support and reports show only for mods and admins. But offers show to all people. If i add that feature then ,must add one sql query for each page for each user. It's very high load.
Аватара пользователя
Nafania
Администратор
 
Сообщения: 1207
Зарегистрирован: 30 июн 2007, 16:10

Re: Weird error

Сообщение o0osko0o » 09 окт 2008, 18:49

Did you change encoding to unicode after post news, polls, etc?


how should I do it? I mean I already set the news table(in SQL database) to utf-8, then deleted all php files in cache dir, then post a news but it didn't work???

Also I see some index.htm look like this
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">

</body>
</html>

Should I change it to utf-8 too?

Sorry I'm still a noob :(
o0osko0o
 
Сообщения: 53
Зарегистрирован: 23 авг 2008, 07:43

Re: Weird error

Сообщение Nafania » 10 окт 2008, 11:19

how should I do it? I mean I already set the news table(in SQL database) to utf-8, then deleted all php files in cache dir, then post a news but it didn't work???


post link to you tracker

Should I change it to utf-8 too?

no.
Аватара пользователя
Nafania
Администратор
 
Сообщения: 1207
Зарегистрирован: 30 июн 2007, 16:10

Re: Weird error

Сообщение o0osko0o » 10 окт 2008, 15:13

post link to you tracker

damn! Someone fucked up my tracker !!!!!

Currently I don't use unicode so it look fine. But if I use, it will look like this
Изображение

And about the offers: I already set upload permission for users but they still can't make offers????

Also I didn't let the mods see hidden torrents(unchecked hidden) but they still can see them????
o0osko0o
 
Сообщения: 53
Зарегистрирован: 23 авг 2008, 07:43

Re: Weird error

Сообщение o0osko0o » 05 ноя 2008, 08:27

Could you make a subtitle page so users can upload subtitles?
o0osko0o
 
Сообщения: 53
Зарегистрирован: 23 авг 2008, 07:43

Пред.

Вернуться в Forum for non-russian speak users

Кто сейчас на конференции

Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 0