Joomla Hosting

Random Inspirational Quote Widget by aQuotic



Transfer Domain ke Dapur Hosting

September 27, 2007 – 5:05 pm

Tutorial ini akan membahas kenapa dan bagaimana memindahkan domain anda ke Dapur Hosting.

Perlu diketahui bahwa kebanyakan hosting di dunia adalah reseller domain atau registar  (menjual domain ke perorangan). Dan pihak hosting menggunakan jasa registar yang lebih besar untuk membeli nama domain. Biasanya registar yang digunakan adalah registar yang mendapat hak untuk menjual nama domain dari ICANN atau sering disebut ICANN Registrars. Nah Dapur Hosting adalah reseller domain dari ICANN Registrars  PUBLIC DOMAIN REGISTRY.

Read the rest of this entry »

Share This

SSH

September 16, 2007 – 3:13 pm

SSH Software, Putty, you can download at here:

http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

Share This

Change Meta Title on WordPress

September 10, 2007 – 10:41 pm

You can set meta tags by clicking Option from your WordPress admin menu.

WordPress Meta Title

WordPress Meta Title

Meta tags are important part of your web site, expecially when it comes to Search Engine optimization.

WordPress Meta Title

Share This

WordPress Themes

September 10, 2007 – 10:27 pm

This tutorial will tell you how to change your WordPress Theme, get antoher WordPress Theme, and upload to your web. If you using default WordPress installation, you will see 2 themes provided by WordPress. WordpPress theme can be found under Presentation menu.

Wordpress Themes  Menu

Read the rest of this entry »

Share This

Install WordPress form cPanel Fantastico

September 9, 2007 – 12:49 pm

This tutorial will tell you how to install Wodpress from cPanel Fantastico.

  1. Login to your cpanel, the address may be at http://yourdomain.com/cpanel.
  2. Find Fantastico’s icon and click it.
    fantastico

Read the rest of this entry »

Share This

Export Wordpress.com, Import to your WordPress

September 9, 2007 – 11:18 am

To move existing WordPress.com’s blog to your own WordPress, you must export WordPress.com and import to your WordPress.

Follow this step to move existing WordPress.com’s blog to your own WordPress.

Read the rest of this entry »

Share This

Menggunakan PHP 5

September 3, 2007 – 3:28 pm

Untuk menggunakan PHP 5 di server kami, anda harus:

  • Rename extension script anda menjadi .php5. ATAU
  • Menambahkan syntax AddHandler application/x-httpd-php5 .php di file .htaccess anda.
Share This

How to redirect page using .htaccess

August 31, 2007 – 8:59 pm

Article Source: http://www.ssi-developer.net/htaccess/redirecting.shtml

Introduction:

This guide shows you how to use .htaccess to redirect a specific page to another address. This is probably the best way to redirect pages mainly because of the lack of effort it needs to set up and it’s not browser dependent like some redirection scripts. If you have to reorganise a web site or move pages or change page extensions like I have done recently (Dec 02) then this is a life-saver!

Redirecting

Simply place the following in your .htaccess file:

Redirect /a-directory/oldpage.htm http://domain.com/b-directory/newpage.htm

The command is always the same and comprises three important parts, the word Redirect, the directory/file you want to redirect relative to the root and the full URL of the file you want to redirect to. These three ‘blocks’ must be on one line and each separated by a single space.

You can use this to redirect entire directories:

Redirect /directory http://domain.com/folder/

…or if you have simply changed file extensions:

Redirect /directory/codes.htm http://domain.com/directory/codes.shtml

Very simple but extremely useful!

Share This

.htaccess for Webmasters

August 30, 2007 – 10:48 pm

Grab from http://9tutorials.com/2007/05/12/htaccess-for-webmasters.html

When site is “Under Construction??

This lets google crawl, lets me access (1.1.1.1) without a password, and lets access from anyone WITH a password. It also allows for XHTML and CSS validation through w3.org

update combined allow code credit: megaspaz

AuthName “Under Development”
AuthUserFile /home/askapache.com/.htpasswd
AuthType basic
Require valid-user
Order Deny,Allow
Deny from all
Allow from 1.1.1.1 w3.org googlebot.com google.com google-analytics.com
Satisfy Any

Redirect everyone to different site except 1 IP

ErrorDocument 403 http://www.htaccesselite.com
Order deny,allow
Deny from all
Allow from 1.1.1.1

Redirect all but 1 IP to different site, using mod_rewrite

RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_HOST} !^1.1.1.1
RewriteRule .* http://www.htaccesselite.com [R=302,L]

Redirect Everyone but you to alternate page on your server

RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_HOST} !^1.1.1.1
RewriteCond %{REQUEST_URI} !/temporary-offline.html$
RewriteRule .* /temporary-offline.html [R=302,L]

Set the Timezone of the server

SetEnv TZ America/Indianapolis

Set the Server Administrator Email

Include a link to your email address in Apache-Generated Error Documents. Shows up on default Apache error pages

ServerSignature EMail
SetEnv SERVER_ADMIN spamkill@spamkill.com

Turn off the ServerSignature

Turns off the address part of your Server Signature in Apache generated Error Documents.

ServerSignature Off

Force File download, do not display/open in browser

In your HTML directly link to the file.. Download Movie1. Now you will get a pop-up box asking whether you want to save the file or open it.

AddType application/octet-stream .avi
AddType application/octet-stream .mpg
AddType application/octet-stream .mov
AddType application/octet-stream .pdf

Process .gif files with a cgi script

When a user requests a .gif file (image/gif) the server instead of serving that .gif file it serves the results of /cgi-bin/filter.cgi

Action image/gif /cgi-bin/filter.cgi

Process Requests with certain Request Methods

Script PUT /cgi-bin/upload.cgi
Script HEAD /cgi-bin/head-robot.cgi

Make any file be a certain filetype

Makes image.gif, blah.html, index.cgi all act as php

ForceType application/x-httpd-php

Use IfModule for robustness

Basically if the module is found it will perform the code inside the tag.


# any mod_rewrite directives here


# any Expires Directives go here


# any Header directives go here

Share This

Broken Link Checker

July 23, 2007 – 11:34 am

Kunjungi situ w3.org di bawah ini untuk test broken link web anda.

http://validator.w3.org/checklink

Share This