
Bạn có thể thử 1 trong 3 cách sau:
.htaccess - Tạo file này, đặt ở thư mục chứa Joomla! với nội dung sau
- Mã: Chọn tất cả
php_value session.save_path /var/www/vinaora.com/custom/session_save_path
php_flag safe_mode Off
php_flag display_errors On
php_flag file_uploads On
php_flag magic_quotes_gpc On
php_flag magic_quotes_runtime Off
php_flag register_globals Off
php_flag output_buffering Off
php_value session.auto_start 1
php_value upload_tmp_dir /var/www/vinaora.com/custom/upload_tmp_dir
php_value upload_max_filesize 20M
php_value memory_limit 16M
php.ini - Tạo file này, đặt ở thư mục chứa Joomla! với nội dung sau
- Mã: Chọn tất cả
session.save_path = "/var/www/vinaora.com/custom/session_save_path"
safe_mode = Off
display_errors = On
file_uploads = On
magic_quotes_gpc = On
magic_quotes_runtime = Off
register_globals = Off
output_buffering = Off
session.auto_start = 1
upload_tmp_dir = "/var/www/vinaora.com/custom/upload_tmp_dir"
upload_max_filesize = 16M
memory_limit = 16M
log_errors = On
error_log = /var/www/vinaora.com/custom/phperrors.log
globals.php - Thêm đoạn mã sau vào file này
- Mã: Chọn tất cả
<?php
ini_set('safe_mode', 'Off');
ini_set('register_globals', 'Off');
ini_set('session.save_path', '/var/www/vinaora.com/custom/session_save_path');
//...
?>
Lưu ý:
[-]. Nhớ thay các đường dẫn bằng các đường dẫn phù hợp
, đừng để vinaora.com 
[1]. Có thể sử dụng dấu nháy kép "" hoặc dấu nháy đơn '' để bao quanh các giá trị
[2]. Đường dẫn trên Windows có dạng "C:\\www\\vinaora.com" hoặc "C:\www\vinaora.com"
[3]. Đường dẫn trên Linux có dạng "/www/vinaora.com/public_html" ...
[4]. Tùy theo phiên bản PHP, trong một số trường hợp có thể cần dấu / phía cuối đường dẫn






: ( 

, đó là yêu cầu đầu tiên của việc vọc bất kỳ cái gì chứ không riêng gì Joomla cả.