Knowledge Base about Hosting


Shared hosting 
Shared Hosting is a hosting service that is used by some other user and the hosting is used by a variety of different domain names. (Usually used by personal blog)
 
Dedicated server 
Dedicated Server is a server that is used to run applications with high loads and cannot be operated in a shared hosting or VPS. Dedicated Server can be provided by the tenant or borrowed from the owner to the tenant data center locations.

VPS 
VPS is a Virtual Private Server or virtual server. The server is made with operating system virtualization process used. Therefore it is in the VPS are running multiple operating systems simultaneously with their respective functions.
 
Collocation 
Collocation is a place that used to put together the same server at a building or room (data center). Collocation Server is used for a variety of needs such as hosting, data storage a company, vpn server and various other corporate IT needs.

Server Collocation 
Collocation Server is the server on which is deposited a place where tenants require security, the stability of the electric current, as well as the stability of the Internet access. The server can be used for just about anything according to the needs of the tenants.

DNS 
DNS (Domain Name System, Indonesian: Domain Naming System) is a system that stores information about host names and domain names in the form of databases scattered (distributed database) on a computer network, such as the Internet. Provides an IP address for each host name and log every mail transmission server (mail exchange server) receiving electronic mail (email) for each domain.
 
FTP 
FTP (short for File Transfer Protocol) is an Internet protocol that runs on the application layer which is the standard for transferring files (files) between the computer machines in an internetwork.

Disk Space 
Disk space is the storage space where you can put all the files.

Bandwidth 
Bandwidth in hosting can be called a data transfer. This means that the data is current tally of hosting you and up to the client. Unit bandwidth calculations are usually based on Kilobytes.
 
Park Domain 
Park domain is a domain which features to put in have. During this in a parked domain, the domain cannot be used to make a website, create email aliasing, and so forth. So basically, the domain is just occupying the home.

Add On Domains 
This feature allows us to add multiple domains within one hosting.

Offshore Hosting 
Hosting that may put the files that are unlawful, such as wares, porn, etc..

Technology Platform of Drupal

Drupal is written in PHP programming language with strict rules in its standard of writing code and in accordance with the principles of open source. Drupal can also be run in parallel or cross-platform with a variety of other web programming languages like ASP, ASP Net, Cold Fusion, CGI, Java, Python and others. Drupal is not affected * specific to the operating system like Linux, * Microsoft Windows, Mac OS X, FreeBSD, Solaris and other operating systems as long as it can run * PHP with various web servers such as Apache, Microsoft IIS, Nginx, Lighttpd or Litespeed and database server like MySQL, MariaDB, PostgreSQL, SQL Lite, or even Oracle to store all its data.



Some Important Concepts in Drupal
 
Node.
Node is a unit of content contained within Drupal. A node can be a blog, forum topics, news, static pages, images, video, audio, and Flash. This is a collection of nodes that make up the entire content in a Drupal-based website.

Field.
Content in Drupal is made up of various areas / fields. * Field titles node, the node body. * You can use the fields in Drupal to build any type of content you can think of. For example, match. * If you think about an event, usually contains a title, description (or body), start date, start time, duration, location, and possibly link to register for the event.

Each element is a field. * Drupal has the ability to create a content type using the field, either through programming by creating a module or through the Drupal administration interface to create new content types and make the fields through the user interface. Field API (in Drupal 7) or CCK (Drupal 4.7, 5, 6) made it very easy and simple to build complex types of content with very little programming is not even necessary.

Taxonomy.
Node is so much need to be categorized according to their respective topics. In Drupal Taxonomy module are used to categorize content. Taxonomy name is taken from the science of classification. Thus each unit of content or commonly called the Term may be mentioned whether the category Politics, Economics, Science, or Religion. Ways of classifying the content is left entirely to the user who has the right to organize Taxonomy. Other modules also use the Taxonomy module to classify certain content, such as the Forum and Image Gallery.

Module.
Drupal website can be coupled with specific modules as needed. Module is a unit of a program written in PHP which if activated will add specific functions. Organic Groups modules provide the function of group / mailing list such as Google Groups or Yahoo Groups. * Images module to allow users to upload an image as a node.

Theme.
Theme is the outer appearance of a Drupal website. Theme system will govern how the website is displayed, page layouts, block placement, style, and so forth. Theme can be changed by selecting themes that are available in the directory / themes or / sites / all / themes.

