Tech Rocks

Coldfusion
Java
JQuery

An online resource for latest web technologies like Coldfusion, JRun, Pro*C, JQuery, HTML5, PHP, W3C, Java, J2EE, C, C++, ORACLE, PL/SQL, MySql, Ajax, Coldbox, Fusebox, UNIX, JavaScript, NodeJS and much more...

Sunday, September 30, 2012

Install PHP on App-engine

Follow the articles mentioned below.

Its well explained.

 

Basic Steps

Downloads – Download the src jar file and put it in the WEBINF/lib

References

Check link 1, link 2, link 3

Create a phpinfo.php

Web.xml changes

 

See working Demo

Wednesday, August 29, 2012

Installing Open Blue Dragon on Google App Engine

Google Plugin for Eclipse 4.1 (Juno)

Check this link for details on the Google Plugin.

For online installation refer this link

For offline installation refer this link

Install the Google plugin for Eclipse and Get started with App-engine

Wednesday, August 22, 2012

Cloud Storage

Windows Skydrive – 8 GB

Dropbox – 5 GB

Box – 5 GB

Amazon Cloud Drive – 5 GB

Ubuntu One – 5 GB

Google Drive – 5 GB

Evernote – 2 GB

Zumo Drive – 2 GB

Picassa – 1 GB

ADrive – 50 GB

DriveHQ – 1 GB

SugarSync – 5 GB

4shared – 15 GB

Zero PC – 2GB

Wednesday, May 30, 2012

Google Apps Access domain users calendars



<script language="javascript">

$(document).ready(function() {         $('#dataProcessingIFrame').attr("src","http://www.google.com/calendar/embed?src=user%40domain.com&ctz=Asia/Dubai");
  });
 function changeurl(sel) {
    var value = sel.options[sel.selectedIndex].value;
   var url = "http://www.google.com/calendar/embed?src=user%40domain.com&ctz=Asia/Dubai";
    url = url.replace("user", value);
    $('#dataProcessingIFrame').attr("src",url);
}
 function openurl(sel) {
    var value = sel.options[sel.selectedIndex].value;
   if(value != "0") {
     var url = "http://www.google.com/calendar/embed?src="+value+"%40domain.com&ctz=Asia/Dubai";
        window.open(url,'_blank','width=600,height=600');
    }
 }
</script>



<select name="users" onchange="javascript: openurl(this);"> <option selected="" value="0">Select User</option> <option value="user">user@domain.com</option></select>