Archive for December, 2008

30
Dec

New install of Social Media Platform BuddyPress

   Posted by: Daniel Hudson    in Social Media

logo_buddypressI just installed BuddyPress (http://buddypress.org) on one of my servers. BuddyPress from the creative minds of WordPress developers is an awesome social media platform tool. Enterprise 2.0 developers should take a look at the functionality and the web 2.0 gadgets built in to this tool. Take a look at BuddyPress and take a test drive through their demo. Let me know what you think about this and your strategy for Enterprise 2.0 and social media in general.

Tags: , , ,

30
Dec

Improve your Google Page Rank with URL Mapping

   Posted by: Daniel Hudson    in Code

You may wonder about the mysterious Google Page Rank and why it’s different when you check you site with and without the leading “www” for you domain.

Now this web strategy will point all that Google page rank power to one domain with simple URL Mapping. This will also fix the broken links when friendly fans have linked to you site, but forgot a “w” or added too many.

How to use URL Mapping

Let’s say your site is: “yoursite.com” just make these instructions easy.

This method takes advantage of mod_rewrite, make sure your server supports mod_rewrite additional URL Rewriting is available on the Apache site here.

Modify your server configuration file

Add the following entry:  ServerAlias *.yoursite.com

Create a DNS entry for your site

DOMAIN = *
TTL = 14400
RECORDTYPE = CNAME

Modify your htaccess file

<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On

#Fix leading w problem by WebTechMan.com
#This will permanently redirect all calls to
#your site with one or more leading w to your site.
RewriteCond %{HTTP_HOST} ^(w+\.)(.+)$ [NC]
RewriteRule (.*) http://%2/$1 [R=301,L]
</IfModule>

Restart your Server

Now go to your site and test it out, try WwwwW.yoursite.com, Ww.yoursite.com, www.yoursite.com, …  These should all redirect to yoursite.com

Notes

You may not be concerned about your page rank in your Enterprise 2.0 deployment of your social media platform, but you may be interested in similar techniques for pretty / future proof URLs.  This is another part of Strategy 2.0 that will make your cool AJAX and other Web 2.0 calls to data much easier with a RESTful architecture.

Instead of “yoursite.com/index.php?a=2&m=239″, you could have “yoursite.com/members/webtechman/edit”.

You could use this strategy in your enterprise 2.0 platform by adding the following lines to your .htaccess file and capture the information in you social media platform.

# URL Mapping for pretty/future proof URLs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1

Contact me or leave a comment here if you would like to know more about this.

Tags: , ,

26
Dec

3 easy steps to theme brand YOUR TWITTER PROFILE

   Posted by: Daniel Hudson    in Twitter

I just found a new free twitter tool that allows you to customize your Twitter Profile in 3 easy steps!

picture-1

You can quickly create your customized twitter theme and badge.

Get started right now, head over to http://mytweetspace.com

Tags:

15
Dec

New Zend Demo – Developing Rich Internet Applications (RIAs)

   Posted by: Daniel Hudson    in Frameworks

Creating Rich Internet Applications (RIAs) has never been easier! The integration of Zend Framework and Dojo, and the new Dojo code editing support in Zend Studio for Eclipse 6.1, provide an out-of-the-box solution for rapid development of Ajax-based applications. View our new, five minute screencast to understand the basic steps of creating a meeting scheduler PHP Web application:

  • Creating a Zend Framework and Dojo project
  • Using Zend Studio’s code assist for writing Dojo code
  • Deploying and running the application

If you can not see the embedded video, you can access the zend demo video here.

Tags: , ,