User.
Drupal is a concept unique to the user. * On the website simple and can usually be managed only updated by a single administrator was a separate system. With the concept of community Drupal site *, you will be able to set up Drupal to allow all individuals who use this site to register the site and create their own user accounts and make the division the authority to manage them in an integrated way.

Block.
Block is basically a container or a stand-alone space that can be used to be occupied any part you can think of a website. For example, the block contains a login form; the box contains the title line of the latest articles and so on. In common parlance might be called another CMS Block is a Widget.

Menu.
Drupal menu system is a system for handling the request via the URL. If the Clean URL is not enabled, then any query string in the form q = will be handled by the system menu.

Comment.
Comment in response to a node that is written by the user (Comments).

Hook.
User is never aware of this concept in Drupal, unless they are developers. Hook is a method used Drupal so that each module can add certain function, by linking a specific function is to hook the system owned by Drupal. For example, each module can add a new menu by defining module menu function, which will ensure Drupal do not forget to take into account the existence of the menu when necessary.

Although according to some developers Drupal is fairly difficult for new users, but with many advantages, Drupal CMS is one of the best. In fact, the ability not just as a CMS, however, with the flexibility and the API (Application Programming Interface) it can also be used Drupal as the framework * / framework to build web based applications.

Creating a Simple jQuery Popup













Source jQuery

 <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    $('a[name=popup]').click(function(e) {
        e.preventDefault();
        var id = $(this).attr('href');
        var maskHeight = $(document).height();
        var maskWidth = $(window).width();
        $('#masking').css({'width':maskWidth,'height':maskHeight});
        $('#masking').fadeIn(1000);  
        $('#masking').fadeTo("slow",0.8);
        var winH = $(window).height();
        var winW = $(window).width();
        $(id).css('top',  winH/2-$(id).height()/2);
        $(id).css('left', winW/2-$(id).width()/2);
        $(id).fadeIn(2000);
    });
   
    $('.window .close').click(function (e) {
        e.preventDefault();
        $('#masking, .window').hide();
    });   
   
    $('#masking').click(function () {
        $(this).hide();
        $('.window').hide();
    });   

 $(window).resize(function () {
   var box = $('#kotak .window');
        var maskHeight = $(document).height();
        var maskWidth = $(window).width();
        $('#maskinging').css({'width':maskWidth,'height':maskHeight});
        var winH = $(window).height();
        var winW = $(window).width();
        box.css('top',  winH/2 - box.height()/2);
        box.css('left', winW/2 - box.width()/2);
 
 });
});
</script>
Source CSS
<style>
body { margin:0; }
#masking { position:absolute;  z-index:9000;  background-color:#000;  display:none;  margin:0; top:0; }
#kotak .window { position:fixed;  width:440px;  height:200px;  display:none;  z-index:9999;  padding:20px; background-color:#FFF; }
/* Popup style */
#kotak #jendela { width:375px; height:203px; background-color:#FFF; }
.link { display:block; margin:30px 0 0; }
</style>

Add Description of Slide-up to Cover Image














Source jQuery

 <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
 $(".produk").hover(function(){
  $(this).find(".teks").animate({'opacity':1, 'top':'0'});
 },function(){
  $(this).find(".teks").animate({'opacity':0, 'top':'400px'});
 });
});
</script>
Source CSS
<style type="text/css">
.produk {
 width:300px;
 height:400px;
 overflow:hidden;
 position:relative;
}
.gambar {
 width:300px;
 height:400px;
}
.teks {
 position:absolute;
 display:block;
 color:#FFF;
 text-decoration:none;
 width:300px;
 height:400px;
 padding-top:150px;
 top:400px;
 left:0;
 z-index:3;
 text-align:center;
 /* Tranparent BG */
 background: rgb(0, 0, 0);
 background: rgba(0, 0, 0, 0.6);
 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000); /* For IE */
 -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
 opacity:0;
 filter:alpha(opacity=0); /* For IE */
}
</style>


Creating a simple dropdown with jQuery
















Source jQery

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $("ul#menu > li").hover(
      function(){
        $(this).addClass('hover');
        $(this).children('ul').stop(true,true).slideDown("slow");
      },
      function(){
        $(this).removeClass('hover');
        $(this).children('ul').slideUp("slow");
      }
    );
});
</script>
Source CSS
<style type="text/css">
ul#menu, ul#menu ul { list-style:none; margin:0; padding:0; }
ul#menu li { float:left; position:relative; display:inline-block; }
ul#menu li a { display:block; padding:3px 8px; color:#FFF; background-color:#333; text-decoration:none; margin:0 2px; }
ul#menu li a:hover, ul#menu li.hover a { background-color:#999; }

