Sunday, December 13, 2009

Speech by Chetan Bhagat at Symbiosis ...must read...

Hey guys,
I liked it so I am sharing it.I hope you all will like it too.
"
Don’t just have career or academic goals. Set goals to give you a
balanced, successful life. I use the word balanced before successful.
Balanced means ensuring your health, relationships, mental peace are
all in good order.

There is no point of getting a promotion on the day of your breakup.
There is no fun in driving a car if your back hurts. Shopping is not
enjoyable if your mind is full of tensions."

"Life is one of those races in nursery school where you have to run
with a marble in a spoon kept in your mouth. If the marble falls,
there is no point coming first. Same is with life where health and
relationships are the marble. Your striving is only worth it if there
is harmony in your life. Else, you may achieve the success, but this
spark, this feeling of being excited and alive, will start to die.
……………….

One thing about nurturing the spark - don't take life seriously. Life
is not meant to be taken seriously, as we are really temporary here.
We are like a pre-paid card with limited validity. If we are lucky, we
may last another 50 years. And 50 years is just 2,500 weekends. Do we
really need to get so worked up? …………….

It's ok, bunk a few classes, scoring low in couple of papers, goof up
a few interviews, take leave from work, fall in love, little fights
with your spouse. We are people, not programmed devices........." :)

"Don't be serious, be sincere."!!

How to Host a website In World Wide Web ?

5 Easy steps to host a website in the world of web:-

Step 1: Develop a website.

Step 2: Buy a domain "yourdomain.com",suppose XYZ company.Pay & Wait for Setup from 12-24 hr.

Step 3: Buy a Hosting plan as per your requirement and specificaitons at ABC company choosing an option Host an already existing domain "yourdomain.com" update & replace all the Name servers of ABC company in the domain management @ XYZ company.Pay & Wait for propagation and setup from 24-72 hr.

Step 4: Go to cpanel ,if your hosting supports or download a ftp client ,upload your developed website to the file manager in public_html folder where as public_ftp folder is for your ftp uploads.

Step 5: Open the site in your favourite browser. "yourdomain.com" VOILA!!

PHP error Warning: Cannot modify header information - headers already sent by ...

Error ...

PHP Warning: Cannot modify header information - headers already sent by.............

Hello PHP developers over there.This is a very frequent error or I will say an obvious error if you are new to PHP coding.It can occur due to many reasons such as:-

1. Headers must be parsed before any HTML,
2. Look for any statements that could send output to the user before this header statement. If you find one or more, find some way to move the header statement before them.
3.Make sure there is no white space outside of the php start and end tags. While a blank line before the 4.header("location:../first.php"); //'Location' should replace 'location'
5.fix your script to send the cookies at the correct time.
Solutions:-

Note: This Error irritates a lot.So if you are in a hurry go for Solution 3 and resume.:)
1.Try to resolve the above if exist.If the problem still persists..
2. Modify the PHP.ini file of your server by turning => output_buffering=on or output_buffering = 4096
3. Best Solution:

try placing this at the top of your page:
//Its turning on the output buffer.

then at the bottom of the page place this line of code:

//So any output is kept in the buffer.This is to flush the buffer.