Category: wordpress

WordPress Plugin for Bengali WordPressians (?)

Ah ya, let me call you WordPressian if you are a wordpress fan. Last night I developed a small plugin for bengali wordpress users. If you install this plugin you will be able to write in Unijoy, Phonetic and Plain English mode. You will get three buttons as shown here
editor.gif

Then you can type Unicode on se,ecting either UniJoy or Phonetic
editor2.gif

And you can write english anytime by clicking English button or pressing Control+C

editor3.gif

Thats it. I will release this plugin under Ekushey.org by Tomorrow

Turn your wordpress Blog into a full fledged CMS

Hopefully you know that my second book published few weeks ago from packt publishing. I wrote abput several topics from beginning to master your wordpress blog. One of the chapter, I told how you can customize your wordpress blog into a full fledged CMS by modifying the code. Dont worry, you need not to be a pro for editing this code.

Packt is giving you the facility to freely download this chapter. Goto my book website at http://www.packtpub.com/wordpress/book and download the chapter.

I got a cool idea – Now developing this wordpress plugin

After getting the solution for sending message to MSN contact I got another cool idea. I can easily develop a small plugin for wordpress using which people will be able to subscribe to any blog with their MSN address. and When that blog will update, that plugin will automatically send new post URL to those subscribed MSN addresses.

Whoa!!

I have started developeing this cool plugin for wordpress.

Packt Open Source CMS Award

A new award scheme was launched 24th July by Packt Publishing offering a first
prize of $5,000 and the title of best Open Source Content Management System,
2006. Voted for by a panel of independent judges and visitors to
www.PacktPub.com , the award is designed to
recognize and reward outstanding achievement in a high quality and highly
competitive marketplace.

Packt Publishing is currently looking for people to nominate their
favourite Content Management System at www.PacktPub.com/award. The five
projects that receive the most public nominations will go through to a final
round of voting, with a panel of judges and votes from users deciding who
receives the $5,000 prize.

For more information about the Packt Open Source Content Management System
Prize, please visit: www.PacktPub.com/award

Now Its time to Bring some Great Open Source CMS Up.

WordPress SQLite – Update One

1. Installer is Finished
2. WordPress DB core conversion finished

Now I am stuck with Role Management and I will finish it hopefully within a day. Last night a funny thing happened. In wordpress installer they check whether a table has been successfully created by invoking “SHOW Tables” command which is not compliant with SQLite. So I start searching how to get information about database scheme. After searching for a while, I finally went thru the code of phpsqliteadmin and found the solution.

Every SQLite database has a table called SQLITE_MASTER which remains hidden. So you can just execute the following command to get all the table names.

“SELECT name FROM SQLITE_MASTER where type=’table'”

Really Cool. !!! I am very much excited abt this project and I am sure – I will release it in friendly way. In WordPress SQLite edition you can use standard wordpress distribution (with modified db core) but you can just configure your config file and add the following line.

driver = ‘sqlite’

I just want to avoid all the hassle for the end user 🙂

Lets see!!