/* Style untuk dropdown */
ul#menu ul { display:none; position:absolute; }
ul#menu ul li { float:none; }
ul#menu ul li a, ul#menu li.hover ul li a { display:block; width:100px; background-color:#999; }
ul#menu ul li a:hover, ul#menu li.hover ul li a:hover { background-color:#333;}
</style>

Web Proxy and Know How It Works

In computer networks, a proxy server (a computer system or application program) that acts as an intermediary for requests from clients seeking resources from other servers. A client connects to the proxy server, requesting some service, such as file, connection, web page, or other resource, available from a different server. Proxy Server evaluates the request according to filtering rules.

For example, it may filter traffic by IP address or protocol. If the request is validated by the filter, the proxy provides the resource by connecting to the relevant server and requesting the service on behalf of clients. A proxy server may optionally alter the client requests or server responses, and sometimes it may serve the request without contacting the specified server. In this case, 'caches' responses from the remote server, and then return a request for the same content directly.

A proxy server has many potential purposes, including:
  • To keep the engine from the interference of people (mainly for security)
  • To speed up access to resources (using caching). Web proxies are commonly used to cache web     pages from web server
  • To implement the policy of access to network services or content, for example, to block unwanted sites.
  • To log / audit usage, namely employees of the company to report the use of the internet.
  • To bypass the security / parental control.
  • To scan for malware transmitted the content prior to delivery.
  • To scan outbound content, for example, data leakage protection.
  • To avoid regional restrictions.

A proxy server that passes requests and replies unmodified is usually called a gateway or sometimes tunneling proxy. A proxy server can be placed on the user's local computer or at various points between the user and the destination servers on the Internet. A reverse proxy is used as a front-end to control and protect access to the server on a private network, usually also perform tasks such as load-balancing, authentication, decryption or caching.

Type and Function Proxy Server
Proxy Server has one or more of the following functions:

Caching proxy server
A caching proxy server accelerates service in demand by taking the content is stored from a previous request made by the same client or even other clients. Caching proxies keep local copies according to the requested resources, allowing large organizations to significantly reduce bandwidth usage and costs, while significantly increasing performance of computer networks. Most ISPs and large companies have a caching proxy. This machine is designed to provide file system performance is superb (often with RAID and journaling) and also contain hot-rodded versions of TCP. Caching proxies were the first kind of proxy server.

Some evil-caching proxy has a weakness (eg, inability to use user authentication). Some of the problems described in RFC 3143 (HTTP Proxy Found problem / Caching).

Other interest in the use of proxy servers is to reduce hardware costs. An organization may have many systems on the same network or under control of a single server, prohibiting the possibility of an individual connects to the Internet for each system. In such cases, individual systems can be connected to one proxy server, and proxy servers are connected to the main server.

Web proxy

A proxy that focuses on the World Wide Web traffic is called a "web proxy". The most frequently used web proxy is to serve as a web cache. Most of the proxy program provides a way to deny access to the URL specified in the blacklist, thus providing content filtering. It is often used in corporate, education or library environment, and other places where the desired content filtering. Some web proxies reformat web pages for a particular purpose or audience, such as for mobile phones and PDAs.

AOL dialup customers used to choose their requests routed through an extensible proxy 'narrowed down' or reduce the detail images in JPEG format. This speeds up performance but caused problems, either when the resolution is needed or when a program is reduced yield incorrect results. This is why in the early days of the web many web pages contain a link saying "AOL Users Click 'to go through a web proxy and to avoid bugs in the software is weakened.

In general it can be done by a proxy server such as:
 
Can make it look like we are surfing from another country, another ISP, just no other word. This term is known as the "Hide IP". How it works is this:

Subscribe to our computer IP 168.192.1.17Kita NET ISP in the image that was in Yogyakarta Indonesia and URL citra.net.id

So that would be read later is: 168.192.1.17.citra.net.id, if we use a URL proxy from other countries such as IP 69.217.73.52 proxy, IP is owned by the United States. So that read later is 168.192.1.17.69.217.73.52. The result is as if we are browsing from the U.S. but in Yogyakarta. Even if we use URL the result is 168.192.1.17.ninjaproxy.com.

