Archive

Posts Tagged ‘konfigurasi’

Web Blank

October 24th, 2009 Web Hosting Indonesia No comments

error_button

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…

Categories: Web Hosting Tags: , ,

Internal Server Error

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…

Categories: Web Hosting Tags: ,

WWW or Without WWW

January 13th, 2009 Web Hosting Indonesia No comments

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]

Categories: SEO Tags: , ,

Joomla: Register Globals

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:

  1. Create local file named php.ini
  2. Edit php.ini and write this code:[PHP]
    register_globals = Off
  3. Save and close.
  4. Upload it to public_html and public_html/Administrator
  5. Test it.
Categories: Joomla Tags: , ,

Register Globals

Secara default server kami mematikan fungsi register globas. Register globals diperlukan pada script PHP 4.

Register Globals bisa diaktifkan dan dinonaktifkan dengan cara:

  1. Login ke cPanel > File Manager
  2. Navigasi ke direktori yang membutuhkan register global
  3. Buat file baru dan beri nama php.ini
  4. 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.

Categories: Web Hosting Tags: , ,