Showing posts with label free. Show all posts
Showing posts with label free. Show all posts

Saturday, 6 December 2014

Free Web Hosting Sites In India

8 comments :
In this Information age, having a website is very important to publish your identity online. Websites are a very popular way to earn online via blogging etc. A website contains most two important part domain names and hosting. Domains are the head of the websites where as hosting is the heart of the website. All the information including files, scripts, databases etc. are stored in the hosting platform. Can you imagine yourself without heart, No right?

Why choose free hosting

Free hosting is the easiest way to publish your website online within minutes even without any domain names. Now-a-days, most of the free hosting sites provide free sub domains. This is the hassle free, tension free, contract free path to build a nice website. All the earnings coming from these websites are directly goes to your pocket. Cool na?

How does free hosting work

Free hosting works in 4 simple steps Signup, login, create account and upload your website. Registration is really simple. Fill up the required information with correct email id and put the correct captcha code. Open email inbox and confirm the registration. Log in with correct username and password that you provided at the time of registration. Create your website name and upload your contents in cPanel And its done.

  • Top 5 Hosting Sites In India

  • The top 4 young Hosting site provider in India are Ultimatefreehost.comUltimatefreehost.inGoogiehost India andX20hosting Network.These websites using either Youhosting's  or MOFH's Api to provide free hosting. These all sites are really beautiful, simple, user friendly and perfect for your website hosting.

  • Ultimatefreehost Network

  • Ultimatefreehost was established in early 2013 in order to provide free hosting in India basically for the students to host their projects etc.  Since then, it is continuously working and providing free hosting to thousands of people throughout all over the world. In addition to these, ultimatefreehost also provides free seo tools and full website review service for their customers.

 Ultimatefreehost.com provides 20 GB disk space, 200GB Bandwidth and unlimited website hosting features for their clients. 

  1. No Ads or banners to your website.
  2. Php 5.4 and Mysql 5 Support
  3. Unlimited Email and Ftp accounts.
  4. Free sub domain from 1ufh.com and uf9.in
  5. Responsive CPanel
  6. Instant Setup and No hidden Charges.

Ultimatefreehost.com Cpanel:




  •  Ultimatefreehost.in provides unlimited disk space, unlimited Bandwidth and unlimited website hosting features for their clients. 

  • Unlimited Resources without Ads
  • Free SSL certificates
  • Free sub domain from ultimatefreehost.in
  • cPanel X3 Control Panel ( not real cPanel 11)
  • Softaculocus autoinstaller.

Ultimatefreehost.in Cpanel:


  • Googiehost India


    • Googie India founded on 25th March 2011 but they came online with a new brand name "GoogieHost India" in November 2012. Googiehost have more than 10000 satisfied customers throughout the world. Googiehost provides unlimited disk space, unlimited Bandwidth and unlimited website hosting features for their clients. 

          • Unlimited Resources without Ads
          • Spam Protection
          • Free sub domain from 1gh.in
          • And lots of other cool features.
        • Googiehost Cpanel:


          • Merahost Network

          • X20hosting is basically a part of Merahost network which is famous in India for premium hosting. However they also offer free hosting with lots of awesome features. 
  1. 20 Gb disk space and 200 gb bandwidth for each customers.
  2. SSH Access
  3. Free sub domain from x20.in
  4. Php and Mysql support.
  5. Better customer support.

Limitation of Free Hosting