Accelerate Internet Connection. Proxy server charge of storing the pages on the Internet that have been in open which we will refer to a cache. So if there are client request and the page has been cached, Proxy server will immediately respond to that page and send it to the client as if it were the public IP. The result was a fast internet connection. But if the page had never been cached, then it must come out first to a public IP website in question and the connection is slow.

The proxy server can do:

Hiding Client

The main security feature is a hidden proxy server client. Such as Network Address Translation, proxy servers can make the entire internal network appears as one machine from the Internet because only one machine which passes the request to the Internet.

Such as Network Address Translation, proxy server prevents external hosts to access services on internal machines. In the proxy server, there is no routing to the client because the domain address internal and external network may not be compatible and because there are no transport layer routing between both networks. Proxies do this by updating the feature request, instead of replacing and re-calculate the address header. For example, when a client makes a request through a proxy server, proxy server receives the request as if the destination web server on the internal network. He then update request to the external network as ordinary web browser. At the time the proxy receives the response from the actual web server, it responds to the internal client. Only HTTP is passed through a proxy, rather than TCP or IP. TCP / IP (and other low-level protocol) is updated by proxy; they will not be passed through the proxy.

Another aspect of concealment is the deployment of client connections; proxy server can be used to share one Internet connection and IP address to the entire network. Therefore, the WinGate proxy server such as very popular in home and small office environments where there is only one connection or a dedicated dial-up available.

Tags: What is a proxy, How the proxy, proxy Uses, Benefits proxy, the Proxy, Proxy Server

Differences of WordPress.com and WordPress.org

WordPress.org is managed independently and freely modified, starting from the template, plug-in, plug the ad script, attach the javascript effects, to increase its own php functions. Need hosting and domain if you want to see on the internet. If you do not have a hosting and domain, you can be brain-tweaking on localhost.

WordPress.com has given wordpress.com and sub domain hosting services, such as yourname-.wordpress.com.  WordPress.com is a free version and do not allow the user should to monetize it. But you can manage your certain themes widget and header.

What is Drupal

Drupal is content management system software (CMS), which evolved into a systems framework which is free and open, distributed under GPL (General Public License). Development and maintenance is carried out by the thousands of user and developer community around the world. Drupal can be downloaded for free and can be used independently as well, thus allowing every person both individuals and communities to modify, publish, organize and develop various types of content on the website.

Drupal is modular and extensible, and trying to be made with clean code that is strict and give emphasis on collaborative work. Drupal core functionality is distributed with the base (core), and additional functionality can be obtained by activating the built-in module, or from third-party modules. Drupal is designed to be customized; customization can be done by overriding the core or by adding modules, not necessarily have to modify the code in the core code. Drupal design also successfully separates content management with management of presentation / display.

Building websites with Drupal is like combining together into various blocks or areas of a building that is sturdy and safe, yet flexible to adjust the conditions and needs. To make adjustments or development, then * you do not need to dismantle the house total manually, but can directly do so because of the foundation and the house is so sturdy and removable plug.

Drupal can be used to establish an internet portal, a personal website, blog department, or company, * e-commerce sites, directory of resources, * newspapers online, social networking sites, * picture gallery, intranet, and almost all other types of sites web that you can imagine.

A team of special security (Security Team) seeks to maintain and ensure safety by responding to the threat of Drupal and routinely issued security updates. A nonprofit organization called the Association of Drupal (Drupal Association) to improve the infrastructure supporting the drupal.org website and organizing conferences and events Drupal developer community meeting the other.

What is Wordpress

WordPress (WP) is a CMS Open Source is widely used as a platform for blogging. Currently, the number of users has reached millions of WordPress blogs in the world. With WP, we can have the WordPress service with your own domain name and the server itself. So, we have full control over the blog, both in terms of design and content. WP is very easy to manage, looks to use a template combined with a plug-in that makes it very powerful. There is now hundreds of plug-in + themes that can be downloaded for free at the official WordPress.org site.

WordPress also has a version of instant and free hosting as well as blogspot. You can register directly at WordPress.com and have a blog with a domain http://blog-yang-kamu-mau.wordpress.com. This free service is not as free as the service WordPress.org (self hosted) in the case to-oprek oprak. Perhaps most disappointing, the ride on WordPress.com blogs cannot be installed adsense. At the very least, the advantages of this service are that you certainly will not be confused with the issue of annual cash rent paid for the domain and hosting.

