Free Web Hosting

Google Chrome - New Clean Web Browser

September 5th, 2008 Bala Krishna Posted in Bhopal, Blogging, Browser Stuff, General, Gmail Stuff, Web Design, Web Technology No Comments »

I am fan of Safari for clean and minimal design that allow faster web browsing experience then opera, firefox and IE. Just found Google Chrome browser that look like similar to safari in terms of its minimal design. The blue theme is simple stylish and clean just like GTalk. There is no Linux version is released yet, Google guy still working on Mac and Linux version. Hope, mac and Linux geeks will get these versions soon. They have used Apple’s WebKit and Mozilla’s Firefox components and the code is open source to collaborate with web commun ity.

Google Chrome Snapshot

Learn more in Google Chrome video

AddThis Social Bookmark Button

Multiple Blog Posting With WBlogger Offline Mass Blogging Tool

September 5th, 2008 Bala Krishna Posted in Advertising, Blogging, Browser Stuff, Firefox, Firefox Add-On, General, Internet Explorer, Internet Marketing, Social Networking, Tips and Tricks, Web Technology, Window Application, windows xp No Comments »

I was wondering if i could have a tool that can write post to my blogs offline as well as post to multiple blog. A little effort landed me on w.blogger page. W.Blogger is ultimate tool for blog publising from destop. If you have a long list of your blogs then this certainly for you. It simplify publising process and save your lot of time that you can invest in other blogging activity. w.bloggar is compatible with most of the blog platform available that allow you to manage several blogs using different publishing platform from one user interface.

Excellent WBlogger Features:

  • Ability to Post on most popular blog platform
  • Ability to edit post offline
  • Post can be save locally for future update and publising
  • Ability to import post from text files
  • Ability to post on Multiple Categories
  • HTML tags menu alllow you to format text quickly
  • Option to XHTML compliance
  • Add links and images
  • Format text font and alignment
  • Multiple accounts and blogs
  • Post preview
  • Find/Replace option
  • Post to many blogs at the same time
  • Title and Category Fields
  • Spell Checking
  • File and Image Upload
  • Import and Export Settings
  • Ping to Weblogs.Com, blo.gs, Technorati and ping-o-matic New!
AddThis Social Bookmark Button

Control PHP Error Reporting With .htaccess

July 6th, 2008 Bala Krishna Posted in Blogging, Error Log, Linux, Linux Commands, Web Development, Web Technology No Comments »

Create .htaccess file or use existing .htaccess file in your hosting site. Add below line at the top of file content.
[sourcecode language='php']
# to stop php startup errors
php_flag display_startup_errors off
# to stop all php errors and warning
php_flag display_errors off
[/sourcecode]
You can also control level of error reporting. Here is the .htaccess syntax:
[sourcecode language='php']
# php directive for setting error level
php_value error_reporting integer
[/sourcecode]
Example:
[sourcecode language='php']
# report everything except run-time notices.
php_value error_reporting 8191
# report both fatal and non-fatal compile-time warnings by the Zend Engine
php_value error_reporting 128
# report run-time notices, compile-time parse errors, run-time errors and warnings
php_value error_reporting 8
# report fatal run-time errors and unrecoverable errors
php_value error_reporting 1
[/sourcecode]

AddThis Social Bookmark Button

Firefox HappyChecker Rapidshare Happy Hours Notifier Plugin

June 24th, 2008 Bala Krishna Posted in Blogging, Browser Stuff, Crawler, Operating System Tutorial, Word Press No Comments »

If you download from RapidShare frequently then this post might be useful for you. This plugin is very useful Firefox plugin that can be used to detect Rapidshare Happy Hour all time. The Rapidshare Happy Hours plugin is compaitable with FF3.0. It is helpful for users those who use free account on RapidShare. Plugin notify you with the popup box whenever HappyHours available.

Download Location: https://addons.mozilla.org/en-US/firefox/addon/7353

AddThis Social Bookmark Button

No Banner, No Ads, Free CPanel Web Hosting

May 22nd, 2008 Bala Krishna Posted in Blogging, Browser Stuff, Online Media, Press Release, Tips and Tricks, Web Design, Web Development, Web Directory, Web Hosting, Web Technology, Window Application 2 Comments »

If you are looking for free cpanel php/mysql hosting then 000WebHost.com is ideal choice for you. 000WebHost offering features that no other web host offering in the free web hosting industry. 000WebHost providing most reliable and feature-rich web hosting service without advertising and fast website loading speed. They claim they are in the free web hosting industry from one

Main Features:

  • 250 MB Disk Space & 100 GB Data Transfer
  • Support Latest PHP version with MySQL Database
  • PHP mail() function and Sendmail Support
  • Emails Support
  • Curl, GD2 library, ImageMagick, Zend
  • fopen() and PHP sockets
  • safe_mode is OFF, file uploads ON
  • Zend Optimizer support, Ioncube loader
  • Website Builder Software
  • Fantastico De Luxe 1-Click Autoinstaller
  • All common cpanel features supported

Pros:

  • Providing huge space and bandwidth at absolutely no cost. The amount of space and bandwidth they are offering even not proivded by paid we host.
  • Advance cpanel hosting with all function requiredto host a website.
  • Latest PHP version 2.5 support even not support by many paid web host.
  • Ability to use php mail function that is not offer by most free web host company.
  • Image library support.
  • Zend and IonCube loaded support that enable you to run encryped script.
  • Safe Mode Off and you are open to use all php function without restriction.

