Loading content, Please wait..

As WordPress and bbPress both come from the same camp, successfully integrating both of them to share logins as well as template functions has been a buzzing issue for developers. In fact, because both WordPress and bbPress have an almost similar file management structure, it makes all the more sense to integrate bbPress as forums into WordPress rather than using phpBB or SMF or any other boards.

Various resources over the web are trying to explain the process of (deep) integrating WordPress and bbPress without any issues, but mostly they are broken or outdated. In this guide, we’ll explain the process of integrating the latest stable versions of both WordPress (2.7.1) and bbPress (0.9.0.4) step by step in a comprehensive way.

Step 1: Downloading the Latest Stable Versions

Download the latest stable version of WordPress from WordPress.org and the latest version of bbPress from bbPress.org

Step 2: Extracting the files

Extract the WordPress files into the root directory of your web server (or where you want to install it). Create a new database on your host using your phpMyAdmin or host’s cPanel.

Now, create a folder named forums inside the WordPress directory so that it forms a sub-directory of your WordPress website (for example www.YourDomain.com/forums). Now your FTP directory listing should look somewhat like this:

FTP Structure after creating the Forums Folder

FTP Structure after creating the Forums Folder

Extract the bbPress files into this forums directory.

Step 3: Installing WordPress and bbPress

Now install WordPress by visiting your website URL in your favorite browser (www.YourDomain.com) and Create a Configuration File using the name of the freshly created database and database username and password. You’ll be done through, quite easily.

To install bbPress as your forums software go to www.YourDomain.com/forums. When the installation page appears click on the Let’s Get Started link to begin with the configuration. Enter the same database name, user name and password as you used for your WordPress install. Don’t check the advanced settings. Just save your database configuration settings.

Step 4: Integrating WordPress into bbPress

The next option is basically where the integration process actually starts. Place a check against the add integration settings. Then place a check against the add cookie integration settings. This enables you to use shared logins.

This is also where the complication comes in, in the integration of WordPress 2.7.1 and bbPress 0.9.0.4. Cookie generation and management mechanism in WordPress 2.7.1 is very different from WordPress 2.5. However bbPress still uses the cookies compatible with previous versions of WordPress. We’ll use a plugin as a work around to downgrade the cookies generated by WordPress to sync with bbPress. Follow the steps below.

Step 5: Filling in the WordPress integration details

In WordPress address, enter http://www.YourDomain.com

In Blog address, enter http://www.YourDomain.com

Now go to https://api.wordpress.org/secret-key/1.1/ to generate WordPress Cookie secret keys. They’ll look somewhat like this:

define('AUTH_KEY', '3{=J|rF]CLK3XNzzKc+*Bn@2yeMh#y{c$PqfAgmW*WgPevIOEAi6Gl{b1');
define('SECURE_AUTH_KEY', '-P`&G!_+5|1uu`>8y9!$f;.T<6-Oa');
define('LOGGED_IN_KEY', '3xIsD$9TmGg;FAu.[V,nqb%lE/`N~)h4rE>cO`]@h vkN?`>fA0w;|FFb|_3NW40');
define('NONCE_KEY', '{qBV?O[wCsW5 Y+1^ ].%Y-Mp[0*m`$A@M3:;OHm=>&R*$I4Zlv7^n*+G`ib.#?a');

In your root directory, open the wp-config.php file. Look for 4 lines starting similarly… Replace them with the generated keys. Perform this step carefully.

Now copy the value of 'AUTH_KEY' that is

3{=J|rF]CLK3XNz<DGr|K>zKc+*Bn@2yeMh#y{c$PqfAgmW*WgPevIOEAi6Gl{b1

(whatever is generated for you) and go back to your browser. Paste it into the WordPress Cookie Secret Key field.

Now go to http://www.YourDomain.com/wp-admin/options.php and look for a field named secret. Copy the value of this field and paste it into the next field of bbPress configuration – WordPress Database Secret. Finally place a check mark against the Add user database integration settings. You don’t need to use the advanced settings. Just Save WordPress Integration Settings and proceed to the next step.

