???? ???????????? ?????:
http://punbb.org/forums/viewtopic.php?id=6823

52

(88 replies, posted in Archive)

? ??? ???????????????? ????? ?? ??????.. ?? ?????????? ?? ???????? ?? ???????????? ????????????? ?? ?????? ??????.
???-8 ????? ???????? ???? ? ????????????????? - ?????? ? ????????????? ? CMS

Pascal
??????? ? ?????? question ??? ?????????? ? ????. ??????? ?? ???????? ???? install_mod.php ??? ????

54

(13 replies, posted in Archive)

adsh
?????? ???? ?

Mysql 4.0.24 (?? ?????????? ??????)

???? ??????? . ? ??????? ?? ?????? ?????? ???? ?? ???????  ?????????? ????????? 3 ????? ? ?? ???? ?? ??? ?? ??????? ? ??????????.

55

(88 replies, posted in Archive)

????? ????? ???????? ????????? c ?????????? UTF-8 ? ??????? ????????? w3c:

http://validator.w3.org/check?uri=http% … Fmain.html

??????:

NOTE: :
The Unicode Byte-Order Mark (BOM) in UTF-8 encoded files is known to cause problems for some text editors and older browsers. You may want to consider avoiding its use until it is better supported.

hm.. it`s going more interesting..
I use latin1_general_ci codepage for my mysql database and win-1251 for pages
and all works fine... In Firefox 1.0.3 and IE 6 SP1

but if I change codepage of database to any of win-1251 it`s not working

that`s why I don`t spot the problem, many people in russian use win-1251 codepage for both pages and databases

my software: Apache/2.0.53 (Win32) PHP/5.0.3 MySQL 4.1.10 (UNICODE)

57

(13 replies, posted in Archive)

????????? ??????? ? ??? ????????? (windows-1251 / cp1251).

????? ?????? - ? ???? ?? 5?? ??? ???? ????? ???????
cp1251  (Windows Cyrillic)
cp1251_bin       ????????????? (????????????), ???????? 
cp1251_bulgarian_ci       ??????????, ???????????????? ? ????????
cp1251_general_ci       ????????????? (????????????), ???????????????? ? ????????
cp1251_general_cs       ????????????? (????????????), ?????????????? ? ???????? 
cp1251_ukrainian_ci       ??????????, ???????????????? ? ????????

?????? cp1251_general_ci - ??????? ?? ????????

???? ????? ? php/mysql ????????
? ????????? Apache/2.0.53 (Win32) PHP/5.0.3 MySQL 4.1.10 (Unicode)

58

(13 replies, posted in Archive)

????????????????? -> Options ?????????? ????????????? ? Censor words ? Yes

?????????? ?????? ??? 1.2.5 ? 1.1.5 - ????????? ??????? win-1251, ???? - latin1_general_ci

??? ????????.

oh... they forgot to TURN it ON in Administration...
all works fine

Rickard
v 1.2.5 ,  still same error...

Dexus
???? ?? ????????? ????? ????? ?? ???? ?????.

?? ????? ?? ? ????-??? ??????? ??? ??????? "??????" - ?????????????.

? ??? ??? ???? ???????, ?????????? ??? ??????????? ????? ??????? ? ?????????? ??? ???????

62

(12 replies, posted in Archive)

Beastrus
????? ?????? ?????? ????? ? ? ????? ?????? ???????? ???????????? "?????????"
??? ????????? ??? ???????? ????? ???, ??? ???????? ????? ???/????????

63

(2 replies, posted in Archive)

Spy
????????? ????? ????????? ???? ??????????? ??????? ?? ??????.

??????????? ???? ???? ??? ??????????:
http://punbb.org/forums/viewtopic.php?id=6371

64

(88 replies, posted in Archive)

w3c ?????? ?? ??????????? ????????? ????????? UTF-8 ? ??????.
??? ??????? ?????

