13 Mar 2008 @ 2:43 AM 

 

 

addon domain adalah domain baru yang diletakkan pada domain utama anda. addon domain akan menambah direktori baru pada account hosting yang anda miliki. ( numpang hosting pada suatu domen yg sudah mempunyai hosting)

Keuntungan menggunakan add on domain adalah,
1. anda tidak perlu membuat account hosting baru untuk sebuah domain
2. Add domain akan menggunakan resource yang sama dengan domain utama (space, bandwith, dll) 3. add on domain dapat diakses menggunakan:

contoh: domain utama anda adalah http://www.domainA.com dan domain yang akan di add adalah http://www.domainB.com.
maka untuk mengakses http://www.domainB.com anda dapat menggunakan:
http://www.domainB.com atau http://www.domainA.com/domainB

catatan:
- paket hosting yang anda gunakan harus sudah mendukung fasilitas add on domain
- sebelumnya pastikan dulu domain anda terletak pada name server yang sama. anda dapat mengubah ns dari control panel domain yang telah diberikan oleh perusahaan tempat anda membeli domain tersebut. - domain yang di addon, tidak memiliki akses cpanel, namun memiliki akses FTP

Dokumentasi cara menambahkan adddon >>klik di sini<<

Tags Tags: , , , , , , , , , ,
Categories: Reviews
Posted By: dedi
Last Edit: 20 Mar 2008 @ 11 38 PM

E-mailPermalinkComments (2)
 26 Feb 2008 @ 3:55 AM 

Well.. kadang kala bingung mo bikin situs… mo pake lang apa? ribet juga….kadang make php tapi takut ketahuan bug(kelemahannya)  nah untuk menyiasatinya, berbagai kalangan masih percaya .html adalah complete script

AddHandler application/x-httpd-php5 .php .html .htm

kode di atas bisa di tambahkan pada .htaccess dan kode di atas berarti bahwa add handling parsed php5 biar bisa berjalan pada html Script.

Tags Tags: , , , , , , , , ,
Categories: Reviews
Posted By: dedi
Last Edit: 26 Feb 2008 @ 03 55 AM

E-mailPermalinkComments (1)
 21 Feb 2008 @ 10:57 AM 

01.jpgSetting/ konfigurasi mail klien lewat outlook, silahkan anda ikuti langkah langkah berikut ini

ada beberapa seting yang harus dilakukan di aplikasi mail klien tersebut, seperti menentukan mail server yang ingin dipakai dan username akun imelnya. untuk itu, pastikan Anda menggunakan format konfigurasi di bawah ini sebagai panduan.

contoh :

incoming/POP3 = mail.dee-dii.info ==> ini bisa langsung menuliskan nama domainnya saja misal dee-dii.info

outgoing/SMTP = mail.dee-dii.info ==> ini sama seperti di atas bisa langsung menggunakan nama domain nya

username = test@dee-dii.info

hasilnya bisa jadi seperti dlm gambar berikut ini 02.jpg03.jpg04.jpg05.jpg06.jpg ==> untuk lebih jelas capture-nya langsung klik aja gambar nya…

dalam sebuah domain biasanya didaftarkan beberapa account email yang masing² memiliki quota. agar tiap akun imel tersebut tidak melebihi quota yang telah ditetapkan, salah satu solusinya adalah memindahkan semua imel ke komputer Anda. untuk menerapkan hal tersebut, pastikan untuk menonaktifkan options [Leave a copy of messages on server]. dengan begitu, tiap kali Anda mengklik tombol [send and recieve], semua imel akan dipindahkan dari mail server ke komputer Anda.

catatan :
beberapa penyedia layanan koneksi internet (misalnya telkom) mengharuskan penggunanya untuk menggunakan mail server mereka dalam pengiriman email (smtp). untuk itu, silakan Anda isikan nama mail server mereka di bagian outgoing server.

 19 Feb 2008 @ 10:45 AM 

cara simple untuk check name server dr command dos…

asumsi domain yg akan dicoba adalah yahoo.com

masuk ke command dos [bisa dr startup , pilih run, ketik cmd lalu tekan OK] lalu ketik command berikut di bawah ini

  • nslookup
  • server a.gtld-servers.net
  • set query=ns
  • namadomain sesuai asumsi yaitu “yahoo.com”

maka hasilnya akan spt ini

F:\Documents and Settings\Dedi>nslookup
Default Server: ns2.3gate.net
Address: 202.127.97.19

> server a.gtld-servers.net
Default Server: a.gtld-servers.net
Address: 192.5.6.30

> set query=ns
> yahoo.com
Server: a.gtld-servers.net
Address: 192.5.6.30

Non-authoritative answer:
yahoo.com nameserver = ns1.yahoo.com
yahoo.com nameserver = ns2.yahoo.com
yahoo.com nameserver = ns3.yahoo.com
yahoo.com nameserver = ns4.yahoo.com
yahoo.com nameserver = ns5.yahoo.com