Step 6: Finishing bbPress install with Site Settings

Enter the Site Name and Site Address (mostly, it’ll be automatically guessed for you). Select admin in the username drop-down to map it as the Key Master. Type the name for your first forum and save site settings to finish setting up the forums.

Registration – Setting up User Roles

When a user registers on your bbPress forum, your WordPress blog doesn’t know about it (and vice versa). The user will be created, but WordPress won’t know what user role to apply.

In the “WordPress Integration” section of the “Settings” area in your bbPress admin you will find a “User Role Map” where you can set which roles will be applied to users who register on your forums. Users who register on your WordPress blog will have the appropriate role applied to their account when they first login to bbPress.

Setting Up User Roles When Integrating WordPress With bbPress

Setting Up User Roles When Integrating WordPress With bbPress

If you don’t setup a role map, then this will not work. When you do setup a role map (or change it) any users who are missing either role will be updated, but existing roles will not be affected.

Step 7: Modifying the wp-config.php file

Add these lines of code

define('COOKIE_DOMAIN', '');
define('COOKIEPATH', '/');

Just before this line:

// ** MySQL settings - You can get this info from your web host ** //

This would generally be near the top of the wp-config.php file at around lines 16 to 18.

Step 8: Modifying the bb-config.php file

Create a new blank file path.php and insert the following lines of code into it:

<?php
$p = getcwd();
echo $p;
?>

Upload it into your root directory and access it from your browser at www.YourDomain.com/path.php. It would show you the absolute path to your website and would be something like this: /home/xyz/public_html/sitename/

Copy this path as we will paste this in the bb-config.php file.

In the forums directory, edit the bb-config.php file and insert these lines of code in line 2 immediately after the opening PHP tag ( <?php )

if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST')) {
define('WP_USE_THEMES', false);
include_once( 'PASTE ABSOLUTE PATH HERE/wp-blog-header.php' );
header("HTTP/1.1 200 OK");
header("Status: 200 All rosy");
}

Then, near the bottom of the file – add these 2 lines of code just before the /* Stop editing */ line

$bb->custom_user_table = 'wp_users';
$bb->custom_user_meta_table = 'wp_usermeta';

Save your bb-config.php file and exit.

Step 9: Installing a magical plugin

Ann Oyama developed a WordPress plugin that enables WordPress to generate cookies that work with bbPress 0.9 so that a single shared sign in can be accomplished between the two! Download this plugin at WordPress.org

Basically the cookies generated by the latest version of WordPress are downgraded to the cookies generated by previous versions of WordPress. Upload the plugin to wp-content\plugins\ and activate it from your WordPress admin dashboard.

After you activate the plugin, you’ll be asked to log in again into your WordPress admin dashboard. Instead of logging in once again – type

www.YourDomain.com/wp-login.php?action=logout

When you’re logged out, clear your browser’s cache and cookies. Restart your browser.

Step 10: There’s no step 10. Bingo!

You’ve successfully deep integrated your WordPress 2.7.1 with bbPress 0.9.0.4. You can now use WordPress template tags in your bbPress theme and style it similar to your WordPress theme… and you’ve a single sign-on shared login set up and running! I hope you find this guide helpful. If you face any problems, feel free to drop us a comment. We’ll try our level best to help you out.

61 Responses to “Deep Integrating WordPress 2.7.1 and bbPress 0.9.0.4”

 


10 Mar, 2010

i’ve used these steps but now i m unable to login on my bbpress

 


10 Mar, 2010

I hope you are using bbPress version 0.9.04 as the steps are for this particular version. Please check the version as bbPress 1.0 is now available and integration is much more easier now.

 


23 Jul, 2009

one more thought: how can I disable registration with bbpress?
I am using it as a forum for my wpmu install, so I only want people who have a blog with me able to log in, I don’t want people signing up with bbpress.

 


22 Jul, 2009

