레드헛(redhat) 9.0 를 설치하려고 합니다. apm 설명 부탁합니다. 정보
레드헛(redhat) 9.0 를 설치하려고 합니다. apm 설명 부탁합니다.본문
apm 설명 부탁합니다. 라고 글을 적었지만 설치법은 알고 있습니다 ^^;;
문제는 9.0 에서 설치할 apm 인데 버전이 여러게더군요..
여지것 레드헛 7.3 에서 apache 1.3x php 4 mysql 3x 사용하였습니다.
아래는 현재 최신 버전들입니다.
여기서 각 버전마다 특징을 모르는게 문제입니다.
궁합을 맞춰서 설치해야 될건데... 인코딩(uft8) 문제도 있고요
혹시 apm 잘아시면 각 버전별로설명을 부탁드립니다.
아 그리고 영문링크는 사절입니다.(영어 전혀모름)
Apache 2.2.0 Released
Apache 2.0.55 Released
Apache 1.3.34 Released
Apache 2.0.55 Released
Apache 1.3.34 Released
PHP 5.1.2
PHP 4.4.2
MySQL 5.0 -- Generally Available (GA) release for production use
MySQL 5.1 -- Beta release New!, Test new features early!
MySQL 4.1 -- Previous GA release
MySQL 4.1 -- Previous GA release
댓글 전체
redhat 9.0x 메뉴얼이
A:1.3.27
p:4.3.1
M:4.0.12 기준으로 되어있는데요...
저두..5.0 에 관심있어서..둘러 보았는데
system 접근성..?? 디렉토리별 스페이스관리라든가..
몰라서 그러는지 달라진..점을 모르겠습니다.
자동으로 db 와 소스를 uf8로..컨버트 가능한지...??
몇개 메모를 한게 있네요...
참고나 될지 모르겠습니다..영어?? 노이로제는 저두있습니다.ㅋ
utf-8 문제
http://www.powerdb.net/?inc=read&aid=24448&criteria=mysql&subcrit=qna&id=&limit=20&keyword=&page=1
구글검색
http://www.google.co.kr/search?q=converting+for+utf-8+php+script&hl=ko&lr=&newwindow=1&start=30&sa=N
출처:
http://www.vbulletin.com/forum/archive/index.php/t-115931.html
View Full Version : Arabic Language & UTF-8
--------------------------------------------------------------------------------
m0hSep 16th 2004, 5:22pm
Hello,
I have been trying all day to add arabic language support to my forum, my problem is that I'm using UTF-8 and the Arabic language file I'm using is set to use windows-1256 so after I install the language file it works great if I use the encoding windows-1256 but when I change back to UTF-8 all the Arabic text get messed up!
Any ideas?
--------------------------------------------------------------------------------
Steve MacholSep 16th 2004, 5:25pm
<Moved to Languages forum>
Not sure if I can help much with this, but if it worked great with windows-1256 why change it?
--------------------------------------------------------------------------------
m0hSep 16th 2004, 5:32pm
Bec. most of my users are linux users, windows-1256 is not some thing they like :)
Also bec. changing the encoding will break my old posts.
I think I'll have to change the encoding of the language file to utf-8, but I'm not sure how to do that!
Thanx :)
--------------------------------------------------------------------------------
Steve MacholSep 16th 2004, 9:03pm
Admin CP -> Languages & Phrases -> Language Manager -> Edit Settings
--------------------------------------------------------------------------------
m0hSep 16th 2004, 9:21pm
Thanx for your reply :)
My problem is that the text of the Arabic language is stored in my database in the windows-1256 format so what I need to do it to convert it to uft-8, either convert the language data in my database or the language file then readd it.
--------------------------------------------------------------------------------
Steve MacholSep 16th 2004, 10:34pm
Sorry I have no idea how to do that. Perhaps someone else will.
--------------------------------------------------------------------------------
Scott MacVicarSep 16th 2004, 10:48pm
converting text from one character set to another isn't that easy.
Do you have the iconv extension installed in PHP?
--------------------------------------------------------------------------------
m0hSep 17th 2004, 1:01pm
Nope, but I'll install it now.
--------------------------------------------------------------------------------
m0hSep 17th 2004, 3:20pm
Its now installed, what is the next step?
--------------------------------------------------------------------------------
m0hSep 17th 2004, 5:22pm
Ok, I make a test file to convert the phrase in the database to utf-8 using iconv, it worked and the phrases are no converted, but still the text is messed up! is there any thing else I should do?
Thanx :)
<?php
include("commen.php");
$dbcnx = dbConnect("linuxeg_vbulliten");
$do =50;
$TutList = mysql_query("SELECT text,phraseid FROM `phrase` WHERE languageid =9 LIMIT $start , $do");
$start=$start+$do;
while ( $row = mysql_fetch_array($TutList) ) {
$text = $row["text"];
$phraseid = $row["phraseid"];
$ntext = iconv("windows-1256", "UTF-8", $text);
mysql_query("UPDATE `phrase` SET text = '$ntext' where phraseid = $phraseid");
echo mysql_error();
echo "$ntext <br>";
}
?>
<script type="text/javascript">
window.location="test.php?do=<?=$do?>&start=<?=$start?>";
</script>
--------------------------------------------------------------------------------
m0hSep 17th 2004, 5:43pm
umm, looks like this was so simple!
All I need was
iconv -f windows-1256 -t utf-8 vbulletin-language.xml > vbulletin-language-new.xml
And at last its now working :cool:
Thanx everyone for your help :)
--------------------------------------------------------------------------------
BasharNov 21st 2005, 12:15pm
umm, looks like this was so simple!
All I need was
iconv -f windows-1256 -t utf-8 vbulletin-language.xml > vbulletin-language-new.xml
And at last its now working :cool:
Thanx everyone for your help :)
Perfect solution just tested it and works as charm :)
guess what this thread is the first hit for google when looking fir "convert windows-1256 to utf-8" ;)
--------------------------------------------------------------------------------
이 글을 보고 노하우를 얻어서 php 파일도 ...
PHP DevJan 6th 2006, 4:54pm
I want to know how could you execute this command:
iconv -f windows-1256 -t utf-8 vbulletin-language.xml > vbulletin-language-new.xml
Does Iconv contain command line features, not just a PHP add-one.
I hope that you teel me how to do that step-by-step to make my translation for all, that located here:
http://www.vbulletin.com/forum/showthread.php?t=168064
It contain ALL vBulletin 3.x Arabic files.
--------------------------------------------------------------------------------
BasharJan 6th 2006, 6:19pm
I want to know how could you execute this command:
iconv -f windows-1256 -t utf-8 vbulletin-language.xml > vbulletin-language-new.xml
Does Iconv contain command line features, not just a PHP add-one.
I hope that you teel me how to do that step-by-step to make my translation for all, that located here:
http://www.vbulletin.com/forum/showthread.php?t=168064
It contain ALL vBulletin 3.x Arabic files. iconv is command line not php addon (atleast on freebsd boxes)
just try man iconv
A:1.3.27
p:4.3.1
M:4.0.12 기준으로 되어있는데요...
저두..5.0 에 관심있어서..둘러 보았는데
system 접근성..?? 디렉토리별 스페이스관리라든가..
몰라서 그러는지 달라진..점을 모르겠습니다.
자동으로 db 와 소스를 uf8로..컨버트 가능한지...??
몇개 메모를 한게 있네요...
참고나 될지 모르겠습니다..영어?? 노이로제는 저두있습니다.ㅋ
utf-8 문제
http://www.powerdb.net/?inc=read&aid=24448&criteria=mysql&subcrit=qna&id=&limit=20&keyword=&page=1
구글검색
http://www.google.co.kr/search?q=converting+for+utf-8+php+script&hl=ko&lr=&newwindow=1&start=30&sa=N
출처:
http://www.vbulletin.com/forum/archive/index.php/t-115931.html
View Full Version : Arabic Language & UTF-8
--------------------------------------------------------------------------------
m0hSep 16th 2004, 5:22pm
Hello,
I have been trying all day to add arabic language support to my forum, my problem is that I'm using UTF-8 and the Arabic language file I'm using is set to use windows-1256 so after I install the language file it works great if I use the encoding windows-1256 but when I change back to UTF-8 all the Arabic text get messed up!
Any ideas?
--------------------------------------------------------------------------------
Steve MacholSep 16th 2004, 5:25pm
<Moved to Languages forum>
Not sure if I can help much with this, but if it worked great with windows-1256 why change it?
--------------------------------------------------------------------------------
m0hSep 16th 2004, 5:32pm
Bec. most of my users are linux users, windows-1256 is not some thing they like :)
Also bec. changing the encoding will break my old posts.
I think I'll have to change the encoding of the language file to utf-8, but I'm not sure how to do that!
Thanx :)
--------------------------------------------------------------------------------
Steve MacholSep 16th 2004, 9:03pm
Admin CP -> Languages & Phrases -> Language Manager -> Edit Settings
--------------------------------------------------------------------------------
m0hSep 16th 2004, 9:21pm
Thanx for your reply :)
My problem is that the text of the Arabic language is stored in my database in the windows-1256 format so what I need to do it to convert it to uft-8, either convert the language data in my database or the language file then readd it.
--------------------------------------------------------------------------------
Steve MacholSep 16th 2004, 10:34pm
Sorry I have no idea how to do that. Perhaps someone else will.
--------------------------------------------------------------------------------
Scott MacVicarSep 16th 2004, 10:48pm
converting text from one character set to another isn't that easy.
Do you have the iconv extension installed in PHP?
--------------------------------------------------------------------------------
m0hSep 17th 2004, 1:01pm
Nope, but I'll install it now.
--------------------------------------------------------------------------------
m0hSep 17th 2004, 3:20pm
Its now installed, what is the next step?
--------------------------------------------------------------------------------
m0hSep 17th 2004, 5:22pm
Ok, I make a test file to convert the phrase in the database to utf-8 using iconv, it worked and the phrases are no converted, but still the text is messed up! is there any thing else I should do?
Thanx :)
<?php
include("commen.php");
$dbcnx = dbConnect("linuxeg_vbulliten");
$do =50;
$TutList = mysql_query("SELECT text,phraseid FROM `phrase` WHERE languageid =9 LIMIT $start , $do");
$start=$start+$do;
while ( $row = mysql_fetch_array($TutList) ) {
$text = $row["text"];
$phraseid = $row["phraseid"];
$ntext = iconv("windows-1256", "UTF-8", $text);
mysql_query("UPDATE `phrase` SET text = '$ntext' where phraseid = $phraseid");
echo mysql_error();
echo "$ntext <br>";
}
?>
<script type="text/javascript">
window.location="test.php?do=<?=$do?>&start=<?=$start?>";
</script>
--------------------------------------------------------------------------------
m0hSep 17th 2004, 5:43pm
umm, looks like this was so simple!
All I need was
iconv -f windows-1256 -t utf-8 vbulletin-language.xml > vbulletin-language-new.xml
And at last its now working :cool:
Thanx everyone for your help :)
--------------------------------------------------------------------------------
BasharNov 21st 2005, 12:15pm
umm, looks like this was so simple!
All I need was
iconv -f windows-1256 -t utf-8 vbulletin-language.xml > vbulletin-language-new.xml
And at last its now working :cool:
Thanx everyone for your help :)
Perfect solution just tested it and works as charm :)
guess what this thread is the first hit for google when looking fir "convert windows-1256 to utf-8" ;)
--------------------------------------------------------------------------------
이 글을 보고 노하우를 얻어서 php 파일도 ...
PHP DevJan 6th 2006, 4:54pm
I want to know how could you execute this command:
iconv -f windows-1256 -t utf-8 vbulletin-language.xml > vbulletin-language-new.xml
Does Iconv contain command line features, not just a PHP add-one.
I hope that you teel me how to do that step-by-step to make my translation for all, that located here:
http://www.vbulletin.com/forum/showthread.php?t=168064
It contain ALL vBulletin 3.x Arabic files.
--------------------------------------------------------------------------------
BasharJan 6th 2006, 6:19pm
I want to know how could you execute this command:
iconv -f windows-1256 -t utf-8 vbulletin-language.xml > vbulletin-language-new.xml
Does Iconv contain command line features, not just a PHP add-one.
I hope that you teel me how to do that step-by-step to make my translation for all, that located here:
http://www.vbulletin.com/forum/showthread.php?t=168064
It contain ALL vBulletin 3.x Arabic files. iconv is command line not php addon (atleast on freebsd boxes)
just try man iconv
위에 설명되로하면 잘되는지는 몰라도
에전에 utf 로 변환하려고
redhat 7.3 에서..
apache 1.3.xx 에서는 AddDefaultCharset UTF-8
AddDefaultCharset 없더군요.. 만들어줬던것 같던데?
mysql 4.0 버전에서도
테스트 한것같은데
없는것 일부러 만들어서 테스트 해봤지요
utf 쓰자마자 바로 에러가 엄청 난걸루 기억하고 있습니다..
ㅎㅎㅎ
링크보니간 거의다가 다른버전에서 테스트하고 있군요..
에전에 utf 로 변환하려고
redhat 7.3 에서..
apache 1.3.xx 에서는 AddDefaultCharset UTF-8
AddDefaultCharset 없더군요.. 만들어줬던것 같던데?
mysql 4.0 버전에서도
테스트 한것같은데
없는것 일부러 만들어서 테스트 해봤지요
utf 쓰자마자 바로 에러가 엄청 난걸루 기억하고 있습니다..
ㅎㅎㅎ
링크보니간 거의다가 다른버전에서 테스트하고 있군요..
음..
그것이 문제죠..
그러기 때문에 버젼에 상관없이 어떤 방법을 썻는지..
알려고 하는..거 였습니다.
그 에러가 없어야 하는데요...링크 보시면 포럼의 내용입니다.
위의 소스를 응용해서
스쿨같은데서 완벽하진 않아도 팁들이 나오고...
하는데..만능은 없겠죠??
이번에 5.0 대로 전부하시고 사용기 한번 올려주세요~~ㅋ
그것이 문제죠..
그러기 때문에 버젼에 상관없이 어떤 방법을 썻는지..
알려고 하는..거 였습니다.
그 에러가 없어야 하는데요...링크 보시면 포럼의 내용입니다.
위의 소스를 응용해서
스쿨같은데서 완벽하진 않아도 팁들이 나오고...
하는데..만능은 없겠죠??
이번에 5.0 대로 전부하시고 사용기 한번 올려주세요~~ㅋ
이 php 코드는 혹시 인터넷상에서 mysql 인코딩하는?
<?php
include("commen.php");
$dbcnx = dbConnect("linuxeg_vbulliten");
$do =50;
$TutList = mysql_query("SELECT text,phraseid FROM `phrase` WHERE languageid =9 LIMIT $start , $do");
$start=$start+$do;
while ( $row = mysql_fetch_array($TutList) ) {
$text = $row["text"];
$phraseid = $row["phraseid"];
$ntext = iconv("windows-1256", "UTF-8", $text);
mysql_query("UPDATE `phrase` SET text = '$ntext' where phraseid = $phraseid");
echo mysql_error();
echo "$ntext <br>";
}
?>
<script type="text/javascript">
window.location="test.php?do=<?=$do?>&start=<?=$start?>";
</script>
<?php
include("commen.php");
$dbcnx = dbConnect("linuxeg_vbulliten");
$do =50;
$TutList = mysql_query("SELECT text,phraseid FROM `phrase` WHERE languageid =9 LIMIT $start , $do");
$start=$start+$do;
while ( $row = mysql_fetch_array($TutList) ) {
$text = $row["text"];
$phraseid = $row["phraseid"];
$ntext = iconv("windows-1256", "UTF-8", $text);
mysql_query("UPDATE `phrase` SET text = '$ntext' where phraseid = $phraseid");
echo mysql_error();
echo "$ntext <br>";
}
?>
<script type="text/javascript">
window.location="test.php?do=<?=$do?>&start=<?=$start?>";
</script>