ns1.yahoo.com internet address = 66.218.71.63
ns2.yahoo.com internet address = 68.142.255.16
ns3.yahoo.com internet address = 217.12.4.104
ns4.yahoo.com internet address = 68.142.196.63
ns5.yahoo.com internet address = 216.109.116.17

see…how simple it works??? drpada susah susah harus buka situs yg menyediakan fasilitas whois… :D klo hanya untuk cek name server doank bisa dari command dos bukan?? hehehehe… :D

Tags Tags: , , , , , , , , , , , ,
Categories: Reviews
Posted By: dedi
Last Edit: 19 Feb 2008 @ 10 51 AM

E-mailPermalinkComments (1)
 14 Feb 2008 @ 3:24 PM 

CREATING CUSTOM ERROR MESSAGES WITH .htaccess

Our servers default to the “standard” Apache error message pages for most common browser errors. If you want to develop your own error pages, you’ll need to define those pages in a file named .htaccess, which you upload into your main www directory. The custom error pages that you develop also need to be uploaded into your www directory.

401 Authorization Required

This is the page that’s displayed when a user attempts to enter a password-protected directory with an incorrect login and password. To define your custom error page as authorization.html, add the following line to your .htaccess file:

ErrorDocument 401 /authorization.html

403 Access Forbidden

This is the page that’s displayed when a user attempts to enter non-web-enabled directory (e.g., this page will be displayed when the user attempts to enter a directory that does not have an index page defined. They’ll also get this page if your account is disabled.) To define your custom error page as access.html, add the following line to your .htaccess file:

ErrorDocument 403 /access.html

500 Internal Server Error

This is the page your visitors see when there is an error processing a CGI script. To define your error page as ise.html, add this line to your .htaccess file:

ErrorDocument 500 /error.html

Note: If the full URL of your site is http://www.yourdomain.com, /error.html means its location is http://www.yourdomain.com/error.html.

Error Codes

There are a number of possible errors that a visitor might encounter. Each of these errors is associated with a numeric code (e.g., 401, 403, 500 as described above.) You can develop your own error document for any of these codes:

400 Bad Request
401 Authorization Required
402 Payment Required (not used yet)
403 Forbidden
404 Not Found
405 Method Not Allowed
406 Not Acceptable (encoding)
407 Proxy Authentication Required
408 Request Timed Out
409 Conflicting Request
410 Gone
411 Content Length Required
412 Precondition Failed
413 Request Entity Too Long
414 Request URI Too Long
415 Unsupported Media Type
500 Internal Server Error
501 Not Implemented
502 Bad Gateway
503 Service Unavailable
504 Gateway Timeout
505 HTTP Version Not Supported
 14 Feb 2008 @ 3:02 PM 

FUN WITH .htaccess

The Apache web server has a number of configuration options that are available to the server administrator. In a shared hosting environment, you don’t have access to the main Apache configuration so you’re stuck with the default configuration. However, it is possible to override some of the default settings by creating (or editing) a file named .htaccess.

The .htaccess is a simple ASCII text file placed in your www directory or in a subdirectory of your www directory. You can create or edit this file in any text editor (such as NotePad) and then upload it to the directory for which you want to modify the settings. Be sure that the file is uploaded in ASCII (not BINARY) format, and be sure that the file permissions for the file are set to 644 (rw-r–r–). This allows the server to access the file, but prevents visitors from accessing the file through their web browser (a security risk.)

Commands in the .htaccess file affect the directory that it’s placed in and all subdirectories. If you place the .htaccess file in your www directory, it will affect your entire web site. If you place it in a subdirectory of your www directory, it will affect only that directory plus and subdirectories of that directory.

Most .htaccess commands are designed to be placed on one line. If your text editor wraps lines automatically, you should disable that function before saving and uploading your file. Also, note that .htaccess commands are case-sensitive.

Please note that we do not technically support overriding the default server settings. The information presented here may work and it may not, or it may work today and not tomorrow. Use it at your own risk.

Some of the things you can do with .htaccess include:

Customize Error Messages

If you want to override the server’s error pages, you can use .htaccess to define your own messages. This capability is discussed in the Custom Error Messages section of the manual. An example of the syntax is:

ErrorDocument 500 /error.html

Override SSI Settings

By default, only pages ending in the .shtml extension will parse server-side includes (SSI) on our servers. You can override this restriction in your .htaccess file:

If you want to override the default server configuration so that SSI will work with .html documents, you can create a file named .htaccess and upload it (in ASCII mode) to your main www directory. Add the following lines to your .htaccess file:


AddType text/html .html
AddHandler server-parsed .html

If you want both .html and .htm documents to parse SSI, create your .htaccess file with these lines:


AddType text/html .html
AddHandler server-parsed .html
AddHandler server-parsed .htm

Change Your Default Home Page

