Flash Media Server (FMS) and libasneu.so.1 issue

Wednesday September 2ndTutorial, Web Hosting Category



Today I was working with Flash Media Server (FMS). Everything went accordingly except libasneu.so.1. This file is needed for FMS which is included with FMS archive. We just need to link it correctly.You may check the shared library dependencies by the following command:

# ldd fmscore

In my case, everything was found except libasneu.so.1. It was showing not found. I have started googling. Got a lots of tips. However, none worked. Some sites suggested to create a soft link to this file in /lib (ln -s /opt/adobe/fms/libasneu.so.1 /lib/libasneu.so.1) . Some suggested to do same in /usr/lib ((ln -s /opt/adobe/fms/libasneu.so.1 /usr/lib/libasneu.so.1). Another site suggested to add fms path in a config file (/etc/ld.so.conf.d/). I tried everything without any luck. Read the rest of this post →

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Append/Prepend string to a field in MySQL

Sunday August 30thTutorial Category



Just now I am working with a problem where I need to update a column/field by appending something. I was in a bit trouble for a 2 mins as I was finding a solution for this. First thing came to my mind is

UPDATE `table_name` SET `field_name`=`field_name`+’appending string’ WHERE `field_name`=’xxx’;

I knew this won’t work in my case. It is suitable when I need to SUM up floating point. However, I simply need to append to current value. Within two mins I got the idea that worked 100%. It is:

UPDATE `table_name` SET `field_name`=concat(`field_name`, ‘ appending string’) WHERE `field_name`=’xxx’;

Cool!

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Facebook Developer Garage Dhaka

Monday August 17thGeneral, Open Source Category

Yesterday, I have participated in an event titled ‘Facebook Developer Garage Dhaka’ which was organized by Infra Blue Technology and powered by Intel. That was an awesome event. About six speakers presented their speech on various topics related to facebook development. The presentations include ‘Introduction to Facebook Platform’, ‘Facebook Connect – experience on iphone’, ‘Facebook Open Stream API’, ‘Building scalable application in facebook platform’, ‘Monetizing facebook application’.

Building scalable facebook application and monetizing facebook application captured most attentions of the audience. I have enjoyed the session very much.

Thanks the organizer for such a wonderful session and for the gift pack and the delicious dinnar ;) .

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

মনপুরা সিনেমা রিভিউ

Friday July 24thThoughts Category

মনপুরা সিনেমাটি রিলিজ হওয়ার আগে থেকেই ভাবছিলাম যেভাবেই হোক হলে গিয়ে সিনেমাটি দেখব! কিন্তু রিলিজ হওয়ার দীর্ঘদিন পরেও সে সুযোগ হয়নি বিভিন্ন কারণে! আবার অন্যদিকে ছবিটি দেখেছে এমন প্রায় সবার মুখেই শুনলাম খুব ভাল লাগে নি! কিন্তু আমি তখন তাদেরকে বুঝানোর চেষ্টা করলাম, সিনেমাটি থেকে সম্ভবত তোমাদের প্রত্যাশা অনেক বেশি ছিল! সে কারণেই হয়তো ভাল লাগেনি মনে হচ্ছে!

যাহোক, যেহেতু হলে গিয়ে সিনেমারা দেখার সময় করতে পারছিলাম না এবং এমন সময় হাতের কাছেই একজনের কাছে ছবিটি’র কপি পেলাম তাই ভাবলাম কম্পিউটারেই দেখি! ভাল লাগলে সময় করে হলে গিয়ে ঋণ শোধ করে আসব! কপিটি হল প্রিন্ট! সুতরাং বুঝতেই পারছেন! তবুও এমনিতে বোঝা যাচ্ছিল! দেখা শুরু করলাম! ১/৩ দেখতে খুব কষ্ট হল! তবুও অনেক কষ্টে শেষ করলাম!

মন্তব্যঃ

-সিনেমার শট গুলো অনেকটাই খাপ ছাড়া খাপ ছাড়া

-চঞ্চল ছাড়া কারও অভিনয়ই ভাল লাগে নি! Read the rest of this post →

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

cPanel: Enable/disable specific webmail application per user

Wednesday July 15thTutorial, Web Hosting, cPanel Category