WHMCS Security Patch (V4 - v5)


A security issue has been discovered that we consider to be of a high severity, and as a result we have decided there is a need to release an immediate patch for it.

Although not related to the new release, it is unfortunate timing so soon after the release, but we take security very seriously and so if an issue becomes apparent to us, we will always issue a patch immediately for it as our track record with patches in recent years demonstrates.

Applying the patch is very simple. It's just a single file to update. There are separate versions of the file for each release of WHMCS from V4.0 up to the very latest V5.0 release. The patch download consists of a single file which just needs to be unzipped, and then uploaded to the /includes/ folder replacing the existing file.



JavaScript & JQuery: The Missing Manual, PHP 5 Advanced


JavaScript & JQuery: The Missing Manual, 2nd Edition
 

javascript & jQuery: The Missing Manual /by David Sawyer McFarland. javascript lets you supercharge your HTML with animation, interactivity, and visual effects—but many web designers find the language hard to learn. This jargon-free guide covers javascript basics and shows you how to save time and effort with the jQuery library of prewritten javascript code.
You’ll soon be building web pages that feel and act like desktop programs, without having to do much programming.
The important stuff you need to know:
Make your pages interactive. Create javascript events that react to visitor actions.
Use animations and effects. Build drop-down navigation menus, pop-ups, automated slideshows, and more.
Improve your user interface. Learn how the pros make websites fun and easy to use.
Collect data with web forms. Create easy-to-use forms that ensure more accurate visitor responses.
Add a dash of Ajax. Enable your web pages to communicate with a web server without a page reload.


http://www.file*sonic..com/file/2985267843/Oreilly.JavaScript.and.jQuery.The.Missing.Manual.2nd.Edition.Oct.2011.rar


PHP 5 Advanced, 2nd Edition

Sharpen your PHP skills with the fully revised and updated, PHP 5 Advanced for the World Wide Web: Visual QuickPro Guide! Filled with fourteen chapters of step-by-step content and written by best-selling author and PHP programmer, Larry Ullman, this guide teaches specific topics in direct, focused segments, shows how PHP is used in real-world applications, features popular and most-asked-about scripts, and details those technologies that will be more important in the future. You'll learn about object-oriented programming, PHP interactions with a server, XML, RSS, Networking with PHP, image and PDF generation, and more.
  

http://www.file*sonic..com/file/r000216945/1026452934/PHP_5_advanced._Visual_quickpro_guide__2nd_edition_FileBeta.com.rar

Megical Regtanguler

Array Randomize (PHP Tutorial)

An array is a set of variables that have the same name but distinguished by the index.

Useful for example in an array of programming that requires a few variables that will hold the data with the same data type and will receive similar treatment. Now, rather than worry about the variable names are different, it is better to use a variable name but each is distinguished by the index.

Index can be either numbers or strings. If the index-shaped array of numbers, then the array will be called indexed arrays (vector), whereas if the index of a string, then the array will be called associative arrays.




[Array Randomizing]


"12","d" => "22","b" => "34","c" => "67");

print "Data before randomizing =
";
foreach ($angka as $tampil => $tampil1)
{
print "$tampil : $tampil1
";
}

print "Data after randomizing =
";
shuffle($angka);
foreach ($angka as $tampil => $tampil1)
{
print "$tampil : $tampil1
";
}
?>

PHP XMLMaker v1.0

PHP XMLMaker is an easy-to-use code generator for creating PHP 5 scripts that output XML from a MySQL database. You can instantly serves dynamic XML for Ajax, RSS, Flash or any other applications that consumes XML. PHP XMLMaker is designed for high flexibility, many options enable you to generate the XML in a format that best suits the client applications. The generated codes are clean and easy-to-customize. PHP XMLMaker is an indispensable tool for modern Web development and is suitable for both beginners and experienced developers alike.


Highlights
  • Field as Element/Attribute
  • Filtering and Sorting
  • Master/Detail Data
  • Field Value Formatting
  • Null Value Handling
  • Custom View
  • Customizable Template
  • Template Extensions
  • Database Synchronization
Link Download
http://oron.com/mhg5vtaww959/PHP_XMLMaker_v1.0-Pro.rar.html
http://hotfile.com/dl/120214558/2da9775/PHP_XMLMaker_v1.0-Pro.rar.html
http://www.filesonic.com/file/1165542581/PHP_XMLMaker_v1.0-Pro.rar
http://www.megaupload.com/?d=757HYODL
http://www.fileserve.com/file/QFVW2rh

