create sub buckets on amazon s3

Sub buckets is very tricky task to create on Amazon S3 service… <?php include(“S3.php”); // class for REST based S3 manager $s3 = new S3(‘accessKey’, ‘secretKey’); $s3->putBucket(‘bucketname’, S3::ACL_PUBLIC_READ); /* function to upload svnlabs.txt file to subfolders s/v/n/l/a/b/s on S3 bucketname */ $s3->putObjectFile(‘svnlabs.txt’, ‘bucketname’, ‘s/v/n/l/a/b/s/svnlabs.txt’, S3::ACL_PUBLIC_READ); /* function to delete svnlabs.txt file to subfolders s/v/n/l/a/b/s on … Read more

float: left – anchor’s height

Today I faced a strange problem …. I have to add drop-down menu by javascript. <a href=”https://www.svnlabs.com” style=”border:2px dotted #0000FF”><img src=”svnlabs.gif” border=”0″ style=”border:2px solid #009966″ /></a> this is the code where I have to add a menu but menu dancing on this image.. when I mouse over the image menu appeared to bottom of the … Read more

MVC-model-view-controller component

General definition: Input => Processing => Output Controller => Model => View Model The model is the part of the component that encapsulates the application’s data. It will often provide routines to manage and manipulate this data in a meaningful way in addition to routines that retrieve the data from the model. In our case, … Read more

txt2img

Here is the code to convert text to image or simply write text on image…. <?php $img=ImageCreate (100,20); $background_color=ImageColorAllocate($img,255,205,255); $textcolor=ImageColorAllocate ($img,203,14,91); ImageString($img,3,5,5,”svnlabs.com!”,$textcolor); ImagePNG ($img, “svnlabs.png”); $img2 = imagerotate ($img, 100, 0); ImagePNG($img2,”svnlabs.png”); ImageDestroy($img); ImageDestroy($img2); ?>

DIV – Overflow Hidden

Today I got a problem to show product title in 2 lines on product’s detail page….. After some R&D……………….. I got solution by CSS to style a DIV with height for 2 line text and then overflow: hidden ЁЯЩВ I also used wordpress to wrap the text in next line for product’s description in 5 … Read more

TinyMCE load ajax

Today I got problem to load TinyMCE as dynamic loaded textareas by Ajax? Solution: <a href=”javascript:void(0)” onclick=”ajaxEdit(); showEditor();”>Edit Content</a> here ajaxEdit() is ajax function where textarea loaded by ajax as html response. here we have use showEditor(); to load TinyMCE editor … page loaded by Ajax <script> function showEditor() { setTimeout(“initEditor(‘newsdesc’)”,4000); } tinyMCE.init({……………………… …………………………………………………}); function … Read more

Hindi Text Editor

akIndicPlugin is very useful for Indian language like Hindi, Marathi, Bengoli, Gujarati, Malyalam, Telugu and Punjabi…. Source: http://amiworks.co.in/talk/akindicplugin-for-tinymce-and-joomla/ http://www.vishalon.net/IndicResources/IndicIME/tabid/244/Default.aspx