Cons:

  • They claim instant activation but i have waited for 3 days to activate my website.
  • Like other free web host, they have ftp connection limit. There server support 500 simultaneous ftp user connection. if 500 users already logged in you can not login until some other user disconnected. This is negligible if we see other feature they are providing..

This is all i have evalute this web host service.. Please feel free to share your ideas/views/experiance with 000webhost.

AddThis Social Bookmark Button

PHP Fatal Error Fix: Can’t use method return value in write context

May 15th, 2008 Bala Krishna Posted in Blogging, Browser Stuff, Bug Fix, General, Linux, Linux Commands, PHP Function, PHP Programming, PHP Tutorial, Tips and Tricks No Comments »

PHP compiler generate fatal error if you use function return value in read/write context. Although this is not applicable for all PHP supported function but PHP function like empty does not support use of the function in this way. In other words, php empty function cannot check the return value of a function or method. It can only check variables so use only variable inside empty function. Any other function or expression inside empty function will lead to generate fatal error.

Example Problem Solution:

Wrong
if(empty(trim($testimony))) echo “Empty”; else echo “Not Empty”;

Correct
$testimony = trim($testimony);
if(empty($testimony)) echo “Empty”; else echo “Not Empty”;

Wrong
if(empty($bobj->get_results(’post’)) { // Processing Code }

Correct
$tmp = $bobj->get_results(’post’);
if(empty($tmp)) { // Processing Code }

AddThis Social Bookmark Button

Wordpress 2.5 Image Upload Error Fix

April 4th, 2008 Bala Krishna Posted in Blogging, Browser Stuff, Tips and Tricks, Web Technology, Word Press, Wordpress Plugin No Comments »

This is the most recent error i have found after upgrade to wordpress 2.5. Wordpress 2.5 uses extremely new way to handle images but most of user found problem in image upload due to apache mod_security module. The file responsible for image upload is async-upload.php in wp-admin folder. you may encounter following error message while uploading images to wordpress;

  • HTTP error
  • An error occurred in the upload. Please try again later.

Wordpress Image Upload Error Fix

This is the default message for image upload error. It should be more description and problem oriented so that user can determine problem easily. However most of the wordpress user face this error due apache mod_security filter enable for the website. To fix the problem you need to turn off apache mod_security filter for the async-upload.php file. The fix is very simple, you just need to update .htaccess for this.

Soution:

  1. 1) Use any free ftp program or you control panel file manager to download special file called .htaccess
  2. Edit file in your favourite text editor.
  3. You will find following content in file if you havn’t applied any custom htaccess rules.

    Options All -Indexes
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

  4. Add following line at the end of the file. Don’t worry if you have not above content in file or you didn’t find file at your host root. Create new file .htaccess with the below content.

    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

  5. Now, your file content will look like this..

    Options All -Indexes
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

  6. Just save file and re-upload at the root of your website folder.
  7. All done.. Now error must be gone..
AddThis Social Bookmark Button

HotShots from Snap Shots

April 4th, 2008 Bala Krishna Posted in Blogging, Browser Stuff, Crawler, General, Google, Online Media, Snap Shot, Social Media, Social Networking No Comments »

HotShots is compiled page on snapshots where you can find the most popular weekly top Shots from each snapshot category. Currently, snapshots delivering following type of snap: VideoShots, MapShots, MovieShots, PhotoShots, PreviewShots, ProductShots, ProfileShots, RSS Shots, StockShots, AudioShots, WikiShots, WowShots. Each of the following shot show 9 shots broken into three groups that is highlight from different color icon for easy identification.

snapshots hotshots this week

You can see all three group in above one of the snap shot image from top to bottom.

  • Title with Yellowish Up Arrow shows three HOTTEST shots that are new to the list of Top 50 shots THIS week.
  • Title with Grey Shaded Up Left-Right arrow shows three NEUTRAL shots that are were at the top of Top 50 shots last week AND this week.
  • Title with Blue Shaded Down arrow shows three COLDEST shots that were on the list of Top 50 shots LAST week.
AddThis Social Bookmark Button

Wordpress 2.5 Finally Released

April 2nd, 2008 Bala Krishna Posted in Advertising, Blogging, Browser Stuff, Events, Web Design, Web Development, Web Hosting, Word Press, Wordpress Plugin, Wordpress Theme No Comments »

The site is now reloaded with revolutionary latest Wordpress 2.5 release. After two Release Candidate version, finally Wordpress 2.5 has been released for public. Enjoying new cleaner dashboard with several new features.
.Wordpress 2.5 Dashboard

AddThis Social Bookmark Button

Round Corner Border with CSS without image

March 20th, 2008 Bala Krishna Posted in Blogging, Browser Stuff, CSS, Tips and Tricks, Web Design, Web Development, Web Technology No Comments »

A lot of investigation on CSS and finally i came to the point that at this time round curve border with CSS not possible. We have to use image for round curve effect. However, According to W3C CSS3.0 specification it will be possible in near future with border-radius property. CSS3.0 still in draft status so this property not compatible with available browser this time.

Border Radius Property Syntax:
border-radius: <length> <length>

Individual corners Property Syntax:
border-top-right-radius
border-bottom-right-radius
border-bottom-left-radius
border-top-left-radius

While googling i found few interesting URL that might be useful for the visitors who want to implement round corner border anyway.

Tool to generate HTML/CSS code and images for rounded corners:

http://www.roundedcornr.com/

CSS Rounded Corner Border Tricks:
http://www.alistapart.com/articles/customcorners/
http://www.webcredible.co.uk/user-friendly-resources/css/css-round-corners-borders.shtml

AddThis Social Bookmark Button




Compare hundreds of bad credit home loans by completing one quick form |