EximiousSoft Logo Designer v2.58 Full Crack

Finally, after searching everywhere, I could get a Logo Designer v2.58 EximiousSoft include crack.


Logo Designer v2.58 EximiousSoft is one of the Logo Designer Software is fairly complete. Its use is easy and comprehensive features make this software to be my recommendation to create logos that I need to support the smooth running of my work.

Download : www.mediafire.com/?sn6kyul8lvyiw53

Tips & Tricks to Make Money Through Internet



World of the Internet not only offer information and news, but also offers financial benefits for those who know how to use this medium to make money. How and how much profit can be achieved through this medium? Find out more...

When it comes to making money on the internet, anyone can do and really depends how serious people who want to earn money and also the amount that will be generated. The Internet itself is a medium that can be quite easy to make money for those who understand because a lot of opportunities for it and will be growing from day to day. Sites devoted to commercial or make money itself is also very much on the internet today and there are even sites that are designed specifically for it.

Here we present some ways that is usually done by netter to earn money on the internet:

1. Click on Ads on the Internet (Pay to Click / PTC)

This way is the easiest way to earn money on the internet; do not need a lot of thinkers and hard work. Just click on the ads there. Do not be surprised with just how this potential monthly income you can reach millions of dollars, because so many have proven to reach that number. To see a list of PTC, can be seen HERE.

Pros: very easy to do and almost no risk
Disadvantages: some sites require netter to follow the procedures of each PTC is sometimes a bit tricky to obtain payment
Earnings: PTC porgram is more than you are taking, the greater you’re earning potential as well. Upgrade to premium and buy referrals can increase the amount of your income.
Example sites: NeoBux - IsabelMarco - Clixsense - Klikrupiah - Adverbux - PPClix - IndoPTC - Klikajadeh - ngeBux

2. Creating a website for advertising, affiliate and online promotion and marketing

This method is arguably the most effective in making money on the internet and the risk-free because of netter just need a good site for free or a pay-as free 24-hour media to show ads like Google Adsense or make its website as an affiliate for the sales promotion of goods from other sites as an affiliate by Amazon (book sales site) where you can get a commission from every book purchased by another netter who entered through a link from the site.

Pros: risk-free and easy to do
Disadvantages: netter takes time to create a site and need the knowledge for it and have to frequently update the site so frequently visited by other netters
Income: depending on the number of "hits" (Netter visiting the site) per day
Example sites: adsense.com - kliksaya - KumpulBlogger - amazon.com

3. Being internet trader

This method is also quite effective for the diligent and the hobby to learn currency trading (FOREX) because if netter to become an expert in trading, earnings in the can also be very high and can get hundreds to tens of thousands of dollars per week or per month. In addition to this free media, many media that provide free trading for learning as well and can even get free money for trading in Marketiva really like.

Pros: promises huge financial advantage and for beginners do not need initial capital
Disadvantages: takes time to learn and experience to become skilled trades
Income: depending on how diligent you are learning and your cleverness in the air-trading. An expert on the average trading profit could get thousands to hundreds of thousands of dollars per week
Example sites: marketiva.com

4. Being a domain parking (a parking domains)

If a domain parking, netter should be out of capital to buy the domain (. Com /. Net /. Org), instead of searching for the free domain as it will only waste times. To buy a domain, ones can at CantikSehatShop - Netter enough hosting space with only minimal (1MB up to 10MB). After getting the domain registered, the netter should update its website in advance, fill with interesting content and adjust the topic of the site, to be included in Google & Yahoo search category.

After about 1-2 months or more, the new netters ‘park' the domain on one site like Sedo or NameDrive parking. This site is going to pay us in dollars; because we parked domains will be used by their ad campaign. In addition we can sell our site parking to the bidder (bidders), the largest.

Pros: can make money is a not limited or large quantity
Disadvantages: takes time to promote the site and it took a hefty fee at the beginning

5. To invest online

In this way the risk (could lose) and the initial capital needed to get profit. For online investing itself also takes time to learn, experience, and must follow the provisions of the new investment could enjoy profits in the end. Many overseas netters in the life of this online investment and usually those who have long engaged or experienced in this field.

