Archive for November, 2009

28
Nov 09

myScoop Feedback

myScoop Logo

I would like to encourage you to use this page as the platform to host all your ideas, comments, suggestions and opinions about myScoop.

keywords:
28
Nov 09

Live Blog Stats now available on myScoop

myScoop LogoAnother Friday night gone by, but an another amazing feature has been included into myScoop. Live Blog Stats! Once you sign in to myScoop you will see a list of your blogs on in the centre of the screen each with their monthly rank and daily rank (this is also a new feature, in case you missed it!). Once there, click on the “(Live Stats) link next to that and a popup window will open showing your Pageviews per minute for the last 30 minutes. This popup window automatically refreshes every 10 seconds. This is incredibly useful for when you post an article and would like to see how many people are actually coming to your site to read it.

myScoop Live Blog Stats

myScoop Live Blog Stats

keywords: , ,
27
Nov 09

Afrigator buys itself back

Justin Hartman recently announced via the 27dinner function that the original shareholders of Afrigator are buying their shares back from MIH. It would seem as if the original team will be in full control once again, which is good news considering there will be no more “corporate” policies governing what to do, when to do and how to do. This opens up a host of avenues for the well established blog aggregator and I’m sure there is plenty of excitement surrounding this topic.

Well done to the guys at Afrigator and good luck.

keywords: , , ,
25
Nov 09

Maximum MySQL Database Size?

MySQL LogoWhile developing myScoop, and other experimental projects, I have been thinking about the limitations of a MySQL database, particularly it’s maximum file size. I was amazed that after some research I really have absolutely nothing to worry about. It seems my 112mb database is a “new born baby” in the terms of how big it can still grow. Here are the estimated maximum file sizes per operating system:

Operating System File-size Limit
Win32 w/ FAT/FAT32 2GB/4GB
Win32 w/ NTFS 2TB (possibly larger)
Linux 2.2-Intel 32-bit 2GB (LFS: 4GB)
Linux 2.4+ (using ext3 file system) 4TB
Solaris 9/10 16TB
MacOS X w/ HFS+ 2TB
NetWare w/NSS file system    8TB

This information was taken directly off MySQL.com but this is not necessarily the maximum limitations of your database. A number of methods can help to increase your max file size:

LFS (Large File Support) in Linux
To support files larger than 2GiB on 32-bit Linux systems you would have to use LFS. Although I’m sure the latest operating systems would come out with this already enabled. The standard max file size limitations without LFS enabled are 2^31 bytes(2GiB), but enabling LFS can enable your maximum file size to reach 2^63 bytes (9 223 372 036 854 775 808 bytes). Crazy, I know!

Using the “Alter Table” command
This will come in handy when using the MyISAM storage engine. The simple “Alter Table” in the mysql prompt command can extend your database capacity dramatically.
Example: “alter table ‘weather’ max_rows = 200000000000″
Although keep in mind, the maximum amount of rows in a MySQL table can only be 4.2billion (not so good if you’re thinking of making a search engine!)

Most of this researched information is very old so I decided to run a little check (which I should have done right in the beginning), and by doing so on my local machine, I literally nearly fell of my chair:

mysql> show table status like ‘blog_hits’ \G
*************************** 1. row ***************************
Name: blog_hits
Engine: MyISAM
Version: 10
Row_format: Dynamic
Rows: 15497
Avg_row_length: 247
Data_length: 3835852
Max_data_length: 281474976710655
Index_length: 366592
Data_free: 0
Auto_increment: 15509
Create_time: 2009-11-24 16:53:38
Update_time: 2009-11-24 16:53:38
Check_time: 2009-11-24 16:53:38
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)

This is telling me my max database size can be as much as 281474976710655 bytes which If I’m not mistaken, equates to 256 terabytes. With this being said, I think we are going to run into system limitations rather than MySQL limitations, so therefore, revert back to the table at the top of this post.

keywords: ,
21
Nov 09

6 Essential WordPress Plugins

WordPress is arguably one of the most powerful and easy to use content management systems out on the free market today, which gives host to a huge array of downloadable plugins to improve the interactivity of your blog and overall satisfaction of your readers. Although keep in mind, some of the most powerful and useful plugins are those that your readers will never even get to see.

I have listed 6 of the most essential plugins that I feel no blog should be without.

Akismet
This is THE most essential plugin you will ever require. This extremely handy plugin eliminates 99.9% of spam comments that your blog will undoubtedly receive. Akismet comes standard with every WordPress installation but to make use of its features you need to register an account at WordPress.com and insert your API key into the Akismet control panel.

Google Analytics
This plugin is one of the easiest plugins to handle and does the simple yet essential task of inserting your Google Analytics code into every one of your pages and articles on your blog.
http://wordpress.org/extend/plugins/google-analytics-for-wordpress/

XML Sitemaps
I would have to say this is one of the most essential plugins you could carry in your handy blogging toolbox. This automatically generates an updated and optimised sitemap and pings Google and all other relevant search engines of the changes made. This keeps the search engines coming back to your site to update their information.
http://wordpress.org/extend/plugins/google-sitemap-generator/

Wibiya
This is one of my favourite WordPress plugins. Wibiya is a toolbar that sits firmly at the bottom of your blog that boasts functionality such a search function for your blog, Twitter integration, Facebook integration, games, translation, and the ability to display notifications to your users. To get this amazing WordPress plugin you need to request an invitation from Wibiya themselves by simply going to their website and filling in a few details. I got my invitation in less than 24 hours and it took me a couple of minutes to set it up.
http://www.wibiya.com/

Gravatar
People like seeing pictures of themselves when they post a comment to an article. An excellent and popular way of doing this is by using Gravatar. It connects to the following avatar websites: Gravatars, OpenAvatar, Wavatar, Identicon, monsterID and MyBlogLog.
http://wordpress.org/extend/plugins/wp-gravatar/

Platinum SEO Pack
Nothing beats a seasoned SEO consultant when it comes to optimising your site, but the Platinum SEO pack does an excellent job. Install this plugin to ensure your blog stays ahead of the pack in the search engine results pages.
http://wordpress.org/extend/plugins/platinum-seo-pack/

keywords: , ,