Twitter OAuth PHP

Create applications that integrate Twitter https://dev.twitter.com/apps Basic authentication is not supported by Twitter API The first PHP Library to support OAuth for Twitter’s REST API. https://github.com/abraham/twitteroauth Read-only application cannot POST Twitter Demo http://demo.svnlabs.com/twitter/

Data Transfer from Amazon S3 to Web Server

We can transfer / copy Amazon S3 bucket with GB of data to EC2 machine and then transfer the data to the dedicated server. We need Amazon S3 details: Access Key: ? Secret Key: ? We need Web Server details: Host: ? User: ? Password: ? One option would be to run an Amazon EC2 … Read more

Plesk Security Vulnerability

Install “Parallels Plesk Panel Upgrade to v.10.4.4” to protect your dedicated server from potential security breaches. If you’re already running 10.4, you’re already protected from this vulnerability. Step1: Step2: Step3: Parallels offers free upgrade support. Click here [https://www.parallels.com/support/plesk/free10assistance/] for more information. Update will patch security holes outdated versions have opened…   # /usr/local/bin/perl /usr/local/cpanel/3rdparty/quickinstall/scripts/checkupdates.pl

PHP Bulk Emailer

If you send email to 5,000 people using standard PHP tools, your ISPs might be blocked in seconds. I think you already read below articles… Amazon Simple Notification Service Command Lines Theory About Bulk Emails Emails are not working on server? Amazon SES – Emails In Cloud Open source – Port25 Linux Mail Servers Email’s … Read more

Make Own CDN

Well… I am working on alternatives to make OWN CDN… I have few options to create such CDN * Google App Engine http://24ways.org/2008/using-google-app-engine-as-your-own-cdn http://www.digitalistic.com/2008/06/09/10-easy-steps-to-use-google-app-engine-as-your-own-cdn/ * Amazon EC2 Building your own CDN using Amazon EC2 from SergeyChernyshev * Wowza http://www.wowza.com/forums/content.php?81-How-to-achieve-the-lowest-latency-from-capture-to-playback * GeoIP, NGinx, Bind, Varnish How to build your own CDN using BIND, GeoIP, Nginx, and … Read more

VideoWhisper in Drupal

VideoWhisper.com provides web based video communication software that can be installed and integrated on virtually any type of website. VideoWhisper Live Streaming Integration in Drupal VideoWhisper Live Streaming provides web based live video streaming: http://www.videowhisper.com/?p=Drupal+Live+Streaming+Module Before installing this make sure all hosting requirements are met: http://www.videowhisper.com/?p=Requirements Install the RTMP application using these instructions: http://www.videowhisper.com/?p=RTMP+Applications Server … Read more

Install MovieMasher

Movie Masher open source flash based online video editing software and media player is free code to white label on your web site. Movie Masher Feature Adobe Flash™ applets that provide front-end tools for common video editing tasks: * Trim, composite and timeshift video * Mix and fade multiple audio tracks * Add effects, transitions … Read more

Batch Downloading in PHP

<?php for($d=1;$d<=100;$d++) { $link=”http://www.domain.com/demos/”.$d.”/source.zip”; if(http_url_exists($link)) {   echo”Processing: “.$link.”<br>”;      exec(“wget -O “.dirname(__FILE__).”/download/source-“.$d.”.zip “.$link.” 2>&1″,$pp);      echoimplode(“”,$pp);echo”<br><br>”; } } //$file_headers = @get_headers($file); //’HTTP/1.1 404 Not Found’   function url_exists($url){     if(!$fp=curl_init($url))returnfalse;     returntrue; } function http_url_exists($url){          $file_headers=@get_headers($url);          if($file_headers[0]==’HTTP/1.1 404 Not Found’)         returnfalse;          returntrue; } ?>

Webisode

The webisode is simply a web episode, this is a new medium called web television that stream live broadcast, dramas, serial storyline, media events online over the Internet The webisode is web episode especially viewed at a Web site for TV show have been telecast. Technologies Used * HTTP * RSS/JSON * RTSP/RTMP * SMIL * … Read more

Install OpenMeetings

OpenMeetings – An Open Source Web Conferencing Solution that share microphone or webcam, share documents on a white board, share your screen or record meetings. Install Development Tools # yum groupinstall “Development Libraries” -y # yum groupinstall “Development Tools” -y IPTables – Make sure the following firewall ports are open 1935 (RTMP), 8088 (RTMP-Over HTTP), … Read more