Pros: easy way to get the advantage of not requiring any skill from any capital
Disadvantages: potential loss (capital loss) if you are not careful in investing as much investment to deceive or fail to pay even goes bankrupt because of mismanagement or mismanagement
Income: varied depending on the value of investment capital and profits promised
Example sites: ketok.com / info - hyipxfile.com


6. Paid to activities on the internet

This method can also be said to be very easy but it can spend very much while the profit earned is usually small and still be paid after reaching a certain amount which can be obtained usually only after many months. This method is usually done by a netter by registering themselves to participate in the program to read e-mail advertising, click ads, surf the Internet, posting news or blogs, using search engines all of which are usually offered free of charge

Pros: including also an easy way to earn money and do not require initial capital in money
Disadvantages: this method requires considerable time and generally wasted enough time, not to mention if there are programs that do not pay
Income: not effective and the amount of money generated is usually very small
Example sites: mylot.com

7. Selling products, goods and services via the Internet (e-commerce)

This method is usually carried out by the netters who have products, goods and services whose value could sell and make money. They usually make a site that can support and provide information about what's going to sell them.

Pros: including effective ways to make money through online sales and promotion of products at once
Disadvantages: need of products, goods and services and capital, knowledge management sites and also security for the site
Income: varied depending on the value of products, goods and services as well as power and the number of buyers from site visitors
Example sites: PasarIT.com - Bhineka.com

Conclusion
If a netter can use 3 of 5 of the above effectively, I'm sure he'll be able to obtain adequate financial amount and the amount will be growing from day to day. There are still several ways you can do one or netter to get the money and the fifth of the above represents only way that is generally performed by a person or netter to earn money on the internet.

Major capital you actually just need a computer that is connected to the internet to make money even though some of the above also require that the initial capital to get started. Connection speeds may also be highly influential in some ways to facilitate your efforts to earn money on the internet.

What is Domain?

Domain is given a unique name to identify the name of the server computer as a web server or email server on the internet. Domain make user can access the server easier than they have to remember the row number or a known IP.


What's the Difference Domains and Hosting

Hosting is space in the server computer that is used as the placement of existing data and files. Domain is the address used for data placement and to place the file.
In a simple analogy:
Domain = your provider card Number (081xxxxxxxx)
Hosting = device your mobile phone (nokia9500, motorola vrazer etc.)

Level Domain
Top Level Domain is a row behind the word domain names like

1. . Com (dotcommercial)
2. . Net (dotnetwork)
3. . Org (dotorganization)
4. . Edu (doteducation)
5. . Gov (dotgoverment)
6. . Miles (dotmilitary)
7. . Info (dotinfo)
8. etc.



There are two types of Top Level Domains, namely the Global Top Level Domain (gTLD) and Country Code Top Level Domain (ccTLD). gTLD is like that on the list above and the ccTLD is designated TLD for each country, like Indonesia with the ID code (co.id, net.id, or.id) or Singapore with code SG (com.sg, net. sg, etc).

Second Level Domain (SLD) is the domain name you register. For example the domain name you register is domainku.com, then the SLD and domainku. dan .com is the TLD.

Third Level Domain is the name after the Second Level Domain. For example the domain name you have is domainku.com, then you can add another name before domainku, namely mail.domainku.com or estrex.domainku.com. Other services that sell third-level domains one of which is eNom to:. us.com,. br.com,. cn.com, etc..

There are manu free domain that can you access like co.cc , .tk etc

Panada Framework

About Panada

Panada is a simple framework for the creation of websites based on PHP 5. Panada developed with the aim to help the website developers to work faster, easier and more natural in the writing of code. The official site and download the file.

Each component is designed to be mutually utilizing the resources from the other components automatically. This allows developers to resources quickly and efficiently.

To get the latest updates, follow twitter Panada i@panadaframework.
Features

* Simple
The main system (core system) Panada only consists of a file, which is located in the directory gear.php Panada. It aims to facilitate users in understanding the workflow Panada.

* Easy
With just a little fill in some parameters in the file apps / config.php Panada can be directly used.

* Single Load
Simply once shooting a component (component load) and the resource can be directly used in all other components. Retrieval can be done on the autoloader, inside the controller, in the model or in the library.

* Natural
In making a good component of the model or library, you just simply make once declaration as generally in declaring a class. For example:


code:
$this->nama_instance = new library_nama();

or

$this->nama_instance = new model_nama();

