Post under all categories and tags

How to enable XAMPP SSL socket transport

Has experience when try to connect with some ssl from your localhost and get below message?

Fatal error: Uncaught exception ‘Zend_Gdata_App_HttpException’ with message ‘Unable to Connect to ssl://www.google.com:443. Error #24: Unable to find the socket transport “ssl” – did you forget to enable it when you configured PHP?’

(more)

How to send email from localhost(XAMPP or WAMP) in PHP in Windows

Whenever you works in local server (XAMPP or WAMP) for developing any email functionality in website, than you might be wonder that why email is not going from localhost(XAMPP or WAMP) in windows environment. Well, i faced the same situation and in this case i can help you. Below is the error you might get when working with email.

“Warning: mail() [function.mail]: Failed to connect to mailserver at “localhost” port 25, verify your “SMTP” and “smtp_port” setting in php.ini or use ini_set() in”

(more)

Yahoo! Messenger Hidden Emoticons

Surprise your friends with these hidden characters.
You won’t find these in the emoticon menu, but you can send them by typing the keyboard shortcuts directly into your message.

Find the emoticon image you want to generate in the first column, then read the second column to find the character combination you type to generate that emoticon. Screen reader and aural browser users may need to disable emoticon reading and enable all punctuation reading temporarily, or read the second column character-by-character, in order to hear or braille these character combination. (more)

Full Lorem Ipsum Paragraphs

A complete lorem ipsum paragraphs.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec mattis, enim eu vestibulum sollicitudin, odio mauris posuere ipsum, non interdum urna elit sit amet purus. Duis egestas elementum luctus. Sed at nunc non orci ornare tempus. Donec eget magna orci. Sed vitae orci ut dolor scelerisque aliquam. Mauris ultrices venenatis sagittis. Sed id magna lectus. Mauris eu lacinia libero. Phasellus mollis volutpat elit faucibus rhoncus. Proin erat mi, vulputate in egestas sit amet, condimentum nec quam. Mauris at lorem sodales dui pulvinar lacinia eu at sem. Maecenas in lacus orci. Nam non neque dui. (more)

Your Creative Genius Mindset: The Essential Qualities for “Outside the Box” Thinking

To be creative, is to have the capacity to think freely, openly, without limitations or constraints about problems and challenges confronting our life reality. When we are creative, we tend to see opportunities and possibilities that we would normally filter out of our personal experience. Creativity allows us to think outside of the box, around the box and through the box in an imaginative and free flowing manner. (more)

WordPress 3.0.4 Important Security Update

Version 3.0.4 of WordPress, available immediately through the update page in your dashboard or for download on WordPress, is a very important update to apply to your sites as soon as possible because it fixes a core security bug in our HTML sanitation library, called KSES. I would rate this release as “critical.” (more)

CURL replacement for file_get_contents

Easy way to CURL as easy as file_get_contents in PHP script.

function file_get_contents_curl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
//Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}

(more)