Project

Here is a brief list of the projects  I had done,  plugins and themes I had developed.

WordPress Plugins Developed

  1. Name: Email Notify
    Details: http://worth2read.org/blog/2010/02/21/wordpress-plugin-send-notification-by-email-when-a-post-is-published/
  2. Name:  Adsense for writers/users etc…
    Details:  Allows authors, contributor etc to add publisher id so that they can display their Google ads.  Administrator has the option to change the publisher id.
    Download link: http://worth2read.org/blog/adsense.txt

WordPress Themes developed :

  1. http://worth2read.org/blog/2009/08/08/a-simple-cool-wordpress-theme-yellow-and-blue/

Scripts

  1. Import b2evolution to wordpress
    Details: http://worth2read.org/blog/2009/01/31/import-from-b2evolution246-to-wordpress-27/
  2. Script to check Page rank, Alexa rank, Google indexed pages, Dmoz listing etc.
    Details: http://worth2read.org/blog/2009/08/27/page-rank-alexa-rank-back-links-indexed-pages-dmoz-listing-checker/
    Demo: http://www.worth2read.org/rank.php

The PHP sites / pages Done :

http://tick8.net/ – Integrated cyberbit payment gateway and did HTML / PHP customization

http://www.comfortrealty.com/ – Website for a real estate agent

http://www.worth2read.org – My website

http://www.hiremwangi.com/ – WordPress installation and customization

http://www.k-zentertainment.com/ – Added rss news feeds of other websites to the homepage.

http://www.drsdirect.net/pricing/pricing_12.php or http://worth2read.org/pricing2/pricing_12.php – When the user submits the data, he gets an option to Print it as PDF document or send the email with pdf as an attachment.

http://worth2read.org/test/nursinghomesfinder/ – this is a full website I had developed for a client. It is a database driven website. User Registration, Login, Resend Password, Change password etc are available. The site data is available only for those who registered. Registration is free. They just want to collect the data for some marketing purpose.

http://www.cockerpuppies.net/buyer-information.php – Javascript validation / On form submission mail is send to admin with the details

http://www.cockerpuppies.net/shipping_information_form.php – Javascript validation / On form submission mail is send to admin with the details

http://www.bichonpuppies.net/shipping-form.html – Javascript validation / On form submission mail is send to admin with the details

http://www.bichonpuppies.net/buyer-information.html – Javascript validation / On form submission mail is send to admin with the details

http://a1medicalevents.com/demo.php- Sample forms developed for hospitals. Database queries – insert, update, delete, search etc… Also charts are used ( Used the open source Fusion charts )

http://a1medicalevents.com/ -Password protected webpage

http://www.destroymybills.com/ – Created Rotating landing pages. Each time a visitor comes, a different landing page appears

http://www.northernirelanddentists.net/ – I was involved in customizing this site. This uses smarty templates.

loveofthedesert.com: Integrated Disqus comment system to this blog (blogger)

http://lovepalmspringshomes.com : Integrated Disqus comment system to this blog (wordpress)

http://www.printersprofitzone.com/blog/ : This is a wordpress blog converted from Joomla. I transferred comments by writing SQL querries

http://fancydressheaven.co.uk/: I have added the tools  from addthis.com to this Zencart template

http://redesignretirement.com/ : WordPress installation and customization

http://lifestyledesignforboomers.com/blog/ : WordPress customization

http://www.atthebench.com/ : This is a wordpress blog. The home page uses a  different template. I coded this template. That is to include the contents of the page, then comes the most recent post and finally a list of recent posts. Also excluded a protected category from appearing in homepage posts.

softwaremachs.com, brunoredaelli.com, tvmachs.wordpress.com are wordpress.com blogs. Added widgets and done simple customization.

http://blog.lollisoft.de : Customized the appearence of this wordpress blog.

www.KaivanDave.com : Customized the appearence of this wordpress blog.

http://www.thetradingreport.org : Customized the appearence of this wordpress blog

http://www.cakedla.com/blog/ – Helped in integrating html website to wordpress blog.  Used different headers for different pages and categories

http://www.soundresources.net/ – Helped in the customization of  Shopp plugin.

http://howtogetajobwith.com/ – Helped in Thesis theme customization

http://intelligentmachs.com/ – WordPress based site

http://interviewiq.com.au/, http://www.whatdoemployersreallywant.com.au/ – Helped in thesis theme customization and plugin installation

http://vanmarneylifecoachingllc.com/VanessaBSimon/ – Customized the wordpress blog

http://beforethebabywakes.com/ – WordPress customization.

http://www.tick8.net/ – HTML customization

http://invitationintoabundance.com/ – WordPress Customization

http://www.usmomssite.com/ -  WordPress customization

ASP sites Developed:

http://accessriverside.com/publication.html – Database querry to display records.

Headlines

Other Big Stories

How to install ioncube in your server

Some scripts are encoded with ioncube. So to run the script, you need ioncube installed at your server. To install ioncube at your server, use the following instructions: Go to this page http://www.ioncube.com/loaders.php and download the package suitable for your operating system Unpack it and upload it to your server in the directory ioncube. The [...]

Full Story

Unable to update some wordpress users

One of my clients had this issue – unable to update some of the wordpress users. When trying to update some of the user, he was getting this error Catchable fatal error: Object of class __PHP_Incomplete_Class could not be converted to string in C:\web\wp28\wp\wp-includes\functions.php on line 1463 I went through many fixes, suggested in different [...]

Full Story

Changing layout of products page in Zencart

To change the layout of products page in zencart edit the following  file: /includes/templates/template_default/templates/tpl_product_info_display.php, and moving blocks of code to where you want them. Each block is identified by and comments to make it easy to keep track of them.

Full Story

Inserting data into access database using Asp.Net

I was trying to insert data into access database from an asp.net page. I could not find any samples in tutorials. So I thought to put the code (that worked for me) here. If anyone is looking for a sample I hope it would be helpful. <%@ Import Namespace=”System.Data.OleDb” %> <script runat=”server”> Sub submit(sender As [...]

Full Story

Compare title and category name in wordpress

I had come through a situation to compare the category name and post title for a wordpress post. The following functions and code helped me to do this. $category = get_the_category(); $cat = $category[0]->cat_name; $post_no = get_post($post); $title = $post_no->post_title; $match=strcmp($cat,$title); if($match==0){ echo “match”; } else { echo “no match”; } The problem here is [...]

Full Story

Blank page for wp-admin

Just now, I had been in a horrible situation that I can see all my blog pages but when I go to http://worth2read.org/blog/wp-admin/ it appears as blank. That is I am completly locked out of the admin area. I made a Google search for the solution and confused with lots of solutions that appeared. However [...]

Full Story

Adding new widgets in wordpress themes

We can add new widgets by using functions.php in the theme folder. For example I can add “Services I offer and Google Adsense in 2 ways to the sidebars. 1. Code both to the page sidebar.php 3. Create widgets using functions.php file in the theme folder Following code shows how I added a simple Adsense [...]

Full Story

Adding Separate boxes for wordpress excerpts

In most of the themes the post container lists all the excerpts of the most recent posts in the home page. The following code will help you to break up each post into separate boxes. Example: Theme Home page Preview Using css we can make a 10px gap in-between each post, where the background of [...]

Full Story
© 2010 Some PHP | Wordpress Tips Suffusion WordPress theme by Sayontan Sinha