hello.

noticed I still have a problem: users of subdomains, aka people who have a blog i.e. test.zice.ro don’t stay logged in because the forum is on the main domain :-( somethign went wrong :-(

if you wanna have a look get a blog on http://zice.ro and check it out

 


23 Jul, 2009

this is solved, was due to my mistake :-(

 


14 Jul, 2009

HELP!
I just discovered a huge problem after this whole integration.
All users who had a forum, based on simplepress forum or jsut a page named forum, are now redirected to the main forum???

i.e. http://sasha.zice.ro/forum/ this users forum just links straight to the main site forum. Please give me some advice :-(

 


17 Jul, 2009

Hi Ovidiu, can you give me a sample URL to the SimplePress forums page that redirects to the main forum page?

 


17 Jul, 2009

the example was in my poast above:

http://zice.ro is the main wpmu installation
http://sasha.zice.ro/forum is a simplepress forum
http://zice.ro/forum is the deep integrated bbpress forum installed into the forum folder, I guess that is the reason why the simplepress forum also points now there?

 


06 Jul, 2009

and now a permalink related question: I isntalled bbpress inside a folder called forum. basically I want the forums at mysite.com/forum but with this setup, the topics look like mysite.com/forum/forum/topic – it seems its duplicating that foum in the structure :-(

 


06 Jul, 2009

When you go to your bbPress forums page, all the three Permalink structures that are available in bbPress dashboard will link to the forums as domain.com/forums/forum/ …. But when you open any one of the forums that you created, the topics will be like domain.com/forums/topicID

Are you saying that once you go inside a particular forum, then even it links to it as domain.com/forums/forum/topicID ??

 


07 Jul, 2009

:-( you are right. its only the forums themselves, where the forum part is duplicated ;-(
any chance to get rid of that? I guess its similar to the category bit wordpress keeps putting in front of categories…

 


06 Jul, 2009

oh, and regarding step8, the bbpress documentation http://bbpress.org/documentation/integration-with-wordpress/ says:

you need to put require_once(‘path/to/wp-blog-header.php’) into the bb-config.php and not a include_once as you said above. Or doesn’t that matter? sadly I have no clue about PHP so I jsut wanted to let you know.

Btw. I am having trouble including some plugins in bbpress. I.e. I have a plugin running on wpmu that inserts itself into the wp_footer hook, so now in my bbpress template I included the but still no go :-(

 


06 Jul, 2009

one more question, maybe you’ve got experience with it.
It all seems good, people who sign up for wpmu automatically are a member, as I set up in mz bbpress options but my existing users were not automatically assigned user roles.
what would be the easiest way to make all existing wpmu users, regardless of their status into memebrs of the bbpress isntallation?

 


06 Jul, 2009

Hello again, Ovidiu.

If you did the Step 8 (the last instructions of it) correctly, then it should work, if your WPMu and bbPress are sharing the same database. However, if you’re using two separate databases for each, this bbPress Support Page was the best I could find

 


07 Jul, 2009

they share one DB, nevertheless thanks for your help, I’ll be off to the bbpress forums for now. don’t want to tax your patience anymore :-)

 


09 Jul, 2009

At the moment there are no custom permalink options or forum/tag base available with bbPress just as there are category/tag base in WordPress so you can’t get rid of that until the bbPress developers include this feature in a future version.

And you’re most welcome, I am always there to help you with whatever comes in my domain of understanding :) Please Keep visiting.

 


02 Jul, 2009

I used your howto and this one http://umwblogs.org/wiki/index.php/Integrating_WPMu,_BuddyPress,_and_bbPress and I am jsut not sure about your step 8. what exactly is step 8 good for?

 


03 Jul, 2009

Hi Ovidiu,

Step #8 is important for deep integrating bbPress with WordPress which means that you can call the functions from your WordPress theme into the bbPress template. The path.php file that you create is nothing but just a simple PHP command that returns the absolute path of your WordPress installation (from the root of your webserver). We use this absolute path to call wp-blog-header.php file which is actually what’ll allow you to use WordPress functions in your bbPress theme.

Then we return HTTP/1.1 Header Status Code 200 , which means everything is fine.

The closing of Step #8 is used to define that we are going to use the wordpress users and user-meta tables for bbPress as well.

 


03 Jul, 2009

ok, I understand now but doing step 8 gives me a white page of death, in the front and back end of bbpress, the source code is blank, I just see a white blank page. the error log says:

[warn] mod_fcgid: stderr: PHP Fatal error: Call to a member function add_global_groups() on a non-object in /myabspathhere/web/wp-content/object-cache.php on line 74

seems its not compatible with my object cache plugin :-(

 


04 Jul, 2009

That should most probably be the reason. A lot of caching plugins like the WP-SuperCache, etc. cause problems like these.

 


05 Jul, 2009

the author of the object cache plugin I am using fixed it.

 


03 Jul, 2009

And I’d love to know if the WPMu, BuddyPress and bbPress integration worked for you using the tutorial on umw wiki? I have been trying to follow the instructions to integrate the latest versions of all the three software but it doesn’t seem to work for me.

I’d heartily appreciate any help.

 


03 Jul, 2009

I used wpmu 2.7.1 and bbpress 1.0-rc-3 but no buddypress. worked perfectly… 1-2 small changes, otherwise fine.

 


04 Jul, 2009

bbPress final version 1.0 was released just about an hour ago. Try integrating the latest version with WPMu. It’s a breeze and works like charm. The instructions on the wiki you linked to earlier hold very well.

In fact, I didn’t even need to make the slightest changes mentioned in the wiki (like clearing the keys in wp-config file, or adding extra lines to bb-config apart from the only one as directed by the bbPress integration plugin)

 


05 Jul, 2009

do you have any instructions for upgrading bbpress? my integration worked. btw. is the step 8 still necessary with the new bbpress 1.0?

 


05 Jul, 2009

ok, uploaded and overwrote all files from 1.0RC3 with the new released files, seems ok. No upgrade link appeared though…
Otherwise all is good. The step 8 also works now.

Going to start adapting my own theme now. Thanks for all your help.

 


06 Jul, 2009

You’re most welcome Ovidiu, enjoy the new setup :)

Cheers.
CSSJockey.

 


11 Jun, 2009

Hello, thanks for the walk-through. FYI I just did this using WP 2.8 and BBPress 0.9.0.5 (I know that’s later than you have tested here) and it works for login but there is a problem with logout. When you logout of the forum the cookie isn’t cleared (I think) so you can’t log back into the forum until you manually also logout of WP. So it must not be properly logging out of both.

There is also a fatal typo in bb-includes/compat.php line 108. It should read:
!function_exists( ‘_mb_substr’ )
rather than:
!function_exists( ‘_mb_subcut’ )

Cheers, and thanks for your work.

 


09 Jun, 2009

Hi Mohit,

Just thought I’d drop in a comment to say a MASSIVE thank you for your outstanding guide. It really helped me out as I was struggling to get the 2 working together. I really appreciate the time and effort you’ve put into this. It saved me ripping out what little hair I’ve got left!

My only slight problem now is that people can’t log in from the BBpress side without ticking the “remember me” box but that’s nothing compared to the problems I had before.

Many thanks once again.

Cheers

John ;-)

 


06 Jun, 2009

not sure if this is working right for the recently released bbpress

when I add

if ( !defined(‘ABSPATH’) & !defined(‘XMLRPC_REQUEST’)) {
define(‘WP_USE_THEMES’, false);

include_once( ‘/home/affiliat/public_html/wp-blog-header.php’ );
header(“HTTP/1.1 200 OK”);
header(“Status: 200 All rosy”);
}

it doesnt let me log in but if I remove this I am able to login – but still not syncing

 


01 Jun, 2009

Hi CSS Jockey,

I love your themes and website, they truly are beautiful to look at. I like your attention to detail :D

Thank you for this tutorial. I was wondering if you’ve heard of Simple:Press Forum? It’s a forum plugin for WordPress that integrates fully straight out of the box http://simplepressforum.com/ . It’s been stable way before bbPress ever was, and its literally got thousands of active users, and excellent support. Every question without exception on their support forum is answered and they listen to user feedback while constantly adding feature requests and improving the code.

They’ve also got a comprehensive online help within the plugin backend, which makes it easy for newbies to play around with.

 


31 May, 2009

hi, thanks for your tutorial, is very useful!

i’m a problem, when i try to access in my bb-admin it redirect me to forum home, any idea to resolve this problem? thanks!

 


28 May, 2009

hi,

i followed all the instructions, and when i first logged in,
it displayed this message:

“All Rosy”

Page is moved to here

Same when I log out.

So I took out this line from the BB Config file and now it works. Is this correct way to do it?

I took out following line and it works now.

header(“Status: 200 All rosy”);

 


29 May, 2009

Yes, its cool if removing this line works for you… I don’t know why should it show a Status Message like that ( prolly its because the quotation marks around the status message need to be re-written at your end) … but if it ain’t broke, don’t fix it ;)

 


15 May, 2009

Can I apply this to WPMU & bbPress integration?

 


19 May, 2009

There’s this useful WPmu, BuddyPress, bbPress integration guide that I refer many of my clients to.

 


14 May, 2009

The header status line (header(“Status: 200 All rosy”);) is causing a bit of an issue for me. The integration is working completely but when logging in via the forums, I get a “wingding” display using firefox & in IE – it’s an “unknown filetype” error for bb-login.php. If I refresh the forum page I am logged in, though, after this occurs . This is also happening when on the settings page when I click the update settings button.

If I remove that header status line, all appears to be working perfectly.

What are the implications of leaving the line out in this instance?

Thanks for the great writeup!!

 


18 May, 2009

You can safely remove the header status line. HTTP Status codes are returned by the server to the client software to determine the outcome of a request. Because it doesn’t serve a end-user directly, you may remove it.

 


10 May, 2009

This was an awesome guide; No other guide had said download the WordPress Plugin, hence my frustration at it not working.

To anyone reading this, It is possible to do this on existing WordPress Installations but if you also have a bbPress with existing users I believe there is a conflict. Hopefully the bbPress team releases version 1.0 with a better dashboard.

Thanks

Sidenote; once you do the final step, if you try to access to Dashboard(s) you will be in an infinite loop. As pointed out, clear your web data.

 


10 May, 2009

Hi, thanks a lot for your tutorial quite clean… but I don’t understand what you mean at the end when you say…
“…You can now use WordPress template tags in your bbPress theme and style it similar to your WordPress theme…”
I’m using Tarsky theme at the moment and that’s what i get installing my Tharsky theme… i destroyed completely the forum’s layout.. what should you advice me? Thanks a lot….

Antonio

 


13 May, 2009

Hi Antonio,

We are talking about bbPress forums software, here. But the forums that you linked to are based on SMF.

 


05 May, 2009

Great write up.

However, look at the code you wrote:

if ( !defined(‘ABSPATH’) & !defined(‘XMLRPC_REQUEST’)) {
define(‘WP_USE_THEMES’, false);

Shouldn’t the &amp be just & ?

Again, thanks. After I figured out this was causing the error, it worked great.

Carl

 


05 May, 2009

Thanks Carl, Updated the code with HTML Special Entity Codes to display & instead of &amp;.

 


05 May, 2009

yeah, that’s what i wrote in my post further down at the weekend.
looks like wordpress must have altered or stripped the code!

 


03 May, 2009

I followed your instructions. I got minor errors.
Duplicate key name ‘user_nicename’
>>> User tables will already exist when performing a database integrated installation.

Step 1 – Creating database tables
>>> Added index wp_users UNIQUE KEY user_nicename (user_nicename)
>>>
>>>>>> Duplicate key name ‘user_nicename’

There were some errors encountered during installation!

New to this wpmu, buddypress, bbpress install.

 


03 May, 2009

Are you sure you have the latest versions at hand? and are you doing a Fresh Install?

If you say Yes and Yes to both the questions above, then:

Problem and Solution 1

Check your BB_SECRET_KEY value. Sometimes BB_SECRET_KEY taken from the WP SECRET_KEY value ends with a backslash which effectively escapes the end quote. Change it to \\ as this will escape the escape… You get what I mean. Then the install should work fine!

Problem and Solution 2

If the escape character is not the problem in your case, try this:
1. Perform a clean, standalone install and log in with the provided admin login.

2. Go to Settings > WordPress Integration – Enter the blog URL twice, enter the blog ‘secret’ from your http://www.YourDomain.com/wp-admin/options.php, and enter the blog prefix.

3. Update the blog wp-config.php with the two lines suggested by WordPress Integration Settings page…

Then do anything else directed in our guide, and you should be up and running!

 


02 May, 2009

Hi CSSJockey!

Thank you very much for this clear tutorial.
But there is one problem: my bbpress forum shows a blank page after I added the following code:

if ( !defined(‘ABSPATH’) & !defined(‘XMLRPC_REQUEST’)) {
define(‘WP_USE_THEMES’, false);
include_once( ‘/home/forum/www/html/wp-blog-header.php’ );
header(“HTTP/1.1 200 OK”);
header(“Status: 200 All rosy”);
}

And is it possible to show the forum directly on the WordPress homepage?

Thanks in forward.
Anne Jan

 


03 May, 2009

Hi Anne Jan,
Do you see any errors or simply a blank page? And if a blank page, can you view anything in the page source?
(Check Page Source by Pressing CTRL+U in Firefox OR Right Clicking > View Page Source in Internet Explorer)

If you’re using some theme on WordPress then try reverting to the default and see if you can view forums then. Skin you’re website once you’re done with the integration.

Showing the Forums on WordPress homepage

Yes, of course you can!
Go to your WordPress Dashboard > Settings > Reading.
Choose Front Page Displays : A Static Page.
Select Forums for the Front Page, and Blog for the Posts page using the drop downs.

I hope this clears it and helps you.
Cheers.

 


06 May, 2009

Thanks for your reply!
Now bbPress works like a charme.

About the homepage issue: in the dropdown list (wordpress > settings > reading) is no ‘Forum’ page that I can choose. Also there is no other title like bbPress.

When I add a page in the ‘Pages’ tab for the Forum, is it necessary to add a [bbpress] tag or something?

Thank you in forward!

 


07 May, 2009

Hi Anne, I am glad that you’re forums are now functional – I am sorry I skipped asking you to create a blank page name Forums (or whatever is the name of your forums directory in your FTP file manager) – This should allow you to make a Page-Slug for it …

That implies, if you create a page called Name, your WordPress will automatically generate a page slug (link name for that page)
http://www.yourDomain.com/name . Similarly, when you create a page called forums, wordpress will generate this address www,yourDomain.com/forums – which’ll point to the subdirectory forums.

Simply publish the blank page named forums and make sure you check its page slug – if it points correctly to the subdirectory – opening that page (also appearing in your navigation now) will open the forums! And you can set this page to be your homepage from the Reading Settings in the dashboard

 


07 May, 2009

Thanks! I don’t realize that fix, actually it’s pretty simple.

:-)

 


23 Apr, 2009

I got this error
Parse error: parse error in C:\xampp\htdocs\forums\bb-config.php on line 2

Plis help, I did as you said

 


23 Apr, 2009

Hi.

I’d recommend that you remove the code added into bb-config.php from “Step 8″ of the guide and see if the error is gone. Otherwise the problem is basically with your install.

Looking at the location of file as specified in the error, it seems to me that you are not following the directory structure mentioned in Step 2.

To make it more clear for you, Using XAMPP – Step 2 specifies that you create a new folder in your C:\xampp\htdocs\ … Let’s call this folder “wpandbb”. This will be the root folder of our website.

Extract the WordPress files into C:\xampp\htdocs\wpandbb\ i.e. the root folder … and also create a new folder named “forums” inside this root folder.. Then, you should extract your bbPress files into C:\xampp\htdocs\wpandbb\forums\ , and proceed as directed in the guide.

I hope this resolves all your issues.
Cheers.

 


03 May, 2009

i got a parse error too

Parse error: syntax error, unexpected ‘;’ in /homepages/htdocs/forum/bb-config.php on line 2

changed the & to just & by itself which seems to have fixed it

thanks for the rest of the guide!

 


16 Apr, 2009

odd bug with doing this – it seems to make all bbPRess users have my name and email (or rather, it does as soon as they are edited).

The problem seems specifically with the blogheader include. Commenting that out stops it.

This is using the latest stable releases of both bb and wordPress.

 


16 Apr, 2009

Hi Gregory,

I reviewed your problem and tried to reproduce the same on my host. However, I didn’t face any issues with the member profiles.

I think that you might have skipped setting up user roles (as mentioned in the Step 6 above) I’ll update the post with a screen shot of user roles that I am using on a client’s website. You can try using the same roles or set up your own. I hope that helps you.

I am quite sure the problem isn’t with the inclusion of wp-blog-header.php file. I am saying this because all this file does is to load the WordPress environment and template.

 


16 Apr, 2009

I set up the user roles, so that shouldn’t be it. The only reason I mention the blogheader is that commenting it out fixed the problem (and broke integration, obviously) but that could be because it removed integration completely.

I did have a slightly odd setup before, and I’ve moved things around (I was installing WP inside a MediaWiki install, not anymore). I’ll let you know if that fixes it. Possibly it was some re-write magic breaking things in odd ways.

Still… an interesting side-effect no matter what caused it.

 


16 Apr, 2009

Good luck with what you’re doing.
If you still face any problems. just let me know.

 


14 Apr, 2009

Thanks guys, I appreciate your feedback.

 


14 Apr, 2009

Hey, awesome walkthrough; saved me a a bunch of time! You have gained a returning user. Cheers!

 


13 Apr, 2009

Great write up! I have been thinking about making a little forum and wanted something simple and easy to integrate. Thanks the info.


 

Trackbacks

Leave a Reply


This field is required.



This field is required.




I want to thank you for developing my site as per my design and helping me meet my web requirements on time and as per my need. I am sure we can work together on more projects in the future.
~ Teddy Jacob | TeddyJacob.net

"Mohit did an excellent job on a web project for me. The look, design, and service were all great. I really appreciated his work and the time he took to explain things. I highly recommend Mohit." ~ Chris Barnstable-Brown
Top qualities: Great Results , Good Value , On Time

"After hiring Mohit for the first time in 2007... I kept on consulting, hiring, and using Mohit's expertise in many website development projects where he exhibited unique talent in delivering his work on time and on budget." ~ Ali Husain
Top qualities: Great Results , Expert , On Time

"CSSJOCKEY is AWESOME. His work was fast, extremely well executed and we will DEFINITELY use his services in the near future. Having someone like this in our team makes life a hell of a lot easier. We absolutely 110% recommend using his web services." ~ Dan Atkins, Creator of the Superhero Mindset Programme

"Mohit is the Man! He whipped up a custom design for his coming soon plugin within a day and nailed it. His plugin is so easy to install and set up. I couldn't be more happy! He responded to my inquiry very quickly and answered all my questions. I'll definitely use his services again in the near future." ~ Client (Rebecca Cunningham)

"CSSJockey designed a very clean and beautiful layout for us and then built an easy to manage website. The project was quick and painless, a pleasure for sure." ~ Client (NDA)

Awesome theme! Thanks much. I love this theme, especially granite and copper dust.. ~ Vivek

Accredits & Testimonials!