Today, I faced a situation where I need to show single webmail application to cPanel control panel user. Usually there are three (3) webmail clients. These are horde, squirrel mail, roundcube. However, I was advised to make sure that a specific customer does not see more than one specified. I suggested, ‘Enable Autoload’ feature which did work indeed but did not satisfy him. Then I opened a thread in cPanel forum and I got the following solution. That’s is easy. I quote the whole post here.

You can enable and disable webmail applications as per user accounts. Read the rest of this post →

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

PDF output generating library using PHP

Sunday July 12thPHP, Scripts Category

If you are looking for creating PDF output of your HTML pages, you can do it using PHP’s PDFlib module. However, there are some libraries for faster development of your script. Some even are not dependent on PDFlib. Please see below for quick overview.

DOMPDF
dompdf is an HTML to PDF converter. At its heart, dompdf is (mostly) CSS2.1 compliant HTML layout and rendering engine written in PHP. It is a style-driven renderer: it will download and read external stylesheets, inline style tags, and the style attributes of individual HTML elements. It also supports most presentational HTML attributes.

Features

* handles most CSS2.1 properties, including @import, @media & @page rules
* supports most presentational HTML 4.0 attributes
* supports external stylesheets, either local or through http/ftp (via fopen-wrappers)
* supports complex tables, including row & column spans, separate & collapsed border models, individual cell styling, (no nested tables yet however)
* image support (gif, png & jpeg)
* no dependencies on external PDF libraries, thanks to the R&OS PDF class
* inline PHP support. See below for details. Read the rest of this post →

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

cPanel database administering class

Tuesday June 30thLinux, PHP, Scripts, cPanel Category

It is long time since I have worked with cPanel. My last work was cPanel Email Management  script that enables us to create/delete email accounts from outside of cPanel.

Today I have worked with another cool thing. I have created similar class for database. Using this class, anyone can easily create/delete database and database users.

Current Features:

  1. Create database
  2. Create User
  3. Grant Privileges
  4. Delete Users -> Supports deleting multiple users at a time. See the example in test.php
  5. Delete Database -> Supports deleting multiple databases at a time. See the example in test.php
  6. Check if database exists
  7. Check if user exists

Requirements:

  1. cPanel server
  2. English as language of cPanel
  3. cURL

Please let me know your suggestion if you use this class.

Download V1.0

Special thanks to Sajjad Hossain for helping me during the development.

Update: 02-07-2009
- The class is approved in phpclasses.org. Click here to visit.

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

How to Upgrade Fedora 10 to Fedora 11

Tuesday June 30thLinux, Tutorial Category

Recently Leonidas, the latest version of Fedora, is released. I have already upgraded my laptop using the latest DVD. However, I was planning to upgrade my office’s desktop directly from internet. Searching internet, I have found a very useful tutorial regarding this. I suggest fedora users to have a look.

http://www.cyberciti.biz/faq/upgrade-fedora-11/

Optionally you can also read this: http://fedoraproject.org/wiki/YumUpgradeFaq

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

ঘুরে এলাম জাফলং….

Friday May 29thGeneral, Travel Category

