Rashedul Islam Sumon

A professional of web technology and programming which is my passion.

Homepage: https://rhsumon.wordpress.com

jQuery thickbox gallary image loading problem

In my past post I discussed about a problem of thickbox while working with ajax content. Today I’ll show you another problem in which people always fall while using jquery thickbox and then if they don’t get any suitable solution go for alternative which are available 🙂 The problem is sometime (most of the case) while thickbox is used for showing image gallary with “rel” attribute in the link the images would not load. I also fell in the problem and the image was not loading while I use the rel attribute for showing image gallery and even I wanted to go for lightbox which is cool also. But then I found the issue. I’ll show you the issue bellow:

Read the rest of this entry »

, , ,

Leave a comment

jQuery thickbox problem on ajax loaded content with php and codeigniter

Hope everyone doing well. Today I’ll show a trick about jQuery thickbox which I was using for one of my project. I have worked earlier also with this earlier but i didn’t have to work with ajax loaded content. Normally it’s working great with your inline element on your page but when you will use it in the content which is loading by ajax will show the problem, the link in the ajax content will work as default link.

Read the rest of this entry »

, , , ,

1 Comment

Setup apache virtual hosts in Mac OS X and xampp

When we develop projects sometime we need to make the website act as a document root like first party domain. By accomplish this we need to set up virtual hosts on the local server. I’ll explain here about this using XAMPP on MAC OS X LION. XAMPP uses Apache web server so we need to do it by configuring Apache. But who are new in development and MAC OS may fall some problem with it. I’ll discuss on the problems you may face here.

Read the rest of this entry »

, , , ,

9 Comments

Jquery autocomplete dropdown and select id with php and codeigniter

Few days ago I was implementing a drop-down/combo-box for selecting from a huge data, So thought to use jquery autocomplete plugin. But I was very upset while looking for the autocomplete use so that I can select the id to post, I did not find any good resource or documentation about this, I searched over internet and got some post but not what I am looking for. I just wanted to implement the autocomplete for a textbox and after selecting a value I’ll get the id of the value to post. We will discuss on this topic today Read the rest of this entry »

, , , , ,

10 Comments

Blink your notification message with javascript and jquery

I was developing an application where I was needing to show some notification messages those should be blink in a time interval, So that the user can easily notice the notice.

Here I’m going to show the simple idea how we can do that :

Read the rest of this entry »

, , , , ,

1 Comment

HTTP Security or Authentication with .htpasswd On Mac OS X

I think most of you are aware of http security using .htpasswd. It is the way to secure any directory or domain. I was using it in windows with some htpasswd generator. On unix based system it’s more easier for anyone to secure any directory or webpage.

Read the rest of this entry »

, , , ,

Leave a comment

Play Windows 7 under Mac OS X For Free

Free ! No the windows is not free but I mean the virtualization is at no cost ! If you’re a developer like OS X you may need to check for windows sometime because of checking browser/environment compatibility etc. So with Mac OS X the first choice of virtual machine of course. So we are going to install Microsoft Windows 7 as a virtual machine with no cost. There are some virtualization tools available like “Parallels Desktop” or “VMWare Fusion” which will take some cost from you. But here we have some other tools which is free and lot like those tools which I mentioned.

We will need to do the following: Read the rest of this entry »

, , , ,

Leave a comment

Common terminal commands on Mac OS X

I’m a new user of Mac OS X as it’s unix based OS all the important things need to handle with bash/command. The prompt is called as Terminal which resides at /Application/Utilities. Now the commands, there are the commands we may need follows:

Read the rest of this entry »

, , , ,

Leave a comment

Update Table Value From Another Table

Sometime We need to Update one table from another table. Suppose we have a table named property which has one column named value that should be a double value, but somehow we changed it to decimal (10,2) so now it will truncate from the third decimal point if there are some. Read the rest of this entry »

Leave a comment

Get Querystring in Codeigniter Project

In most of the codeigniter project it is turned off the querystring. And We can easily do anything without enabling the query-string because we can do everything by segment.

Now coming to the point. If you are integrating a payment system in your application and the payment gateway return you like the following method :

 http://www.mydomain.com/checkout/success/payment?ORDER_ID=1234&TIMESTAMP=12345678&PAID=1&METHOD=pay&...bla ... bla

then you should think about enabling the query-string.

Read the rest of this entry »

, , , ,

5 Comments