Ask ikawka???
This is an open forum, you can ask us or request for a tutorial or step-by-step how to on how to do stuffs anything within the range of this website’s topic. We will try to come-up with something. There are no promises to be made nor obligations of time on when your request will be posted. We will give our best efforts for free. ^_^
Everyone is invited.
No trackbacks yet.
Linux Chromium Browser Pre-Alpha
about 11 months ago - No comments
I finally have a successful install of pre-alpha chromium browser for Linux on my Ubuntu 8.10. But since it’s non-official and in a pre-alpha state, you can’t expect it to work as you would expect on the windows version. If you want to try it yourself, play with it at your own risk. ^_^ No animals were harmed during my test though, so have fun.
HP’s Dark-Themed Mini Look on Ubuntu Desktop
about 1 year ago - 2 comments
Not so long ago, OpenSource have a little place on the laptop market, these days they’ve gone so far. It took a long time for me to make the switch, although not totally switch to *nix based operating systems and application, especially when I do graphics since I can’t find a replacement for PhotosShop. Just More >
“gnome global menu” Mac-Style Menu for Ubuntu 8.10 Intrepid Ibex
about 1 year ago - 4 comments
Global Menu is the globally-shared menu bar of all applications launched in your desktop session. I was fascinated by this panel applet first time I saw it, I was really wishing for this type of menu although most of us find it confusing but for some reasons mac users got along with it just fine. Global Menu will only work on Native GNome Applications, this means this don’t work on Firefox 3 and some other Applications.
Fusion Chart plugin for CodeIgniter
about 1 year ago - 11 comments
This is my own version in creating a fusion chart plugin for CodeIgniter. I tried to make it as simple as possible. In just 5 easy steps you can have your plugin up and running in no time. Enjoy…
Putting credit card payment on your website using Paypal
about 1 year ago - 8 comments
I created a new stuff on how to put a credit card payment on your codeigniter website using Paypal Website payment Pro DoDirectPayment and would like to share this to you, hope it helps.
1. You need to have a paypal account and then apply for a website payment pro, just visit paypal.com (www.paypal.com) for more info.
2. You should have the paypal API Username, Password and Signature, this is important in order for the payment will be credited in your paypal account.
3. On your model, create a new file paypal.php and use my code.
4. On your controller, create a new file checkout.php and use my code.
5. If you have any more questions about putting a credit card on your website feel free to contact me archie@ikawka.com
Finding duplicates/triplicates records on MYSQL
about 1 year ago - No comments
I would like to share to you some tips on displaying duplicate or more than 1 records on MYSQL
Example: you will query to display the email address and total count of email address exist on the recordset
$sql = “SELECT emailaddress, COUNT(emailaddress) AS TotalCount
FROM tbl_users
GROUP BY emailaddress
HAVING ( COUNT(emailaddress) > 1 )”;
Codeigniter .htaccess for Godaddy.com
about 1 year ago - 2 comments
Recently we ran into a problem about .htaccess on godaddy.com, since we just move a website here we weren’t aware that godaddy has an issue on .htaccess. We took time tinkering with the codes, and so glad to have found it in the codeigniter community.
Wordpress 2.7 is out!
about 1 year ago - 1 comment
The first thing you’ll notice about 2.7 is its new interface. From the top down, we’ve listened to your feedback and thought deeply about the design and the result is a WordPress that’s just plain faster. Nearly every task you do on your blog will take fewer clicks and be faster in 2.7 than it did in a previous version.
Project pre-launching www.americandreamreview.com
about 1 year ago - No comments
Recently we launched one of our projects. http://www.americandreamreview.com/. The website caters online NCLEX® reviews. Equipped with a powerfull mix of Codeigniter as core and Wordpress for page management and AJAX for the Computer Adaptive Test Interface. Packed with more than 12,000 innovative questions including prioritization and hot-spots. Although it’s too early to hit success, we More >
Install Windows fonts on ubuntu 8.10
about 1 year ago - No comments
Even if we are using ubuntu linux, we sometimes want to use those good old windows fonts. To install the fonts, all you need to do in Ubuntu is to install the msttcorefonts package. Here are few tips on how to do it.

about 6 months ago
Hi,
i am writing one application it contains many user profiles like personal details, i need to export in as a pdf with mu;tiple pages where itcontains one user profile in one page. if you provide support for this it will be more usefull. if you can provide help in CI also so usefull
Thank you
about 6 months ago
i’ve used dompdf for that, i have posted a dompdf integration here somewhere. If you want to have each profile in one page all you have to do is add a CSS Page-break on the loop before converting to pdf and you’re set.
about 5 months ago
hi,i was going through your post..i did the same,but my image is not getting loaded.. can u tell me what is the base_path of your dompdf?
about 5 months ago
image path should be absolute, make sure that it can be opened/view using a browser; like so: “http://www.example.com/images/picture.gif”