Setting Up Perl and CGI For Wamp Server WAMP(P)

I work on Perl and CGI recently for my college project and so I decided to write a few steps on setting up Perl and CGI with Wamp Server. I hope this might be useful.

Step1:
First you need to download Wamp Server from www.wampserver.com and install Wamp Server on your machine. The default installation directory is ‘C:\wamp” and here I am using the default options for installation. To complete the installation you have to set the host name for your mail server and your email address, here you can leave the default option again. That will do no harm.

The current Wamp Server will install Apache 2.2.11, PHP 5.2.9-2 + PECL, MySQL 5.1.33, SQLitemanager and PhpMyadmin. Continue reading…

28 Comments

Floating DIV Above Embedded Flash Object

This simple tips will help you make your division float above flash object or flash player embedded on your website. When you embed a flash object or flash player on your website, the flash object will take the highest number possible z-index by default and all the other division layer will appear below the flash object. Actually this property of embedded flash object is quite useful in most cases. However when you want some text or division to appear on top of your flash object, you need this tips to fix that issue. You have three options to fix this floating issue.

First option is to compile/recompile your flash object with the parameter ‘wmode‘ value set to ‘opaque‘. However, in most cases, we normally get a precompiled flash object rather than the source flash file. In such cases the second option will be more suitable. Second option is to add a parameter in your flash object as shown in example below

<object>
	<param name="bgcolor" value="#FFFFFF" />
	<param name="width" value="670" />
	<param name="height" value="390" />
	<param name="wmode" value="opaque" />
</object>

Third option is to add an attribute ‘wmode’ with value set to ‘opaque’ in the object file. After performing any one these, your flash player or flash object will float below <DIV> having higher z-index.

3 Comments

Renaming Multiple MySQL Tables Within A Few Seconds

This can be used to rename the prefix or suffix of a table, but not the whole table name.

I came up with this simple tips on renaming multiple tables in your MySQL database within a few seconds.Recently, I was googling on how to rename multiple tables at once in MySQL Database. I came across few tips but they didn’t meet my needs. So I came up with this simple way of doing it.

First, you need to have a text editor having ‘Find and Replace‘ feature. Almost every text editor available will be having this feature. I am using Notepad++ for the text editor. The next thing you need to do is to export your database having the tables you need to rename. Export your database to an SQL file and save it on your computer. Now, fire up the text editor of your choice and open the SQL file you downloaded just now. Click the Find and Replace option from your text editor. Find your table name and then type the table name in the ‘Find‘ field, and type the replacement string in the ‘Replace‘ field. Then click ‘Replace All‘ and save the SQL file. For example, If your table name is tbl_mytable, you can find the string tbl_ and replace it with tl1_. The find and replace procedure might be different with different editors but they are likely to be similar.

Now, go to phpMyAdmin and drop or backup all the tables inside your database. Import the SQL file you have just edited from your phpMyAdmin and now you are good to go with your tables having new name.

6 Comments

RSGallery Simple Tweak

RSGallery is one the most popular and most reviewed Photo Gallery extension for Joomla CMS. This is a very simple tweak but a very useful one for people who don’t have knowledge about even simple MySQL query structures. And I hope it might be useful for RSGallery users who might not have extra time to look into the code and tweak around the MySQL query. So, here I provide a simple tweak in the RSGallery module to show the Latest or Recent Image from the RSGallery galleries. Using this module you will be able to show all recent images from all the galleries and you can also exclude a gallery from being displayed in that module.

There can be a case where you want to show latest images from one gallery only instead of having all the latest images from all galleries being listed there. For this purpose I made Candid Photos module. Here you can specify which gallery to be used. You will need to put the Gallery ID of the gallery that you want to use for candid photos. Then in the Candid Photos module, recent images from the gallery you specified only will be displayed.
Continue reading…

6 Comments

WordPress Blogroll Icon

After a long pause I came back with this tweak for wordpress. Here it comes, since I work a lot with wordpress these days. :)

I came across this wordpress tweak when one of my client wants a Blogroll Icon to be displayed along with the blogroll link. So here’s the steps on ‘How to show a Blogroll Icon’ in wordpress blog. Originally, what you have with wordpress blogroll is a list of links to websites and blogs. So to show image beside the blogroll link (most probably on the right side of the link text), perform the following steps.

Step1:
First you need to get the plugin ZocPowerblogroll from his website. Download the plugin and this plugin will do most of the work for us.
Continue reading…

4 Comments
Back to Top

Chromic Design is proudly powered by WordPress »  Entries (RSS) and Comments (RSS).
Chromic Design © 2009-2009 : Designed by Alan Pachuau