<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Anmari</title>
	<atom:link href="http://webdesign.anmari.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdesign.anmari.com</link>
	<description>Simply effective web services</description>
	<lastBuildDate>Mon, 14 May 2012 12:19:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Wp foreign characters, Php, Creating Tables</title>
		<link>http://webdesign.anmari.com/2791/wp-foreign-characters-php-creating-tables/</link>
		<comments>http://webdesign.anmari.com/2791/wp-foreign-characters-php-creating-tables/#comments</comments>
		<pubDate>Mon, 14 May 2012 12:00:21 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://webdesign.anmari.com/?p=2791</guid>
		<description><![CDATA[I knocked myself around trying to figure out why my plugin was not coping with &#8216;foreign&#8217;, multi byte, Greek, Japanese, Chinese characters.  Those damn questions marks &#8216;????&#8217; &#8211; I had it all sorted before in another plugin &#8211; what was going on here ?   I had all the multi-byte functions happening.    Then I [...]
Related posts:<ol>
<li><a href='http://webdesign.anmari.com/92/strange-characters/' rel='bookmark' title='Upgrading to Mysql5 &#8211; more strange characters'>Upgrading to Mysql5 &#8211; more strange characters</a> <small>An upgrade of a wordpress site&#8217;s Database from Mysql 4 to Mysql 5 gave some surprising results &#8211; some strange...</small></li>
<li><a href='http://webdesign.anmari.com/336/timezones-wordpress-ical-php/' rel='bookmark' title='Timezones, WordPress, Ical, Php&#8230;.'>Timezones, WordPress, Ical, Php&#8230;.</a> <small>What a lot of fun this can be (not!) Your Ical file may have a timezone specified, the event may...</small></li>
<li><a href='http://webdesign.anmari.com/728/multiple-blogs-domains-with-wordpress/' rel='bookmark' title='Multiple Blogs, Domains with wordpress'>Multiple Blogs, Domains with wordpress</a> <small>The configuration features now available in wp-config.php now offer you a great deal of flexibility if you have multiple domains...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="attachment_2795" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.flickr.com/photos/bilal-kamoon/6835060992/"><img class="size-medium wp-image-2795" title="questionmark" src="http://webdesign.anmari.com/wp-content/uploads/questionmark-300x294.png" alt="Question Mark" width="300" height="294" /></a><p class="wp-caption-text">Question mark graffiti by bilal-kamoon</p></div>
<p>I knocked myself around trying to figure out why my plugin was not coping with &#8216;foreign&#8217;, multi byte, Greek, Japanese, Chinese characters.  Those damn questions marks &#8216;????&#8217; &#8211; I had it all sorted before in another plugin &#8211; what was going on here ?   I had all the <a title="php multi byte string functions for foreign characters" href="http://php.net/manual/en/ref.mbstring.php">multi-byte functions</a> happening.    Then I remembered &#8211; the database tables &#8211; of course!</p>
<h2>Default Mysql</h2>
<p>MySQL’s default database charset is usually latin1 and  thecollation is latin1_swedish_ci.  This can vary based on server configuration.  This is usually set <strong>before</strong> wordpress is installed.</p>
<h2>Default wordpress</h2>
<p>WordPress usually creates it&#8217;s table with charset utf8 and collation utf8_general_ci.    You can overwrite this in the config file.</p>
<p>See <a href="http://codex.wordpress.org/Editing_wp-config.php#Database_character_set">http://codex.wordpress.org/Editing_wp-config.php#Database_character_set</a>.</p>
<h2>Fix your wordpress database</h2>
<p>You can <a title="alter the database" href="http://dev.mysql.com/doc/refman/5.0/en/alter-database.html">Alter the database</a> after the fact.  This will help the plugins who haven&#8217;t figured out that many of us (you?) haven&#8217;t set up our databases as well as they could be.</p>
<pre>ALTER DATABASE yourdb CHARACTER SET utf8 COLLATE utf8_general_ci;</pre>
<h2>Plugin authors</h2>
<p>Make life easy on your self and others when creating custom tables.  Have a look at the wordpress <a title="wordpress schema.php" href="http://core.trac.wordpress.org/browser/trunk/wp-admin/includes/schema.php">db schema</a>.  Note that there is a global <strong>$charset_collate.  Use it!</strong></p>
<p>&nbsp;</p>
<pre> global $wpdb, $charset_collate;</pre>
<pre>if ($wpdb-&gt;get_var("show tables like '$table_name'") != $table_name) {
 $sql = "CREATE TABLE " . $table_name . " (
 id bigint NOT NULL AUTO_INCREMENT,
 field1 text NOT NULL,
 field2 text NOT NULL,
 PRIMARY KEY (id) )
 ".$charset_collate. ";";</pre>
<pre>require_once(ABSPATH . 'wp-admin/includes/upgrade.php');</pre>
<pre>dbDelta($sql);</pre>
<pre>if($wpdb-&gt;get_var("show tables like '$table_name'") != $table_name) {
 error_log($table_name.' not created');
 return false;
 }
 else return true;</pre>
<p>&nbsp;</p>
<h2>Resources:</h2>
<ul>
<li><a href="http://codex.wordpress.org/Editing_wp-config.php#Database_character_set">http://codex.wordpress.org/Editing_wp-config.php#Database_character_set</a></li>
<li><a href="http://hakre.wordpress.com/2010/12/26/wordpress-database-charset-and-collation-configuration/">http://hakre.wordpress.com/2010/12/26/wordpress-database-charset-and-collation-configuration/</a></li>
<li><a href="http://dev.mysql.com/doc/refman/5.5/en/charset.html">http://dev.mysql.com/doc/refman/5.5/en/charset.html</a></li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Related posts:</p><ol>
<li><a href='http://webdesign.anmari.com/92/strange-characters/' rel='bookmark' title='Upgrading to Mysql5 &#8211; more strange characters'>Upgrading to Mysql5 &#8211; more strange characters</a> <small>An upgrade of a wordpress site&#8217;s Database from Mysql 4 to Mysql 5 gave some surprising results &#8211; some strange...</small></li>
<li><a href='http://webdesign.anmari.com/336/timezones-wordpress-ical-php/' rel='bookmark' title='Timezones, WordPress, Ical, Php&#8230;.'>Timezones, WordPress, Ical, Php&#8230;.</a> <small>What a lot of fun this can be (not!) Your Ical file may have a timezone specified, the event may...</small></li>
<li><a href='http://webdesign.anmari.com/728/multiple-blogs-domains-with-wordpress/' rel='bookmark' title='Multiple Blogs, Domains with wordpress'>Multiple Blogs, Domains with wordpress</a> <small>The configuration features now available in wp-config.php now offer you a great deal of flexibility if you have multiple domains...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/2791/wp-foreign-characters-php-creating-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Registrations temporarily suspended</title>
		<link>http://webdesign.anmari.com/2764/registrations-temporarily-suspended/</link>
		<comments>http://webdesign.anmari.com/2764/registrations-temporarily-suspended/#comments</comments>
		<pubDate>Sat, 28 Apr 2012 03:36:58 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webdesign.anmari.com/?p=2764</guid>
		<description><![CDATA[Registrations temporarily suspended due to spam bot attack. Please use contact form http://webdesign.anmari.com/about/contact/ to request access until later. I dislike captcha&#8217;s even google&#8217;s &#8216;digitise the old books&#8217; one and they don&#8217;t work that well. Have looked at various other methods over the years &#8211; decided I&#8217;d rather put up with a few spamster users. Today [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Registrations temporarily suspended due to spam bot attack.</p>
<p>Please use contact form http://webdesign.anmari.com/about/contact/ to request access until later.</p>
<p>I dislike captcha&#8217;s even google&#8217;s &#8216;digitise the old books&#8217; one and they don&#8217;t work that well.</p>
<p>Have looked at various other methods over the years &#8211; decided I&#8217;d rather put up with a few spamster users. Today just got a bit much!</p>
<p>Seems it is not just me. <a title="spam doodle" href="http://scritchandscratch.com/blog/archives/3861">Scritch and Scratch</a> having some fun (not) too.</p>
<p><a href="http://scritchandscratch.com/blog/archives/3861"><img class="aligncenter size-medium wp-image-2768" title="spamdoodle" src="http://webdesign.anmari.com/wp-content/uploads/spamdoodle-300x215.jpg" alt="" width="300" height="215" /></a></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/2764/registrations-temporarily-suspended/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comparison of Event Calendar Plug-ins</title>
		<link>http://webdesign.anmari.com/95/comparison-of-event-calendar-plug-ins/</link>
		<comments>http://webdesign.anmari.com/95/comparison-of-event-calendar-plug-ins/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 08:55:13 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[AmR Ical Events List]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ical]]></category>
		<category><![CDATA[upcoming events]]></category>

		<guid isPermaLink="false">http://www.webdesign.anmari.com/2007/05/comparison-of-event-calendar-plug-ins/</guid>
		<description><![CDATA[A quick look in no particular order (except mine first of course) .  Yes I am checking out the competition &#8211; I love developing, but need to get some return on it.  Hence some research on what others are doing. Update as at: Feb 2012 amr-ical-events-list free at wordpress (4 star rating, 2012 updates) input [...]
Related posts:<ol>
<li><a href='http://webdesign.anmari.com/353/simplifying-your-events-ticketing/' rel='bookmark' title='Simplifying your event&#8217;s ticketing&#8230;'>Simplifying your event&#8217;s ticketing&#8230;</a> <small>I am always on the lookout for tools to help small businesses. Here is an interesting one for those that...</small></li>
<li><a href='http://webdesign.anmari.com/2078/amr-events-download/' rel='bookmark' title='amr-events download'>amr-events download</a> <small>Before you buy membership to access this plugin, please&#8230;&#8230; Test it!  test.icalevents.com.  The latest version is always there &#8211; it might...</small></li>
<li><a href='http://webdesign.anmari.com/404/gift-photo-calendar/' rel='bookmark' title='Gift photo calendar using Google ical files'>Gift photo calendar using Google ical files</a> <small>Use your ical feed calendars (google or other (others by importing into google)) and your own photo's to generate a...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A quick look in no particular order (except mine first of course) .  Yes I am checking out the competition &#8211; I love developing, but need to get some return on it.  Hence some research on what others are doing.</p>
<p>Update as at: Feb 2012</p>
<p><a title="free wordpress event calendar plugin" href="http://wordpress.org/extend/plugins/amr-ical-events-list/">amr-ical-events-list</a></p>
<ul>
<li>free at wordpress (4 star rating, 2012 updates)</li>
<li>input via  ics file subscription</li>
<li>most customisable calendars, agendas, schedules etc, variety of views</li>
<li>date navigation and pagination</li>
<li>widgets</li>
</ul>
<p><a title="wordpress event creation and editing plugin" href="http://icalevents.com/">amr-events</a></p>
<ul>
<li>paid addon to the above ($40)</li>
<li>full event creation, custom post types, taxonomies, locations</li>
<li>filtering</li>
<li>filters, pluggable functions</li>
<li>variety of map plugin integrations</li>
<li>multi lingual integration</li>
<li>produce ics feeds</li>
<li>uses wordpress as intended so you get benefits of being able to integrate other plugins</li>
</ul>
<p><a href="http://eventespresso.com/ http://eventespresso.com/ eventsespresso.com">event espresso</a> ($$$!)</p>
<ul>
<li>lite version at wordpress (3 star rating)</li>
<li>paid version not cheap (lots of addons &#8211; top price $500, base at $90)</li>
<li>registration, ticketing, payment gateways</li>
<li>recurring events an addon</li>
</ul>
<p><a href="http://wordpress.org/extend/plugins/all-in-one-event-calendar/ http://wordpress.org/extend/plugins/all-in-one-event-calendar/ ">all in one event calendar</a></p>
<ul>
<li>free version at wordpress (5 star rating, 2012 update)</li>
<li>is it error prone? (7 brokens for last version, but 13 works)</li>
<li>paid support at $120 hour</li>
<li>recurring, ics import/export, variety of views, widgets</li>
</ul>
<p><a href="http://wp-events-plugin.com/">events manager</a></p>
<ul>
<li>free version at <a href="http://wordpress.org/extend/plugins/events-manager/">wordpress</a> (4 star rating, last update 2010/10)</li>
<li>paid version $75</li>
<li>bookings, paypal</li>
</ul>
<div><a href="http://wordpress.org/extend/plugins/my-calendar/">my calendar</a></div>
<div>
<ul>
<li>free version at <a href="http://wordpress.org/extend/plugins/events-manager/">wordpress</a> (4 star rating, last update 2012)</li>
<li>sounds fairly full featured, views, recurring, customisable</li>
<li>user guide at $20</li>
</ul>
<div><a href="http://wordpress.org/extend/plugins/wp-events/ http://wordpress.org/extend/plugins/wp-events/ ">events</a></div>
</div>
<ul>
<li>free at wordpress (4 star, but last update 2010)</li>
</ul>
<p><a href="http://wordpress.org/extend/plugins/events-calendar/">events calendar</a></p>
<ul>
<li>free version at wordpress (3 star)</li>
<li>create and present calendar for events</li>
</ul>
<div><a href="http://wordpress.org/extend/plugins/eventr/">eventr</a></div>
<div>
<ul>
<li>free version at wordpress (3 star, last 2009)</li>
<li>event registration</li>
</ul>
</div>
<div></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Related posts:</p><ol>
<li><a href='http://webdesign.anmari.com/353/simplifying-your-events-ticketing/' rel='bookmark' title='Simplifying your event&#8217;s ticketing&#8230;'>Simplifying your event&#8217;s ticketing&#8230;</a> <small>I am always on the lookout for tools to help small businesses. Here is an interesting one for those that...</small></li>
<li><a href='http://webdesign.anmari.com/2078/amr-events-download/' rel='bookmark' title='amr-events download'>amr-events download</a> <small>Before you buy membership to access this plugin, please&#8230;&#8230; Test it!  test.icalevents.com.  The latest version is always there &#8211; it might...</small></li>
<li><a href='http://webdesign.anmari.com/404/gift-photo-calendar/' rel='bookmark' title='Gift photo calendar using Google ical files'>Gift photo calendar using Google ical files</a> <small>Use your ical feed calendars (google or other (others by importing into google)) and your own photo's to generate a...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/95/comparison-of-event-calendar-plug-ins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress plugins to avoid</title>
		<link>http://webdesign.anmari.com/2743/wordpress-plugins-to-avoid/</link>
		<comments>http://webdesign.anmari.com/2743/wordpress-plugins-to-avoid/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 04:59:38 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://webdesign.anmari.com/?p=2743</guid>
		<description><![CDATA[http://www.exploit-db.com lists vulnerabilities found in various wordpress plugins. No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.exploit-db.com/search/?action=search&amp;filter_description=wordpress%20plugin">http://www.exploit-db.com </a>lists vulnerabilities found in various wordpress plugins.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/2743/wordpress-plugins-to-avoid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trackback Spam Notifications</title>
		<link>http://webdesign.anmari.com/2715/trackback-spam-notifications/</link>
		<comments>http://webdesign.anmari.com/2715/trackback-spam-notifications/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 04:59:52 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://webdesign.anmari.com/?p=2715</guid>
		<description><![CDATA[How to stop wordpress trackback notification spam emails
Related posts:<ol>
<li><a href='http://webdesign.anmari.com/1335/getting-a-list-of-subscribers/' rel='bookmark' title='Getting a list of subscribers'>Getting a list of subscribers</a> <small>Trial, Paid, Expired or Active members For the list of members with their status etc if the list is not...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It is always the &#8216;old&#8217; stuff that gets you.</p>
<p>I thought I had done such a great job tightening up things and then seemed to get hit with some repetitive trackback spam notifications.  Since the notifications are coming from one of MY websites, they don&#8217;t get marked easily as spam.</p>
<p style="text-align: center;"><a href="http://webdesign.anmari.com/wp-content/uploads/trackbackspam.png"><img class="size-full wp-image-2716 aligncenter" title="trackbackspam" src="http://webdesign.anmari.com/wp-content/uploads/trackbackspam.png" alt="Screenshot of email trackback notification" width="440" height="121" /></a></p>
<p>A few minutes of googling and a timely post at <a href="http://www.question-defense.com/2011/11/05/disable-trackbacks-in-existing-wordpress-blog-stop-wordpress-trackback-spam">question-defence.com</a>, published a few days ago pin pointed the problem (Many thanks to google for thier quick search index updating!.. remember the old days?)</p>
<h2>Ping status =  &#8216;open&#8217;</h2>
<p>Many existing posts still had their ping status set to open.  So to stop trackback spam in it&#8217;s tracks (ha! lqtm), take action as follows:</p>
<h3>Future posts:</h3>
<ol>
<li>Go to WordPress settings &gt; Discussions &gt;</li>
<li>untick &#8220;Allow Link Notifications From Other Blogs&#8221;</li>
</ol>
<h3>Past Posts:</h3>
<ol>
<li>Hop into your phpmyadmin</li>
<li>Find your posts table, note the name with your sites prefix</li>
<li>Goto the SQL view, type in</li>
</ol>
<p><code>update</code>  prefix-<code>posts </code><code>set</code> <code>ping_status = </code><code>'closed'</code><code>;</code></p>
<p>&nbsp;</p>
<p>and you are done.  All posts and custom post types now set to NOT accept trackbacks.</p>
<p>Related posts:</p><ol>
<li><a href='http://webdesign.anmari.com/1335/getting-a-list-of-subscribers/' rel='bookmark' title='Getting a list of subscribers'>Getting a list of subscribers</a> <small>Trial, Paid, Expired or Active members For the list of members with their status etc if the list is not...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/2715/trackback-spam-notifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress.com or self-hosted wordpress</title>
		<link>http://webdesign.anmari.com/2695/wordpres-com-or-self-hosted-wordpress/</link>
		<comments>http://webdesign.anmari.com/2695/wordpres-com-or-self-hosted-wordpress/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 06:15:25 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[Web designers]]></category>

		<guid isPermaLink="false">http://webdesign.anmari.com/?p=2695</guid>
		<description><![CDATA[Wordpress.org or Wordpress.com - some thoughts on choosing a wordpress webhost
No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.page.ly/2010/08/the-prolific-wordpress-infographic/"><img class="aligncenter size-full wp-image-2704" title="which" src="http://webdesign.anmari.com/wp-content/uploads/which.png" alt="" width="515" height="298" /></a></p>
<p>Looking to set up a website using WordPress, one of the world most popular content management systems?</p>
<p>Assess your skills (ftp, html, css, php) and what you are prepared to do yourself, and how good you are at educatng yourself using the web.  Then consider your options.</p>
<h2>WordPress.com PROS</h2>
<ul>
<li>easy to get going even if no skills</li>
<li>free, or can <a href="http://en.wordpress.com/products/">add premium feaures</a> (they add up)</li>
<ul>
<li>videopress (<strong>$60/year</strong>)</li>
<li>custom css for own styling or tweaks <strong>($30/year</strong>)</li>
<li>post or moderate <a href="http://en.support.wordpress.com/text-messaging/#text-messaging-upgrade">using your phone</a> (usa only)</li>
</ul>
<li>can <a href="http://en.support.wordpress.com/domain-mapping/map-existing-domain/">map your existing  domain </a>there (<strong>$12/year</strong>), or <a title="register a domain through wordpress.com" href="http://en.support.wordpress.com/domain-mapping/register-domain/">register a domain</a> through them(<strong>$17/year</strong>)</li>
<li>they&#8217;ll keep you up to date with wordpress at least.</li>
<li>language aspects are pre-loaded</li>
<li>if you want to allow comments, wordpress.com has good antispam built in, althoiugh you can also add that feature <a href="https://akismet.com/signup/">(akismet)</a> in to a self hosted site.</li>
<li>you&#8217;re hosted by wordpress.com &#8211; so you are on a server where all the sites are running wordpress</li>
</ul>
<h2>WordPress.com CONS</h2>
<div>
<ul>
<li>limited to their themes, although <a href="http://en.support.wordpress.com/themes/premium-themes/">premium themes</a> available ($45)</li>
<li>totally reliant on them &#8211; if they disappear, so do you (unless you have figured out a way to keep own backup of your site and can arrange hosting, reload of site and repoint your domain name.  That said, this is what you would have todo on a self hosted site anyway.</li>
<li>cannot display ads, unless you <a href="http://en.support.wordpress.com/advertising/">revenue share advertising</a> (high volume clients only)</li>
<li>have to pay extra <a href="http://en.support.wordpress.com/no-ads/">NOT to have ads</a> (<strong>$29.97</strong>)</li>
</ul>
<h2>Self Hosted WordPress PROS</h2>
<ul>
<li>Total control (along with that comes the requirement that you be able to manage that control)</li>
<ul>
<li>own themes, plugins</li>
<li>customise functionality and style as you like</li>
</ul>
<li>Cheap if you have the skills! <a title="Good web hosts for wordpress self hosted website" href="http://webdesign.anmari.com/hosting_wordpress/">Good wordpress hosting</a> is available from $72/month</li>
</ul>
<div>
<h2>Self Hosted WordPress CONS</h2>
<ul>
<li>You need to <a title="Domain name purchase guide" href="http://webdesign.anmari.com/44/domain-names/">purchase your own domain name</a> and <a title="good wordpress host" href="http://webdesign.anmari.com/hosting_wordpress/">web hosting</a></li>
<li>If you don&#8217;t know what you are doing, you either need to hire some one or you will get into trouble.</li>
<li>Have to do/arrange WordPress upgradesm plugin and theme upgrades</li>
<li>Hiring people can get expensive</li>
<li>Have to add in what comes automatically at wordpress.com.</li>
<ul>
<li>add in askimet anti-spam</li>
<li>add in own backups to your own pc (your host should do backups, but you should also have your own)</li>
<li>spikes in traffic may be a problem</li>
</ul>
<li>With shared hosting (own server costs approximately $200/month), you are sharing the server &#8211; this reduce costs but if the other guys are up to no good&#8230;. That said a good wordpress host will normally switch servers for your promptly if you suspect a problem.</li>
</ul>
</div>
<div>
<h2> More Information</h2>
<ul>
<li>A reasonably good summary of <a title="Features summary of wordpress.com vs wordpress.org" href="http://en.support.wordpress.com/com-vs-org/">WordPress.com vs. WordPress.org</a> at wordpress.com.</li>
<li>Wp-beginners <a title="Infographic comparing wordpress.com and wordpress.org" href="http://www.wpbeginner.com/beginners-guide/self-hosted-wordpress-org-vs-free-wordpress-com-infograph/?display=wide">comparison via an info graphic</a>.  They end up advocating a self hosted solution for control and avoiding any profit sharing.</li>
</ul>
</div>
</div>
<h2>What to do:</h2>
<p>Consider</p>
<ul>
<li>your skill levels</li>
<li>website requirements and it&#8217;s implications (eg:membership, comments &#8211; you need anti-spam)</li>
<li>how much you are prepared to pay for someone to assist you if you need assistance.</li>
</ul>
<p>It is free to open a wordpress.com site, so give it a go &#8211; you&#8217;ll need it anyway if you want to use their anti-spam service askimet, or the wordpress.com stats via the <a title="wordpress jetpack plugin" href="http://wordpress.org/extend/plugins/jetpack/">jetpack plugin</a>.</p>
<p>If you are comfortable with doing many things yourself or are prepared to hire the skills you need, and know how to test your website and any plugins you add, consider going with a self hosted solution.  You can either do it yourself &#8211; there are heaps of guides out there.</p>
<p>If you want to get going quickly, I can have you <a title="How to get help getting started with self hosted wordpress" href="http://webdesign.anmari.com/hosting_wordpress/">up and running within a day if you use icdsoft as your host</a></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/2695/wordpres-com-or-self-hosted-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should your home page be a single flash animation?</title>
		<link>http://webdesign.anmari.com/2672/should-your-home-page-be-a-single-flash-animation/</link>
		<comments>http://webdesign.anmari.com/2672/should-your-home-page-be-a-single-flash-animation/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 07:47:11 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[Web designers]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://webdesign.anmari.com/?p=2672</guid>
		<description><![CDATA[Related posts: Initial content for a new page or post &#8211; wordpress pleasant surprise How to create a link to the add new page or post with default starting content... Shortcode a widget in a page or post Shortcodize a widget - Use any widget in a shortcode in a page or post...
Related posts:<ol>
<li><a href='http://webdesign.anmari.com/2643/initial-content-for-a-new-page-or-post-wordpress-pleasant-surprise/' rel='bookmark' title='Initial content for a new page or post &#8211; wordpress pleasant surprise'>Initial content for a new page or post &#8211; wordpress pleasant surprise</a> <small>How to create a link to the add new page or post with default starting content...</small></li>
<li><a href='http://webdesign.anmari.com/1649/shortcode-any-widget/' rel='bookmark' title='Shortcode a widget in a page or post'>Shortcode a widget in a page or post</a> <small>Shortcodize a widget - Use any widget in a shortcode in a page or post...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="attachment_2671" class="wp-caption aligncenter" style="width: 490px"><a href="http://webdesign.anmari.com/wp-content/uploads/flashfail.png"><img class="size-large wp-image-2671 " title="flashfail" src="http://webdesign.anmari.com/wp-content/uploads/flashfail-1024x626.png" alt="" width="480" height="293" /></a><p class="wp-caption-text">What potential customers will see if they have an adblocker installed</p></div>
<p>Related posts:</p><ol>
<li><a href='http://webdesign.anmari.com/2643/initial-content-for-a-new-page-or-post-wordpress-pleasant-surprise/' rel='bookmark' title='Initial content for a new page or post &#8211; wordpress pleasant surprise'>Initial content for a new page or post &#8211; wordpress pleasant surprise</a> <small>How to create a link to the add new page or post with default starting content...</small></li>
<li><a href='http://webdesign.anmari.com/1649/shortcode-any-widget/' rel='bookmark' title='Shortcode a widget in a page or post'>Shortcode a widget in a page or post</a> <small>Shortcodize a widget - Use any widget in a shortcode in a page or post...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/2672/should-your-home-page-be-a-single-flash-animation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changes for the plugins</title>
		<link>http://webdesign.anmari.com/2656/changes-are-happening-for-the-plugins/</link>
		<comments>http://webdesign.anmari.com/2656/changes-are-happening-for-the-plugins/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 14:02:13 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[AmR Events]]></category>
		<category><![CDATA[AmR Ical Events List]]></category>
		<category><![CDATA[AmR User Templates]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webdesign.anmari.com/?p=2656</guid>
		<description><![CDATA[The plugins are moving amr-events plugin registration is now at icalevents.com amr-user-templates plugin registration is soon at wpusersplugin.com Your details have cloned and moved too  so you can access curremt and older versions here. New versions of the plugins will only be available at the new sites: Use the same usernames and passwords on all [...]
Related posts:<ol>
<li><a href='http://webdesign.anmari.com/plugins/' rel='bookmark' title='Plugins'>Plugins</a> <small>Many of my plugins are offered for free at wordpress.  Some plugins have additional functionality available to certain members of...</small></li>
<li><a href='http://webdesign.anmari.com/?p=1783' rel='bookmark' title='Another hacked story &#8211; did 2.9 appear to lose your plugins?'>Another hacked story &#8211; did 2.9 appear to lose your plugins?</a> <small>Don&#8217;t blame 2.9! A  site was hacked.  This was only detected because he had a funny admin screen so decided...</small></li>
<li><a href='http://webdesign.anmari.com/2078/amr-events-download/' rel='bookmark' title='amr-events download'>amr-events download</a> <small>Before you buy membership to access this plugin, please&#8230;&#8230; Test it!  test.icalevents.com.  The latest version is always there &#8211; it might...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3>The plugins are moving</h3>
<ul>
<li><strong>amr-events</strong> plugin registration is now at <a title="wordpress events  and calendar plugin " href="http://icalevents.com">icalevents.com</a></li>
<li><strong>amr-user-templates</strong> plugin registration is soon at <a title="simplify wordpress backend for your users with this plugin " href="http://wpusersplugin.com">wpusersplugin.com</a></li>
</ul>
<h3></h3>
<h3>Your details have cloned and moved too</h3>
<ul>
<li> so you can access curremt and older versions here. New versions of the plugins will only be available at the new sites:</li>
<li>Use the same usernames and passwords on all sites.</li>
</ul>
<p>&nbsp;</p>
<h3>On;y forum or email subscription registrations here</h3>
<ul>
<li>Any problems, please log it at the support forum or <a href="http://webdesign.anmari.com/about/contact/">contact me asap</a>.</li>
</ul>
<p>&nbsp;</p>
<p>Related posts:</p><ol>
<li><a href='http://webdesign.anmari.com/plugins/' rel='bookmark' title='Plugins'>Plugins</a> <small>Many of my plugins are offered for free at wordpress.  Some plugins have additional functionality available to certain members of...</small></li>
<li><a href='http://webdesign.anmari.com/?p=1783' rel='bookmark' title='Another hacked story &#8211; did 2.9 appear to lose your plugins?'>Another hacked story &#8211; did 2.9 appear to lose your plugins?</a> <small>Don&#8217;t blame 2.9! A  site was hacked.  This was only detected because he had a funny admin screen so decided...</small></li>
<li><a href='http://webdesign.anmari.com/2078/amr-events-download/' rel='bookmark' title='amr-events download'>amr-events download</a> <small>Before you buy membership to access this plugin, please&#8230;&#8230; Test it!  test.icalevents.com.  The latest version is always there &#8211; it might...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/2656/changes-are-happening-for-the-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Initial content for a new page or post &#8211; wordpress pleasant surprise</title>
		<link>http://webdesign.anmari.com/2643/initial-content-for-a-new-page-or-post-wordpress-pleasant-surprise/</link>
		<comments>http://webdesign.anmari.com/2643/initial-content-for-a-new-page-or-post-wordpress-pleasant-surprise/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 07:01:59 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://webdesign.anmari.com/?p=2643</guid>
		<description><![CDATA[How to create a link to the add new page or post with default starting content
Related posts:<ol>
<li><a href='http://webdesign.anmari.com/1649/shortcode-any-widget/' rel='bookmark' title='Shortcode a widget in a page or post'>Shortcode a widget in a page or post</a> <small>Shortcodize a widget - Use any widget in a shortcode in a page or post...</small></li>
<li><a href='http://webdesign.anmari.com/536/submenu-page-slug-attached-media-confusion/' rel='bookmark' title='Submenu, Page, slug, attached media confusion'>Submenu, Page, slug, attached media confusion</a> <small>I had a really odd one today.  A client had added text to a submenu page that was either empty...</small></li>
<li><a href='http://webdesign.anmari.com/113/category-specific-css-to-achieve-a-print-cover-page-css-look/' rel='bookmark' title='Category specific css to achieve a print &#8220;cover page&#8221; css look'>Category specific css to achieve a print &#8220;cover page&#8221; css look</a> <small>For a school&#8217;s online newsletter we wanted the &#8220;photo of the week&#8221; category to present differently from other posts. Ideally...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I wanted to help new users of my amr-ical-events-list plugin to get started.  I wanted</p>
<ul>
<li>a link to the <strong>add new page</strong></li>
<li>preferably with <strong>suggested title and content</strong></li>
</ul>
<p>I wondered???, I googled, I browsed some of the WordPress code and found naught, nought, null, or at least nothing obvious&#8230;</p>
<p><strong>and then I just tried it.</strong></p>
<p>&#8216;Content&#8217; was easy I had a few attempts at &#8216;title&#8217;, the found &#8216;post_title&#8217; worked.</p>
<p>Hooray! A small thing but quite satisfying and of course I felt a need to share&#8230;.</p>
<h2>The Result</h2>
<div id="attachment_2644" class="wp-caption aligncenter" style="width: 394px"><a href="http://webdesign.anmari.com/wp-content/uploads/newpage.png"><img class="size-full wp-image-2644" title="newpage" src="http://webdesign.anmari.com/wp-content/uploads/newpage.png" alt="Screen shot showing it works" width="384" height="239" /></a><p class="wp-caption-text">Seeing is believing</p></div>
<h2>The php code:</h2>
<p>&nbsp;</p>
<pre>echo '&lt;a title="'
.__('Create a calendar page','amr-ical-events-list')
.'" href="'.admin_url('post-new.php?post_type=page&amp;amp;content=[iCal http://youricsurl.ics]&amp;amp;post_title='
.__('Calendar','amr-ical-events-list')).'"&gt;'
__('Add new') // use wp translation
.'&lt;/a&gt;';</pre>
<div id="attachment_2645" class="wp-caption aligncenter" style="width: 494px"><a href="http://webdesign.anmari.com/wp-content/uploads/adminscreen.png"><img class="size-full wp-image-2645" title="adminscreen" src="http://webdesign.anmari.com/wp-content/uploads/adminscreen.png" alt="" width="484" height="301" /></a><p class="wp-caption-text">Link from settings or plugin page</p></div>
<p>&nbsp;</p>
<p>Related posts:</p><ol>
<li><a href='http://webdesign.anmari.com/1649/shortcode-any-widget/' rel='bookmark' title='Shortcode a widget in a page or post'>Shortcode a widget in a page or post</a> <small>Shortcodize a widget - Use any widget in a shortcode in a page or post...</small></li>
<li><a href='http://webdesign.anmari.com/536/submenu-page-slug-attached-media-confusion/' rel='bookmark' title='Submenu, Page, slug, attached media confusion'>Submenu, Page, slug, attached media confusion</a> <small>I had a really odd one today.  A client had added text to a submenu page that was either empty...</small></li>
<li><a href='http://webdesign.anmari.com/113/category-specific-css-to-achieve-a-print-cover-page-css-look/' rel='bookmark' title='Category specific css to achieve a print &#8220;cover page&#8221; css look'>Category specific css to achieve a print &#8220;cover page&#8221; css look</a> <small>For a school&#8217;s online newsletter we wanted the &#8220;photo of the week&#8221; category to present differently from other posts. Ideally...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/2643/initial-content-for-a-new-page-or-post-wordpress-pleasant-surprise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Faster please, faster &#8211; how to use WordPress as a CMS successfully &#8211; by mhansen</title>
		<link>http://webdesign.anmari.com/2589/faster-please-faster-how-to-use-wordpress-as-a-cms-successfully-by-mhansen/</link>
		<comments>http://webdesign.anmari.com/2589/faster-please-faster-how-to-use-wordpress-as-a-cms-successfully-by-mhansen/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 03:09:26 +0000</pubDate>
		<dc:creator>anmari</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://webdesign.anmari.com/?p=2589</guid>
		<description><![CDATA[Tips from conversations at webmaster world, and alter about timthumb vulnerability. 
Related posts:<ol>
<li><a href='http://webdesign.anmari.com/767/why-cms/' rel='bookmark' title='Why CMS?'>Why CMS?</a> <small>CMS stands for Content Management System. The good CMS&#8217;s now are so good, that in my view no-one should be...</small></li>
<li><a href='http://webdesign.anmari.com/135/improve-your-wordpress-webs-security-prevention/' rel='bookmark' title='Improve your wordpress web&#8217;s security &#8211; Prevention'>Improve your wordpress web&#8217;s security &#8211; Prevention</a> <small>Easy improvements for the non-technical: are you displaying your username for all the hackers to see? Go to your wordpress...</small></li>
<li><a href='http://webdesign.anmari.com/411/wordpress-user-training/' rel='bookmark' title='WordPress user training'>WordPress user training</a> <small>Web Designers sometimes neglect to factor in the training and hand holding required to get website owners comfortable with managing...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="attachment_2590" class="wp-caption aligncenter" style="width: 437px"><a href="http://www.flickr.com/photos/mauropm/3291100981/"><img class="size-full wp-image-2590" title="fast2" src="http://webdesign.anmari.com/wp-content/uploads/fast2.jpg" alt="" width="427" height="277" /></a><p class="wp-caption-text">Faster Phidus, FASTER! - original photo by mauropm</p></div>
<p>There&#8217;s a <a title="scroll down to mhansen" href="http://www.webmasterworld.com/wordpress/4346430.htm">good post over at webmasterworld</a> with advice on how to speed up WordPress when using it as a cms, plus a few other tips.  Also if you are using a theme that came packaged with timthumb, <a href="http://markmaunder.com/2011/zero-day-vulnerability-in-many-wordpress-themes/">read this</a> and take action to <strong>avoid being hacked.</strong></p>
<p>There was no way to  boomark the individual useful comment  that I could find, so I &#8216;ve taken the liberty of summarising here, with a link to the original complete conversation &#8211; <a href="http://www.webmasterworld.com/printerfriendlyv5.cgi?forum=152&amp;discussion=4346430&amp;serial=4347406&amp;user=">print version here</a>.<br />
1 &#8211; Get a dedicated server. The slowdown on a shared or VPS is at the database. {They} used to run the W3 cache plugin, but now only use the &#8220;<a href="http://wordpress.org/extend/plugins/force-gzip/">Force GZip</a>&#8221; plugin.</p>
<p>1A &#8211; Keep your database clean with an optimizer type plugin (or do it yourself) that weekly, backs it up than cleans up scuttle from the database.</p>
<p>2 &#8211; Security &#8211; Never load more plugins that you need to run the site, and always limit access to your wp-admin directory within the htaccess. <del>We</del> {They} deny all but 3-4 IP addresses from accessing the admin sections.</p>
<p>2A &#8211; Delete all unused themes and plugins&#8230; Even if they aren&#8217;t active!</p>
<p>3 &#8211; Using the wp-config.php file, turn off post revision tracking.</p>
<p>4 &#8211; If you are using WP as a CMS, use it as a CMS! <del>We</del> {They} use pages for 75-80% of our landing page content, and only use the post features to compliment our pages. Use .html as a file extension on pages and posts&#8230; and take GREAT care to make sure the index taxonomy is correct from page to category of post when used.</p>
<p>5 &#8211; Tags and Categories are always noindexed for us. The PAGES are our primary landing areas, and the tags and categories ultimately support them.</p>
<p>6 &#8211; Clean up your themes to the N&#8217;th degree. <del>We</del> use a speed tool that waterfalls the http requests so you can really clean it at the file level.</p>
<p>7 &#8211; Always use sitemaps, both xml and reader sitemaps.</p>
<p>8 &#8211; Favorite admin plugin, <a href="http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/">Ozh Horizontal Admin Menu plugin by Ozh</a>. It relocates the admin menu to the top of the site and frees up much needed horizontal space for writing.</p>
<p>&nbsp;</p>
<p>Related posts:</p><ol>
<li><a href='http://webdesign.anmari.com/767/why-cms/' rel='bookmark' title='Why CMS?'>Why CMS?</a> <small>CMS stands for Content Management System. The good CMS&#8217;s now are so good, that in my view no-one should be...</small></li>
<li><a href='http://webdesign.anmari.com/135/improve-your-wordpress-webs-security-prevention/' rel='bookmark' title='Improve your wordpress web&#8217;s security &#8211; Prevention'>Improve your wordpress web&#8217;s security &#8211; Prevention</a> <small>Easy improvements for the non-technical: are you displaying your username for all the hackers to see? Go to your wordpress...</small></li>
<li><a href='http://webdesign.anmari.com/411/wordpress-user-training/' rel='bookmark' title='WordPress user training'>WordPress user training</a> <small>Web Designers sometimes neglect to factor in the training and hand holding required to get website owners comfortable with managing...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://webdesign.anmari.com/2589/faster-please-faster-how-to-use-wordpress-as-a-cms-successfully-by-mhansen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