Road to Jaflongগত বেশ কয়েকদিন ধরেই মনে হচ্ছিল কোথায় যাওয়া দরকার! কিন্তু যাওয়ার মত সঙ্গী না পাওয়ায় যেতে পারছিলাম না! আমি ছাড়া জগতের সবাই ব্যস্ত! অনেককে বললাম! সর্বশেষে বললাম আরাফাত ভাইকে! তিনি রাজি হলেন! সন্ধ্যায় সিন্ধান্ত নিলাম বরিশাল যাব! জাহাজে বসে নদী-চাঁদ উপভোগ করবো! পরদিন সন্ধ্যায় যাত্রা করার কথা! কিন্তু সকালে মনে হল আজকে তো বৃহঃস্পতিবার; বরিশালের জাহাজে কেবিন পাওয়া মুশকিল! তাই ভাবলাম তাহলে কক্সবাজার যাই! কেন আরাফাত ভাইকে বললাম দুপুরের পর চলে আসতে! এরপর দেখা যাবে কি করার! তিনি আসতে বেশ দেরিই করলেন! বিকালের দিকে আমরা বের হলাম! সিন্ধান্ত নিলাম যেহেতু কক্সবাজার ও বরিশালে আগেই আমরা গেছি এবং যেহেতু কক্সবাজারে প্রচুর গরম হবে তাই সিলেট যাওয়া যেতে পারে! দুজনেই অনেক আগে গেছি সেখানে! কিন্তু যন্ত্রণা শুরু হল যখন মালিবাগ এসে দেখি সোহাগে খালি সিট নাই! গ্রীন লাইনে ফোন করেও একই অবস্থা! বৃহঃস্পতিবার বলে কথা! তারপর আর কি করা! সায়দাবাদ এসে শ্যামলী বাসের টিকিট করলাম! ৬.৩০ এর বাস আসল ৭টায়! তাও ভাল উঠে বসলাম!Mountains in India
কিন্তু একি! একটু পর পর দেখি গাড়ির স্টার্ট বন্ধ হয়! ড্রাইভার দেখি হেলপার কে গালিগালাজ করছে! গাড়িতে সমস্যা! কি আর করা! চিটাগাং রোড এসে গাড়ি ঠিক করাতে দেয়া হল! প্রায় ৪৫ মিনিট শেষ! এরপর মোটামুটি ঝামেলা বিহীন ভাবেই যাত্রা শেষ হল! মাঝখানে একবার হেলপার ও কন্ডাকটরের সাথে কিছুক্ষণ তর্ক করলাম। আমার বক্তব্য ‘আপনাদের গাড়ির যে গ্রিলটি লাগিয়ে দিচ্ছেন এতে আপনারা যাত্রীর তুলনায় মূলতঃ নিজেদেরই সেভ করার চেষ্টা করছেন! ‘

রাত ১২.৩০ এর দিকে আমরা আম্বরখানায় নামলাম! আগেই সিন্ধান্ত হয়েছিল আমরা আরাফাত ভাইয়ের বোনের বাসায় থাকব! তাঁর দুলাভাই (পলাশ) এসে আমাদের নিয়ে গেলেন! আমরা খেয়ে দেয়ে ঘুমিয়ে পড়লাম! Read the rest of this post →

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

‘প্রথম আলো’ এক অনবদ্য উপন্যাস

Wednesday May 20thBook Reviews, General Category

প্রায় ৮ মাসেরও বেশি সময় লাগল আমার এ উপন্যাসটি শেষ করতে! এত লম্বা সময় ধরে কোন উপন্যাস পড়িনি! আসলে ব্যস্ততার কারণেই সময় করতে পারিনি! আর বিশাল কলেরবের এ উপন্যাস পড়তে এমনিতেই অনেক সময় লাগার কথা!

তবে বরাবরই আমি অল্পতে সন্তুষ্ট! ‘গর্ভধারীনি’ পড়ার পর প্রায় ১৫দিন পুরো ঘটনা মাথায় ঘুরছিল! তবে এটা লম্বা সময় ধরে পড়ার কারণে আগের ঘটনা অনেকগুলো স্মৃতি থেকে ম্লান হয়ে গেছে!

উপন্যাসের প্রথম খন্ডে একটা কথা ছিল পুরো উপন্যাসটা পড়ে যার সাথে দ্বিমতের কোন সুযোগ নেই!
লাইনটা হুবহু মনে নেই তবে মর্মার্থ হলঃ
তীর যেমন সামনে ছুটে চলার আগে একটি পেছনে যায় তেমনি  আমাদেরকে সামনে আগানোর আগে গত শতাব্দীটা সম্পর্কে জানা দরকার! Read the rest of this post →

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Seminar on ‘Current Development Trend’

Monday May 18thGeneral, PHP Category

On May 16th, I have joined the seminar titled ‘Current Development Trend’ organized by phpxperts, a globally recognized PHP group on yahoo maintained from Bangladesh.

There were total 8 presentations by experts of those fields. The presentation titles were:

  • How to Become a PHP Nijna?
    Emran Hassan
  • How to make simple Facebook application?
    Junal Rahman
  • Advantages of using Javascript Frameworks : jQuery
    Anis Uddin Ahmed
  • How to make Quality Application
    NHM Tanveer Hossain
  • Overview of OpenSource eCommerce Applications : Magento
    Saidur Rahman
  • Web Security
    Mizanur Rahman
  • ZCE : Why you need it? How to achieve?
    Md. Mahmud Ahsan
  • Scalability
    Hasin Hayder