Both in the library collection or step model are the same. The difference only lies in the prefix ('library_' or 'model_'), class name that indicates the task and folder location.

* Multisite
Some websites can be created using the same one main system, be it with the main domain of the same or different.

License
Panada license is to use the BSD-License (http://www.opensource.org/licenses/bsd-license.php). With this license means that anyone can freely use this application either for commercial or non-commercial use.
Panada made by Indonesia people namely Iskandar Soesman

Here is the spec computer used to benchmark:

* Operating System: Ubuntu 10.04 LTS Lucid Lynx
* Web Server: Apache httpd 2.2.14
* PHP: 5.3.2
* CPU: AMD Turion (tm) 64 Mobile Technology MK-38
* Main Memory: 1.2 GB
* Hard Drive: 80 GB SATA


Use of the Controller and Model
Creating a Controller

To create a controller to add a new file in the folder apps / controller / and name in accordance with the desired, for example home.php. Create a new class in this file where the class is a subclass inherits from the Panada class, here is an example:

class Controller_home extends Panada {

public function
__construct(){

parent::__construct();
}

public function
index(){

echo
'Hello world!';
}
}
That must be considered is the prefix name class. Where this prefix indicates the location of the class folder. For the controller, its prefix is "Controller_". The same is true of the class for the library, with the prefix "Library_" and the class for models with the prefix "Model_"

Make a Model

The model is a class whose job directly related to the handling of data, either from the database, or other storage systems.

To create a class model, add a new file and put it in the folder apps / model /, for example users.php.

Create a class users in this file by starting prefix "Model_", for example:


class Model_users {

public function
__construct(){

$this->db = new library_db();
}

public function
users(){

$result = $this->db->results("SELECT * FROM table_name ORDER BY id LIMIT 5");
}
}

Yotomo is a location-based service utilizing existing platforms such as Foursquare. We add more value to the check-in activities. As an end user you can get special offers from the nearest merchant check-in locations. We also see ourselves as a local real location-based service. With Yotomo you can get local badges from your country, community badge suggested by you our users, and local brands.

For business owners, Yotomo is a marketing tool to target your potential customers. Using Yotomo You can reach your potential customers.

Why Yotomo



Because we are local. We support local businesses, local communities and local events from the beginning. Our end users also will benefit from the local character, Yotomo.

Yotomo provides a platform and tools for business owners to provide promotions and special offers to potential customers nearby. For end users, Yotomo will provide more benefits from local businesses in the special offers and promotions. We look at our platform as a local platform, where users are located. You will find more interesting local touches like a badge of Yotomo local, local brands and events.

Yotomo established based on the fact that the location-based services must have a strong local gift not only digitaly, but also in the real world. We also believe that the community and local culture should play a major role on the type of platform.
Where are we?

Our headquarter is Yotomo PTE LTD in Singapore, while applications and websites Yotomo baked in the city of Jakarta, Indonesia. Our office in Jakarta is located in the beautiful area of South Jakarta.







Create Web Applications with Desktop Extjs & PHP quickly

What is Ext-PHP?


Ext-PHP is a framework intended to build a web-desktop application and it is very easy to use library with Extjs as user-interface and PHP as the back-end server programming. Ext-php adapting is the concept of MVC (model view controller) in the core application. So you are expected to understand the concept, but do not worry there will be tutorials for the manufacture of modules at this website

What is Ext-PHP suitable for projects that will I make?


If you want to build a web application that have the appropriate UI and the ability of desktop applications that can interact optimally with the user the answer is yes. Suppose you make the Library Online, Online Academic Systems Ext-PHP is suitable for your project that will create


What are the features already included in the Ext-PHP?
  • Support for multiple databases because it uses a PHP-ADODB
  • Applications are ready-made layout just makes menus and modules you need
  • Multi User Login
  • User Manager to set the Group and Users with different access levels on the menu
  • Menu Manager to set the menu and your modules
  • Modle report as a pdf and Excel which can be set manager menu
  • and much more

What is Ext-PHP for free?

Ext-PHP is one hundred percent free. But you must remember that the Extjs library is a GPLv3 license for open source projects. Please visit the website http://www.sencha.com for further explanations of the licenses.




Login Application



Menu Manager



Home page



Example Grid






Download and Demo please visit here
Thanks in advance. I will continue to update for the manufacture of its modules

 

Hardware dan Software

stroevanka free lifestyle

about indonesia