Dexus
???? ???????????? ??????? ????????? ????? ? ?????? ?? ???? ??????? ??? ?????????? ???????
??? ?????? ??? ??????????? ??????? ????????? ?? ?????? ?????????

another one think, is to put this into profile wink

???? ??? ????? ? ???? ?????

???????
?? ??????? ????????? ?? ????????? ????? ??????? ???-???? - ??????? ?????????? ????? ?? win-1251
?????? ????????? ? ????????? ?? ????????? (iso-8859-1) ?? ??????? ????? ?? ????????? Mozilla 1.3 ? ????, ? ?? IE 6 ????????????? ?????????

??????? ?? ???????????? ? ????? ?? ???????? - ??? ??????.
??? ????????? ???????? ???????? ?????????? ????????????? ?? "??????????" ????????? - ???? ???????, ??? ???? ????????? 10 ???????? ?? ?? ??????? ??????????? ????????? ?? win1251.
? ?? ? ???? ???? ??????? ??????????? ?????? ??? ????????????? - ??????? ??? ??????? ????????????????? ?????? ???????????? ????????? ?? ?????????.

? ???? ???????? ? ?????? ?????????? ??????????. ????? ?????? ? ????? ?????? ??????? ????????.

??????? ?? ????????.

Pascal
????? ??????????? ????, ??? ????? ???????????? punbb 1.2.5 ??? ??????? ?
1. ??? Easy Poll-1.1.0
http://www.punres.org/download.php?pfid=207
2. ??????? ?? ???????
http://www.hot.ee/buildbsd/punbb/ru-pol … -1.1.0.zip

druvans
thank you for make this idea ALIVE and working wink

????? ????? ?????? easy poll, ??????? ???? ?????????? ?? ?????.
????????? ?????? ???? ???? ????????? ? ???????? ????????? - ??????? ??????? ? ????.

71

(9 replies, posted in Programming)

druvans
that`s exactly what I mean ! but instead of email at right should by profile id for example smile but this is small changes...

can you send me a copy of it to http://www.gotoguide.org/email.php?rightText=aleksei.zaitsev@gmail.com please.

edit: find this one

 <?php
$temp=$_GET["w"];
$order=$_GET["r"];
$color=$_GET['color'];
$font=4;
if (isset($color))
{
$color = str_replace('#','',$color);
$rgb = array('r' => hexdec(substr($color,0,2)),
             'g' => hexdec(substr($color,2,2)),
             'b' => hexdec(substr($color,4,2)));
}
else
 
$rgb = array('r' => 0,
             'g' => 150,
             'b' => 0);
 
 
if (isset($order))
 $temp=implode('~',array_reverse(split('~',$temp)));
 
 
$mail=preg_replace('/~/','@',$temp,1);
$mail=str_replace('~','.',$mail);
 
$width=ImageFontWidth($font)*strlen($mail);
$height=ImageFontHeight($font);
$im = imagecreate($width, $height);
$bg = imagecolorallocate($im, 255, 255, 255);
imagecolortransparent($im,$bg);
imagefill($im,0,0,$bg);
$textcolor = imagecolorallocate($im, $rgb[r], $rgb[g], $rgb[b]);
imagestring($im, $font, 0, 0, $mail, $textcolor);
header("Content-type: image/png");
imagepng($im);
?>

druvans
let`s continue our discussion here

sfackler
I saw it, but spammers may grab from html by

javascript:mail_to('ocknvq<gocknBgzcorng0eqo')

formula and then decode it

G indexes it well, sample:
http://www.google.com/search?q=javascri … 29&btn

I am far from knowing all G tweak but sure it has some search by mask when * is representing any simbol or symbols

Mediator
I am realy sorry for that post, it was my bad ;( It works wery well, I post a russian translation for it.
Connorhd
excuse me too

I would like to thank you for this mod, and provide a link for a Russian translation of this mod:
ru-polls.php-Easy.Poll-1.1.0