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 →

505 internal server error

505 internal server errorInternal 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 →

nama domain

nama domainTo 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.
web hosting murahWeb Hosting Murah
Menyediakan layanan web hosting Indonesia murah dengan cPanel mendukung PHP, MySql, CMS Joomla dan WordPress.

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} !^your-domain-name-of-course\.com$
RewriteRule ^(.*)$ http://your-domain-name-of-course.com%{REQUEST_URI} [R=301,L]

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]

logo joomla

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.

joomla hostingJoomla Hosting
Dapur Hosting menyediakan layanan web hosting joomla dan murah gratis nama domain hanya Rp 200.000.

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.