Free hosting are great for testing and learning purpose but really not recommended for advance level.Free resellers from Youhosting have frequently "Maximum CPU Limit Exceed" problem which occurs from a little more website traffic, whereas free resellers from MOFH have the "Daily innode limit" problem which indicates a limited number of visitor is permitted in your website. So if you are facing these kind of problem in free hosting, i recommended you to upgrade your hosting plan.



                  Read More

                  Friday, 17 January 2014

                  Make Unlimited Free Calls India To India 100% working

                  1 comment :
                  • Make Unlimited Free Calls to India.


                    • Although SMS has gained popularity among people of India specially youngsters like college goers in these days cause of free sms sending websites like way2sms, 160by2.com etc.But there is no website that provides free calling to its users even in developed countries like US. We have seen many websites that promises free calling but after some minutes of calling they ask to purchase credits etc. There are now some website which provides free calling but call does not get connects to DND number. So we thought that if sms can be provided free why not calling can be free so we planned to tell a website that will provide free calling to its users.
                  • Fcall:


                    • Free call up to 4 minutes (per 1 call) anywhere in India.
                    • Unlimited free calling.
                    • You don't have to wait in queue to get calls connected.
                    • Crystal clear voice.
                    • Free 460 character sms anywhere in india.
                    • Guaranteed delivery of sms in seconds.
                  • Sign up now
                  • Site2sms:

                    • Free call up to 2 minutes (per 1 call) anywhere in India.
                    • 40 Minutes per Day.
                    • Site2SMS.Com is the First Web Portal in India to offer free Voice SMS and Voice Calling to any mobile number in India.
                    • Send Free Voice and Text Sms To Any Mobile In India Easy sending, coupled with exceptional delivery speed With Free Email Alert's On Mobile has made Site2SMS highly popular.
                    • Site2SMS Support 260 Characters Long Sms To Any Mobile Number In India. (India's First Free Messaging Portal To Offer Voice Sms)
                    • Site2SMS has the ability to deliver over 200 SMS per second And is capable of handling extremely high volumes of messaging during peak hours.
                    • A dedicated team monitors the operational flow of Site2Sms.Com Sms Service's 24x7

                    • Sign up now
                    •                                              
                    • If you like my blog please share and comment it. thank you.

                  Read More

                  Wednesday, 15 January 2014

                  A complete PHP Tutorial For Beginners To Learn PHP Basic Part 7

                  No comments :

                  • PHP Looping


                    • The while Loop

                      • Syntax

                        1. while (condition) 
                        2. code to be executed; 
                        3. }
                        • Example

                          • The example below defines a loop that starts with i=1. The loop will continue to run as long as i is less than, or equal to 5. i will increase by 1 each time the loop runs:
                          1. <html> 
                          2. <body> 
                          3. <?php 
                          4. $i=1; while($i<=5) 
                          5. echo "The number is " . $i . "<br />"; 
                          6. $i++; 
                          7. ?> 
                          8. </body> 
                          9. </html>
                          • Output:

                          1. The number is 1 
                          2. The number is 2 
                          3. The number is 3 
                          4. The number is 4 
                          5. The number is 5
                      • The do...while Statement


                        • The do...while statement will always execute the block of code once, it will then check the condition, and repeat the loop while the condition is true.
                        • Syntax

                          1. do 
                          2. code to be executed; 
                          3. while (condition);
                          • Example

                            • The example below defines a loop that starts with i=1. It will then increment i with 1, and write some output. Then the condition is checked, and the loop will continue to run as long as i is less than, or equal to 5:
                            1. <html> 
                            1. <body> 
                            2. <?php 
                            3. $i=1; 
                            4. do 
                            5. $i++; 
                            6. echo "The number is " . $i . "<br />";
                            7. while ($i<=5); 
                            8. ?> 
                            9. </body> 
                            10. </html>
                            • Output:
                            1. The number is 2 
                            2. The number is 3 
                            3. The number is 4 
                            4. The number is 5 
                            5. The number is 6

                            • The for Loop

                              • Syntax

                                1. for (init; condition; increment) 
                                2. code to be executed; 
                                3. }
                              • Parameters
                              • init: Mostly used to set a counter (but can be any code to be executed once at the beginning of the loop)
                              • condition: Evaluated for each loop iteration. If it evaluates to TRUE, the loop continues. If it evaluates to FALSE, the loop ends.
                              • increment: Mostly used to increment a counter (but can be any code to be executed at the end of the loop)
                            • Example

                              • The example below defines a loop that starts with i=1. The loop will continue to run as long as i is less than, or equal to 5. i will increase by 1 each time the loop runs:
                              1. <html> 
                              2. <body> 
                              3. <?php 
                              4. for ($i=1; $i<=5; $i++) 
                              5. echo "The number is " . $i . "<br />"; 
                              6. } ?> 
                              7. </body> 
                              8. </html>
                              • Output:

                              1. The number is 1 
                              2. The number is 2 
                              3. The number is 3 
                              4. The number is 4 
                              5. The number is 5
                          • The foreach Loop

                            • Syntax

                              1. foreach ($array as $value) 
                              2. code to be executed; 
                              3. }
                              • For every loop iteration, the value of the current array element is assigned to $value (and the array pointer is moved by one) - so on the next loop iteration, you'll be looking at the next array value.
                              • Example

                                • The following example demonstrates a loop that will print the values of the given array:
                                1. <html> 
                                2. <body> 
                                3. <?php 
                                4. $x=array("one","two","three"); 
                                5. foreach ($x as $value) 
                                6. echo $value . "<br />"; 
                                7. ?> 
                                8. </body> 
                                9. </html>
                                • Output:

                                1. one 
                                2. two 
                                3. three


                  Read More

                  How To Upload and Install Php Script To Make A Website Full Tutorial

                  2 comments :

                  To Upload a php script you need to find a ftp access. Suppose you open a free hosting account in Ultimatefreehost.com. now you need to find ftp access

                  FTP Access Finder:

                  • To find a ftp access login to control panel. Login to cPanel
                  • After login Find "Ftp Acces Menu"
                  • Find your 
                  1. Ftp host name
                  2. Ftp username
                  3. Ftp password

                  Upload Your Script:

                  • To upload your script, you need to use a ftp server such as Net2ftp
                  • Enter your information at login page
                  1. Ftp host name
                  2. Ftp username
                  3. Ftp password
                  • click Public_html Folder


                  • click on upload
                  • Upload your script now

                  Create Mysql Database:

                  • A Mysql database is required to run your php script.
                  • From your ultimatefreehost.com control panel find mysql database.
                  • Create Mysql database:

                  • Note your 
                  1. Mysql host name
                  2. Mysql username
                  3. Mysql database name
                  4. Mysql password

                  Install Script:

                  With A Install Folder:

                  • If your script has a install folder then its very easy to install it. If your website is www.blogwritter.com, then go to www.blogwritter.com/install and proceed.it will done.
                  • If your script has a install.php then its very easy to install it. If your website is www.blogwritter.com, then go to www.blogwritter.com/install.php and proceed.it will done.

                  Without A Install Folder:

                  • Without a install folder its hard to install script. if have to do two step.
                  1. Configaration file edit
                  2. Sql file upload

                  Configaration File Edit

                  • Find a file named like config.php or setting.php or connect.php or something like that.
                  • Edit there:
                  1. Mysql host name
                  2. Mysql username
                  3. Mysql database name
                  4. Mysql password

                  Sql file upload


                  • Find a .sql file in your script and upload it in phpmyadmin.
                  • Login to ur control panel and find mysql databases.
                  • Enter phpmyadmin.
                  • find query window.


                  • click on import file and upload it in binary format.

                  • Its done.

                  If you like my blog please share and comment it. thank you.


                  Read More

                  Monday, 13 January 2014

                  Best Top Free WordPress Themes For 2014

                  2 comments :


                  Enjoy the top best free WordPress themes of 2014 guys !!!!

                  Customizr WordPress Theme Free Download

                  • Enjoy designing a beautiful website live with the WP customizer : select skin, logo, social profiles, sliders, layout, home featured blocks, or even live css styling. The flat and fully responsive design can be used for small businesses, portfolios, blogs, corporate sites or landing pages. Built with valid HTML5 and CSS3 (from the Twitter Bootstrap), cross-browser tested, the theme is translation ready and available in 15 languages. Ready for WooCommerce, bbPress, qTranslate, the code is easily extensible with a comprehensive API of hooks.

                  Twenty Thirteen WordPress Theme Free Download


                  • The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.

                  Expound WordPress Theme Free Download

                  • An awesome magazine theme for your WordPress site. Responsive layout, post thumbnails support, featured posts and more.

                  Corpo WordPress Theme Free Download

                  • Corpo is a responsive business & portfolio theme which can be used for personal or corporate website. It features slider on the home page, 5 custom widgets, 2 menu locations and theme options to easily manage your website. Corpo also offers additional Portfolio custom post type to showcase your work.

                  Hueman WordPress Theme Free Download

                  • Hueman is a responsive 100% high resolution theme for blogs and magazines. Unique toggle sidebars give a great browsing and reading experience on both tablet and mobile. The feature list is long: Unlimited topbar, header, footer and accent colors, unlimited widget areas, 0-2 sidebars to the left or right that can be uniquely specified for each page or post, 300px / 220px fixed width sidebars, 0-4 footer widget columns, almost zero layout images, related posts and post nav, featured story or slider, 10 post formats, good SEO, 3 flexible custom widgets, localisation support, social links, logo upload and many more useful admin panel features.

                  Twenty Fourteen WordPress Theme Free Download

                  • In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content's layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.

                  Sixteen WordPress Theme Free Download

                  • Sixteen is an artistic and responsive theme suitable for most blogs. It supports header image with a parallax effect. A Reponsive Slider, Customizable Header and Footer, Grid Layout for Homepage, etc make it one of the most unqiue wordpress themes. Sixteen has been already translated into French, Spanish, Russian, Japanese, Arabic and supports translation into more languages.

                  Destro WordPress Theme Free Download

                  • Responsive WordPress magazine theme with 3 home page layouts, 300x250 ads, 125x125 ads, 8 premade (Black, Blue, Red, brown, pink, white and Green) ready to use color schemes/skins, 2 page layouts including a full width page template, featured posts, social icons, twitter updates, threaded comments and widget support.

                  Attitude WordPress Theme Free Download

                  • Attitude is a Simple, Clean and Responsive Retina Ready WordPress Theme which adapts automatically to your tablets and mobile devices. Theme is easily customizable with numerous theme options. Some of the highlighted options are two site layout (Narrow and Wide), 5 layouts for every post/page, 5 Page Templates, 5 widget areas, 4 custom widgets, featured slider to highlight your post/page, 11 social icons and many more. Also has custom background, header, menu, favicon, CSS, webclip icon, and logo. Supports popular plugins like Breadcrumb NavXT, WP-PageNavi and Contact Form 7. It is also translation ready. Available Translation: Traditional Chinese (Taiwan), Spanish, Norwegian (Nynorsk), German and Russian.

                  Spun WordPress Theme Free Download

                  • Spun is a minimalist, responsive theme that puts the emphasis on your content; extraneous navigation fades away to put your words and images front and center. PLEASE NOTE: Version 2.0 makes some major changes, please upgrade at your own risk.

                  Twenty Twelve WordPress Theme Free Download

                  • The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.

                  Twenty Eleven WordPress Theme Free Download

                  • The 2011 theme for WordPress is sophisticated, lightweight, and adaptable. Make it yours with a custom menu, header image, and background -- then go further with available theme options for light or dark color scheme, custom link colors, and three layout choices. Twenty Eleven comes equipped with a Showcase page template that transforms your front page into a showcase to show off your best content, widget support galore (sidebar, three footer areas, and a Showcase page widget area), and a custom "Ephemera" widget to display your Aside, Link, Quote, or Status posts. Included are styles for print and for the admin editor, support for featured images (as custom header images on posts and pages and as large images on featured "sticky" posts), and special styles for six different post formats.

                  Responsive WordPress Theme Free Download

                  • Responsive Theme is a flexible foundation with fluid grid system that adapts your website to mobile devices and the desktop or any other viewing environment. Theme features 9 Page Templates, 11 Widget Areas, 6 Template Layouts, 4 Menu Positions and more. Powerful but simple Theme Options for full CMS control with easy Logo Upload, Social Networking and Webmaster Tools etc. Responsive is WooCommerce Compatible, Multilingual Ready (WPML), RTL-Language Support, Retina-Ready, Search Engine Friendly, W3C Markup Validated and currently translated into 45 languages. Cross-Browser compatible.

                  Coller WordPress Theme Free Download

                  • Coller is a Modern minimal ultra responsive theme with a lot of features including responsive featured slider and Fully Customizable Header and Footer. Coller has been translated into Many Languages including Dutch, German, French, Italian, Portuguese, Spanish & many more.



                  If you like my blog please like and share it. thank you.

                  Read More