Joomla 1.5 修改3306端口

在libraries\joomla\database\database\mysql.php中

第72行修改
// connect to the server
$hostPort = $host .':4406';
if (!($this->_resource = @mysql_connect( $hostPort, $user, $password, true ))) {
$this->_errorNum = 2;
$this->_errorMsg = 'Could not connect to MySQL';
return;
}


解决 index.php/index.php/index.php的问题

修改configuration.php
var $sef = '0';
var $sef_rewrite = '1';
var $sef_suffix = '0';

解决,Joomla1.5媒体管理无法浏览文件的错误

你的電腦上安裝的 Flash player 是 10.x 版吧?Joomla! 1.5.x 的媒體管理預設使用 Flash 做上傳,但不幸的是它與 Flash player 10.x 不相容。

目前的解決方式是到後台的「全站設定」的「系統」下,將「媒體檔案設定」裏的「啟動 Flash 上傳程式」選項改成"否"。

也有人將 Flash player 降級回 9.x 版。不過要注意 9.x 版有安全漏洞。

你可能感兴趣的:(PHP,mysql,Flash)