DirectoryIndex index.php
<FilesMatch"\.(php|inc)$">
Orderallow,denydeny from all
</FilesMatch>
<FilesMatch"(index.php|dl.php|ut.php|lt.php|download.php)$">
Orderallow,denyallow from all
</FilesMatch>
# php_flag magic_quotes_gpc on
"user_blacklist_data"=>array(// "email" => array("varchar(255) not null unique","Email"),"email"=>array("varchar(233) not null unique","Email"),"name"=>array("varchar(100) not null","Name of Dataitem"),"data"=>array("text",""),"index_1"=>array("emailidx (email)",""),"index_2"=>array("emailnameidx (email,name)",""),),
# select the language module to use
# Look for <country>.inc files in the texts directory
# to find your language
# this is the language for the frontend pages. In the admin pages you can
# choose your language by using the dropdown in the pages.
#$language_module = "english.inc";
$language_module="japanese.inc";# what is your Mysql database server
#$database_host = "localhost";
$database_host="mysqlxxx.firebird.netowl.jp";# what is the name of the database we are using
#$database_name = "phplistdb";
$database_name="user_phplist";# who do we log in as?
#$database_user = "phplist";
$database_user="user_phplist";# and what password do we use
#$database_password = 'phplist';
$database_password='phplistpassword';# if you use multiple installations of PHPlist you can set this to
# something to identify this one. it will be prepended to email report
# subjects
$installation_name='PHPlist';# if you want a prefix to all your tables, specify it here,
$table_prefix="phplist_";# if you want to use a different prefix to user tables, specify it here.
# read README.usertables for more information
$usertable_prefix="phplist_user_";# if you change the path to the PHPlist system, make the change here as well
# path should be relative to the root directory of your webserver (document root)
# you cannot actually change the "admin", but you can change the "lists"
# DO NOT include the file eg "index.php" because that is added when required. If you do
# it is likely to break the tracking, see http://mantis.phplist.com/view.php?id=15542
$pageroot='/lists';$adminpages='/lists/admin';
/**
* Sets the CharSet of the message.
* @var string
*/#var $CharSet = "iso-8859-1";
var$CharSet="iso-2022-jp";
36-37行目:文字コード : 'iso-2022-jp' へ変更しています。
45
46
47
48
49
50
51
/**
* Sets the Encoding of the message. Options for this are "8bit",
* "7bit", "binary", "base64", and "quoted-printable".
* @var string
*/#var $Encoding = "8bit";
var$Encoding="7bit";
50-51行目:エンコード : '7bit' へ変更しています。
402
403
404
405
406
function SendmailSend($header,$body){$body=mb_convert_encoding($body,$this->CharSet);if($this->Sender!="")$sendmail=sprintf("%s -oi -f %s -t",$this->Sendmail,$this->Sender);
403行目:文字コードを変換処理を追加しています。
433
434
435
436
437
438
function MailSend($header,$body){$body=mb_convert_encoding($body,$this->CharSet);$to="";for($i=0;$i<count($this->to);$i++){
434行目:文字コードを変換処理を追加しています。
473
474
475
476
477
function SmtpSend($header,$body){$body=mb_convert_encoding($body,$this->CharSet);include_once($this->PluginDir."class.smtp.php");$error="";
474行目:文字コードを変換処理を追加しています。
1159
1160
1161
1162
1163
1164
function EncodeHeader ($str,$position='text'){$str=mb_encode_mimeheader($str,$this->CharSet,"B");$x=0;switch(strtolower($position)){
口コミ・評判
口コミ・評判を投稿 :