초보가 통 이해가안되서 질문하나 드립니다.

karistuck의 이미지

http://karistuck.igear.biz/jing/2byte_charactor.png
http://karistuck.igear.biz/jing/2byte_charactor2.png

그림보시면 알겠지만 제목에 한글을 쓰면 한글이 깨져보입니다.

저 프로그램 SlideShowPro Director 입니다.

한글을 입력하고 다시 수정하려면 저런식으로 깨져서 나오는데

호스팅의 관리자분께서 밑에와 같이 알려주셨습니다.
=======================================================================

문의하신 사항은 서버와 관계가 없습니다. 사용하시는 프로그램에서 utf-8 을 지원하는지
확인해 보셔야 할듯 합니다.

utf-8을 지원하다면, mysql_connect 되는 부분에 아래와 같이 추가해주십시요.
mysql_query("set names utf8");

=======================================================================

mysql_connect 되는부분이 어디서 찾아야 할지 모르겠습니다.

mysql_query("set names utf8"); <-- 이부분을 넣고 싶은데

찾질못해 천장만 바라보고 있습니다.

좋은하루되십시오.

===============
php안의 저부분을 찾았습니다. 화일이 3개로 압축되었습니다.

$link = @mysql_connect($server, $user, $pass);
if (!$link) {
$this->set('connection_error', true);
$this->set('mysql_error', mysql_error());
} elseif (@!mysql_select_db($details['name'])) {
$this->set('db_select_error', true);
$this->set('mysql_error', mysql_error());

위의화일은 install_controller.php 입니다..

또다른 부분은

* Connects to the database using options in the given configuration array.
*
* @return boolean True if the database could be connected, else false
*/
function connect() {
$config = $this->config;
$this->connected = false;
$this->connection = mysqli_connect($config['host'], $config['login'], $config['password'], $config['database'], $config['port']);

if ($this->connection !== false) {
$this->connected = true;
}

if (!empty($config['encoding'])) {
$this->setEncoding($config['encoding']);
}
return $this->connected;

위의 화일이름은 dbo_mysql.php 입니다.

세번째 부분은

* MySQL 'localhost' to add a port number use 'localhost:port#'
* PostgreSQL 'localhost' to add a port number use 'localhost port=5432'
*
*/
class DATABASE_CONFIG
{
var $default = array('driver' => 'mysql',
'connect' => 'mysql_connect',
'host' => DIR_DB_HOST,
'login' => DIR_DB_USER,
'password' => DIR_DB_PASSWORD,
'database' => DIR_DB,
'prefix' => DIR_DB_PRE);
}
?>

위의화일이름은 database.php 입니다.

위의 3화일중에 진짜가 어느것일까요? 저부분을 지우고 다시 쳐넣어야하는건가요?

좋은시간되십시오.

shyblue의 이미지

if ($this->connection !== false) {
$this->connected = true;
}
 << 이쯤에 넣으시면 되겠군요.
if (!empty($config['encoding'])) {
$this->setEncoding($config['encoding']);
}

時日也放聲大哭

時日也放聲大哭

karistuck의 이미지

shyblue님께서 알려주신대로 넣어보았지만 증상이 똑같은거보니

저프로그램이 utf-8을 지원하지 않는것 같습니다.

^^;;

감사합니다. 좋은밤되십시오

텍스트머드가좋아요~

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.