All slides, photos and videos are available on www.slides.phpxperts.net.

In addition to the above session, I have another memorable session. During the seminar, the most active moderators of the group are selected and it’s great to feel that I am one of them. Other two are Arafat Rahman and Lelin. All three were awarded. After all the presentations completed, we had a photo session with all moderators. It’s a great feelling to see all 14+ moderators.

Photo Credit: http://nagbaba.blogspot.com/

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

417 status/response code and PHP cURL

Friday May 15thPHP, Tutorial Category

Recently I have released an extension named put_twitter for PunBB 1.3.x. It sends forum’s activity to designated twitter account. It uses twitter class for posting to twitter which utilizes PHP’s cURL library.

The extension works fine for most of the people. But a few were complaining that it was not working for them! I was totally confused! Today while working with this script, I have tried to know the server’s response. I found that it was returning 417. This is first time in my life getting such response code! So I have started googling! After a long search I have found the solution.

When we prepare cURL request header, we need to add an extra line to get rid of this error. It is like:
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Expect:"));

No sooner I added it and uploaded, I found my problem fixed and all messages are not instantly posting to twitter.

More more info please visit this and this.

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

স্রষ্টার প্রতি কৃতজ্ঞতা…

Tuesday May 12thGeneral, My Life, Tutorial, University Category

আমরা প্রতিটি মানুষ যার যার অবস্থায় অনেকের চেয়ে কতই না ভাল আছি! অথচ তার জন্য আমরা সৃষ্টিকর্তার নিকট কতটুকুইবা কৃতজ্ঞ হই বা তা প্রকাশ করি! অনেকেই হয়তো আমরা মনে মনে কৃতজ্ঞতা স্বীকার করি! সম্ভবত এটিই সর্বোত্তম পন্থা! কিন্তু প্রকাশ্যে কৃতজ্ঞতা প্রকাশ করলে সবচেয়ে বড় লাভ যেটা হবে সেটা হল অন্যরাও তাদের উপর বর্ষিত আশীর্বাদ সমূহ উপলব্ধি করতে পারবে এবং হয়তো তারাও স্রষ্ট্রার প্রতি কৃতজ্ঞতা প্রকাশে আগ্রহী হবে!

ইন্টারনেটে আমরা তো কতই কিছুই না করি! কতই না খেলা ব্লগে ব্লগে খেলি! আসুন না কিছুক্ষণ অন্ততঃ কৃতজ্ঞতা প্রকাশের খেলা খেলি! আপনি আপনার ব্লগে কমপক্ষে ৫টি বিষয় লিখুন (যদিও এরকম বিষয় গুনে শেষ করা যাবে না) যার কারণে আপনি স্রষ্টার কাছে প্রচন্ড কৃতজ্ঞ!

আমি কয়েকটি কারণ লিখছিঃ
Read the rest of this post →

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Convert .nrg (Nero Archive) to .iso, mount .nrg in Linux

Sunday May 10thLinux, Tutorial Category

Today I have downloaded an archive which later I found as an .nrg archive. Again, trial period of my nero for linux is already expired. So I was looking for a solution to read the .nrg archive in linux. Did not get something useful in google. Then I post a line in Twitter. jimmietryon replied my twitter status and told me about a magical solution to convert the .nrg archive to .iso archive. It is  NGR2ISO.

I simply downloaded the RPM and installed the script. No dependency issue :-) . Then I run the command from shell and the 655mb .nrg archive converted into .iso within 1.5 minutes.

nrg2iso cal3.nrg cal3.iso

Understanding the line is quite easy. cal3.nrg is the current archive and cal3.iso is expected output.

While writing this blog jimmietryon gave another great tip of how to mount .nrg in linux. So, to read .nrg in Linux we even now don’t need to convert to ISO. Here is the command to mount .nrg archive

mkdir /media/nrg

mount -o loop,offset=307200 cal3.nrg /media/nrg/

Quite easy! Isn’t it?

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Unbelievable Optical Illusion

Saturday May 2ndGeneral Category

I have seen many optical illusion. But today I got something exceptional and unbelievable illusions in my mail sent by my elder brother. The last one is really mind blowing.

a_003

a_007 Read the rest of this post →

Bookmark: bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Size

Colors