
Kalau web anda menampilkan halaman blank padahal web anda ada isinya, artinya ada error yang terjadi pada web anda (coding, konfigurasi, atau file tidak ada). Hal ini terjadi karena server kami mematikan fitur display_errors. Untuk menampilkan error message anda bisa ikuti langkah berikut ini: Read more…
Internal Server Error lagi, Internal Server Error lagi. Kata Internal Server Error memang akrab di mata para pengelola web. Bagi pemula mungkin pesan ini membingungkan. Tapi tidak perlu frustasi. Baca artikel ini untuk mempermudah mengatasi masalah Internal Server Error anda. Read more…
To avoid duplicate content (not relevant), you must chose using www or without www. Another consideration not using www:
- www is sub domain
- www makes URL longer
Before decide, you must check your www pagerank anda without www pagerank.
I prefer to use without www because makes shoter url.
You can redirect all hit on subdomain www to domain on .htaccess. Just add this:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
RewriteRule ^/(.*) http://%1/$1 [L,R=301]
If you prefer to use www instead without www, you can add this script on .htaccess:
RewriteEngine On
rewriteCond %{HTTP_HOST} ^your-domain-name-of-course.com [NC]
rewriteRule ^(.*)$ http://www.your-domain-name-of-course.com/$1 [R=301,L]
Getting this message on your Joomla Admin?
Following PHP Server Settings are not optimal for Security and it is recommended to change them:
- PHP register_globals setting is `ON` instead of `OFF`
Please check the Official Joomla! Server Security post for more information.
You see this because your server is enabling register globals. Why? A lot of scripts still require php register globals to be on. However you can disable it for Joomla fairly easily. Just follow this steps:
- Create local file named php.ini
- Edit php.ini and write this code:[PHP]
register_globals = Off
- Save and close.
- Upload it to public_html and public_html/Administrator
- Test it.
Secara default server kami mematikan fungsi register globas. Register globals diperlukan pada script PHP 4.
Register Globals bisa diaktifkan dan dinonaktifkan dengan cara:
- Login ke cPanel > File Manager
- Navigasi ke direktori yang membutuhkan register global
- Buat file baru dan beri nama php.ini
- Edit file php.ini dan isi dengan teks register_global = off untuk mematikan fungsi register global, register_global = on untuk mengaktifkannya.
Catatan: anda harus menempatkan file php.ini tersebut ke direktori yang membutuhkannya.
Recent Comments