In order to browse your site by specifying the domain name only (e.g., http://www.hostingmanual.net) instead of having to specify an exact page filename (e.g., http://www.hostingmanual.net/filename.html), you must have an index page in your www directory. Default acceptable file names for index pages include index.htm,index.html,index.cgi,index.shtml, index.php, etc. Note that they’re all named index.*.

There is also a default order of precedence for these names. So if you have both a file named index.cgi and a file named index.html in your directory, the server will display index.cgi because that name takes a higher precedence than index.html.

Using .htaccess, you can define additional index filenames and/or change the order of precedence. To define your index page as hieronymous.html add the following line to your .htaccess file:

DirectoryIndex hieronymous.html

This will cause the server to look for a file named hieronymous.html. If it finds that file, it will display it. If it does not find that file, it will return a 404 Missing Page error.

To change the order of precedence, enter a DirectoryIndex command with multiple file names on the same line. The order in which the file names are listed (from left to right) determines the order of precedence. For example,

DirectoryIndex hieronymous.html index.cgi index.php index.html

Enable Directory Browsing

Due to security concerns we have removed the default setting that allowed directory indexing. This is the option that allows the contents of a directory to be displayed in the browser when the directory does not contain an index page.

For example, if you make an http call to a directory such as http://yourdomain.com/images/, it would list all the images in that directory without the need for an html page with links.

If you require this option on specific directories it is still available. You can reactivate it by adding the following line to your .htaccess file:

Options +Indexes

Once this is added, the directory will fully index again.

Block Users from Accessing Your Web Site

If you want to deny access to a particular individual, and you know the IP address or domain name that the individual uses to connect to the Internet, you can use .htaccess to block that individual from your web site.


<Limit GET>
order deny,allow
deny from 123.456.789.000
deny from 456.78.90.
deny from .aol.com
allow from all
</Limit>

In the example above, a user from the exact IP number 123.456.789.000 would be blocked; all users within a range of IP numbers from 456.78.90.000 to 456.78.90.999 would be blocked; and all users connecting from America Online (aol.com) would be blocked. When they attempted to browse your web site, they would be presented with the 403 Forbidden (”You do not have permission to access this site”) error.

Redirect Visitors to a New Page or Directory

Let’s say you re-do your entire web site, renaming pages and directories. Visitors to the old pages will receive the 404 File Not Found error. You can solve this problem by redirecting calls to an old page to the new page. For example, if your old page was named oldpage.html and that page has been replaced by newpage.html, add this line to your .htaccess file:

Redirect permanent /oldpage.html http://www.mydomain.com/newpage.html Of course, you want to replace mydomain.com with your actual domain name. Now, when the visitor types in http://www.mydomain.com/myoldpage.html, they will be automatically redirected to http://www.mydomain.com/mynewpage.html.

If you’ve renamed a directory, you can use one redirect line to affect all pages within the directory:

Redirect permanent /olddirectory http://www.mydomain.com/newdirectory/ Note that the old page or directory is specified using the system path relative to your www directory, while the new page or directory is specified by the absolute URL.

Prevent Hot Linking and Bandwidth Leeching

What if another web site owner is stealing your images and your bandwidth by linking directly to your image files from his/her web site? You can prevent this by adding this to your .htaccess file:


RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC]
RewriteRule \.(gif|jpg)$ - [F]

Replace mydomain.com with your actual domain name. With this code in place, your images will only display when the visitor is browsing http://mydomain.com. Images linked from other domains will appear as broken images.

If you’re feeling particularly nasty, you can even provide an alternative image to display on the hot linked pages — for example, an image that says “Stealing is Bad … visit http://mydomain.com to see the real picture that belongs here.” Use this code to accomplish that:


RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC]
RewriteRule \.(gif|jpg)$ http://www.mydomain.com/dontsteal.gif [R,L]

This time, replace mydomain.com with your domain name, and replace dontsteal.gif with the file name of the image you’ve created to discourage hot linking.

Prevent viewing of .htaccess or other files

To prevent visitors from seeing the contents of your .htaccess file, place the following code in the file:


<Files .htaccess>
order allow,deny
deny from all
</Files>

If you want to prevent visitors from seeing another file, just substitute that file’s name for .htaccess in the Files specification.

Eliminate Code Red and NIMDA Virus Attacks from your Access Log

The following suggestion was provided by a customer:

For the last few months my logs have been filling up with Nimda and Code Red failed attacks … placing the below redirects in my .htacess appears to have eliminated the logging problem without affecting my personalized error redirecting scripts. I just thought others may find this handy.


redirect /scripts http://www.stoptheviruscold.invalid
redirect /MSADC http://www.stoptheviruscold.invalid
redirect /c http://www.stoptheviruscold.invalid
redirect /d http://www.stoptheviruscold.invalid
redirect /_mem_bin http://stoptheviruscold.invalid
redirect /msadc http://stoptheviruscold.invalid
RedirectMatch (.*)\cmd.exe$ http://stoptheviruscold.invalid$1
it seems like a nifty idea. If you’re tired of seeing those calls cluttering up your statistics, it might be worth a try.

selanjutnya silahkan diartikan sendiri yakk xixixixi

\/ More Options ...
Change Theme...
  • Role »
  • Posts »
  • Comments »
Change Theme...
  • VoidVoid (Default)
  • LifeLife
  • EarthEarth
  • WindWind
  • WaterWater
  • FireFire
  • LiteLightweight
  • No Child Pages...
  • No Child Pages...
  • No Child Pages...