Khó chịu nhất là lổi này khi bạn cài dạng url temp, hoặc vài tính huống tương tự. Vậy làm sao khắc phục đây:
Tạo một folder tên 'tmp' trong thư mục gốc cài đặt, CHMOD 777
Mở file index.php ở thư mục installation.
Tìm đoạn:
Code:
<td class="item">
Session save path
</td>
<td align="left" valign="top">
<?php echo is_writable( ) ? '<b><font color="green">Writeable</font></b>' : '<b><font color="red">Unwriteable</font></b>';?>
</td>
Thay bằng:
Code:
<td class="item">
Session save path
</td>
<td align="left">
<b><?php ini_set('session.save_path','/home/pchuk/public_html/mambo/tmp'); ?></b>,
<b><?php echo ((=ini_get('session.save_path'))?:'Not set'); ?></b>,
<?php echo is_writable( ) ? '<b><font color="green">Writeable</font></b>' : '<b><font color="red">Unwriteable</font></b>';?>
</td>
Done!