<?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/"
	>

<channel>
	<title>Alex Poole</title>
	<atom:link href="http://www.alexpoole.name/feed" rel="self" type="application/rss+xml" />
	<link>http://www.alexpoole.name</link>
	<description>Pragmatic PHP, MySQL, Marketing &#38; Technology</description>
	<pubDate>Fri, 05 Feb 2010 16:56:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sugar Permissions / Cache unreadable / Ensim</title>
		<link>http://www.alexpoole.name/web-development/274/sugar-permissions-cache-unreadable-ensim</link>
		<comments>http://www.alexpoole.name/web-development/274/sugar-permissions-cache-unreadable-ensim#comments</comments>
		<pubDate>Fri, 05 Feb 2010 16:56:26 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[SugarCRM]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=274</guid>
		<description><![CDATA[Took a while to sort this one out. The client was hosted on United Hosting, who use Ensim.
Sugar was successfully creating files in the cache directory (which itself was 0755) but it was then unable to read the files it had created. Which made for a less-than ideal end-user experience.  To say the least.
The fix [...]]]></description>
			<content:encoded><![CDATA[<p>Took a while to sort this one out. The client was hosted on United Hosting, who use Ensim.</p>
<p>Sugar was successfully creating files in the cache directory (which itself was 0755) but it was then unable to read the files it had created. Which made for a less-than ideal end-user experience.  To say the least.</p>
<p>The fix was here: <a href="http://kb.sugarcrm.com/tag/permissions/">http://kb.sugarcrm.com/tag/permissions/</a></p>
<p>Edit config.php and change the permission defaults to:</p>
<p><code> 'default_permissions' =&gt;<br />
array (<br />
'dir_mode' =&gt; 511, //0777<br />
'file_mode' =&gt; 511,<br />
'user' =&gt; '',<br />
'group' =&gt; '',<br />
),</code></p>
<p>Job done. Sugar can now read what it writes. <a href="http://www.isvirtual.co.uk/customer-relationship-management.php">Cambridge CRM</a> working again. Have a great weekend!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/web-development/274/sugar-permissions-cache-unreadable-ensim/feed</wfw:commentRss>
		</item>
		<item>
		<title>mod_rewrite on Zeus for pretty URLs in Wordpress (namesco)</title>
		<link>http://www.alexpoole.name/seo/272/mod_rewrite-on-zeus-for-pretty-urls-in-wordpress-namesco</link>
		<comments>http://www.alexpoole.name/seo/272/mod_rewrite-on-zeus-for-pretty-urls-in-wordpress-namesco#comments</comments>
		<pubDate>Thu, 28 Jan 2010 22:51:13 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[seo]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=272</guid>
		<description><![CDATA[Just been installing a Wordpress blog on a Namesco Zeus server. Zeus servers don&#8217;t use mod_rewrite, they use rewrite.scripts instead. The syntax is totally different. The solution is here at Adam Christie&#8217;s blog, but I&#8217;ll take the liberty of posting it here too in case that&#8217;s ever unavailable:
 RULE_0_START:
# get the document root
map path into [...]]]></description>
			<content:encoded><![CDATA[<p>Just been installing a Wordpress blog on a Namesco Zeus server. Zeus servers don&#8217;t use mod_rewrite, they use rewrite.scripts instead. The syntax is totally different. The solution is <a href="http://www.adamchristie.co.uk/wordpress/seo-friendly-wordpress-urls-on-namesco-zeus-servers/">here at Adam Christie&#8217;s blog</a>, but I&#8217;ll take the liberty of posting it here too in case that&#8217;s ever unavailable:</p>
<p><code> RULE_0_START:<br />
# get the document root<br />
map path into SCRATCH:DOCROOT from /<br />
# initialize our variables<br />
set SCRATCH:ORIG_URL = %{URL}<br />
set SCRATCH:REQUEST_URI = %{URL}</code></p>
<p><code># see if theres any queries in our URL<br />
match URL into $ with ^(.*)\?(.*)$<br />
if matched then<br />
set SCRATCH:REQUEST_URI = $1<br />
set SCRATCH:QUERY_STRING = $2<br />
endif<br />
RULE_0_END:</code></p>
<p><code>RULE_1_START:<br />
# prepare to search for file, rewrite if its not found<br />
set SCRATCH:REQUEST_FILENAME = %{SCRATCH:DOCROOT}<br />
set SCRATCH:REQUEST_FILENAME . %{SCRATCH:REQUEST_URI}</p>
<p># check to see if the file requested is an actual file or<br />
# a directory with possibly an index.  don’t rewrite if so<br />
look for file at %{SCRATCH:REQUEST_FILENAME}<br />
if not exists then<br />
look for dir at %{SCRATCH:REQUEST_FILENAME}<br />
if not exists then<br />
set URL = /index.php?q=%{SCRATCH:REQUEST_URI}<br />
goto QSA_RULE_START<br />
endif<br />
endif</p>
<p># if we made it here then its a file or dir and no rewrite<br />
goto END<br />
RULE_1_END:</p>
<p></code></p>
<p><code>QSA_RULE_START:<br />
# append the query string if there was one originally<br />
# the same as [QSA,L] for apache<br />
match SCRATCH:ORIG_URL into % with \?(.*)$<br />
if matched then<br />
set URL = %{URL}&amp;%{SCRATCH:QUERY_STRING}<br />
endif<br />
goto END<br />
QSA_RULE_END:</code></p>
<p>Stick this in a file called rewrite.script in the root. Job done. Set up permalinks in the usual way. Cheers Adam. Saved me a world of pain <img src='http://www.alexpoole.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/seo/272/mod_rewrite-on-zeus-for-pretty-urls-in-wordpress-namesco/feed</wfw:commentRss>
		</item>
		<item>
		<title>Spin Backlink Link Text with PHP</title>
		<link>http://www.alexpoole.name/seo/265/spin-backlink-link-text-with-php</link>
		<comments>http://www.alexpoole.name/seo/265/spin-backlink-link-text-with-php#comments</comments>
		<pubDate>Tue, 26 Jan 2010 12:13:06 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=265</guid>
		<description><![CDATA[Quick one: if you&#8217;re placing backlinks on sites for SEO purposes and you&#8217;re at all worried about over-optimisation, this technique may be useful to you:

&#60;a href="http://www.isvirtual.co.uk"&#62;&#60;?php echo rand(0,1) ? "Website design" : "Web Site Design"; ?&#62;&#60;/a&#62; and &#60;a href="http://www.isvirtual.co.uk/seo-cambridge.php"&#62;&#60;?php echo rand(0,1) ? "SEO Cambridge" : "Cambridge SEO"; ?&#62;&#60;/a&#62; by &#60;a href="http://www.isvirtual.co.uk"&#62;&#60;?php echo rand(0,1) ? "ISVirtual" [...]]]></description>
			<content:encoded><![CDATA[<p>Quick one: if you&#8217;re placing backlinks on sites for <a href="http://www.alexpoole.name/seo">SEO</a> purposes and you&#8217;re at all worried about over-optimisation, this technique may be useful to you:</p>
<p><code><br />
&lt;a href="http://www.isvirtual.co.uk"&gt;&lt;?php echo rand(0,1) ? "Website design" : "Web Site Design"; ?&gt;&lt;/a&gt; and &lt;a href="http://www.isvirtual.co.uk/seo-cambridge.php"&gt;&lt;?php echo rand(0,1) ? "SEO Cambridge" : "Cambridge SEO"; ?&gt;&lt;/a&gt; by &lt;a href="http://www.isvirtual.co.uk"&gt;&lt;?php echo rand(0,1) ? "ISVirtual" : "IS Virtual"; ?&gt; &lt;/a&gt;<br />
</code></p>
<div>You get the idea. Of course you could spin more than 2 varations of each.</div>
<div></div>
<div>You&#8217;ll want to &#8220;lock&#8221; the randomisation too.  Before the first call to rand() use:</div>
<p><code>&lt;?php mt_srand(crc32($_SERVER['REQUEST_URI'])); ?&gt;</code></p>
<p>If you&#8217;re very cautious or backlinking a big site, you might want to use &#8220;vanilla&#8221; variations like &#8220;<a href="http://www.isvirtual.co.uk/seo-cambridge.php">click here</a>&#8221; too <img src='http://www.alexpoole.name/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Hope that&#8217;s useful to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/seo/265/spin-backlink-link-text-with-php/feed</wfw:commentRss>
		</item>
		<item>
		<title>Local SEO - Cambridge</title>
		<link>http://www.alexpoole.name/seo/262/local-seo-cambridge</link>
		<comments>http://www.alexpoole.name/seo/262/local-seo-cambridge#comments</comments>
		<pubDate>Tue, 12 Jan 2010 11:47:54 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[seo]]></category>

		<category><![CDATA[local seo]]></category>

		<category><![CDATA[seo cambridge]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=262</guid>
		<description><![CDATA[Firstly, happy 2010!
Secondly, this is a blatant slice of self-promotion!
If you&#8217;re looking for SEO Cambridge specialists, you should be talking to ISVirtual!
We&#8217;ve been working with a number of local companies to raise their SERPs profiles and are already seeing good success rates with a number of clients&#8217; sites raised from obscurity to page 1 positions [...]]]></description>
			<content:encoded><![CDATA[<p>Firstly, happy 2010!</p>
<p>Secondly, this is a blatant slice of self-promotion!</p>
<p>If you&#8217;re looking for <a href="http://www.isvirtual.co.uk/seo-cambridge.php" target="_blank">SEO Cambridge</a> specialists, you should be talking to <a href="http://www.isvirtual.co.uk/contact.php">ISVirtual</a>!</p>
<p>We&#8217;ve been working with a number of local companies to raise their SERPs profiles and are already seeing good success rates with a number of clients&#8217; sites raised from obscurity to page 1 positions for fairly competitive search terms.</p>
<p><strong>Local search engine optimisation</strong> demands a slightly different methodology from the usual &#8220;build pages, get links&#8221; model, in that there are usually specific local directories where getting links are especially beneficial as they have been &#8220;awarded&#8221; a Cambridge theme by the search engines already.</p>
<p>Also of course, there&#8217;s the importance of submitting a good quality<a href="http://www.google.com/local/add/" target="_blank"> local search listing</a> to Google. When done right this can literally get your company name to the top of page one within a day or two, and get you a pin on the map too.</p>
<p>As with any <a href="http://www.alexpoole.name/tag/seo">Search engine optimisation</a>, its easy enough to over-optimise for local results too. Liberally peppering the word <a href="http://www.alexpoole.name/tag/seo-cambridge" target="_blank">SEO Cambridge</a> all over the shop (with or without links,) probably won&#8217;t do - its enough to tell the SEs what you&#8217;re aiming for without ramming it down their throats.</p>
<p>At the same time, some backlinks are a good thing. Why did you think I was writing this post exactly? <img src='http://www.alexpoole.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Incidentally, I&#8217;m not sure quite yet what Google thinks about text volume. Ezinearticles likes long articles - they&#8217;ve basically said anything shorter than about 400 words will probably be treated as spam unless its blinding. I try to go for 1000 words or above there (and luckily I can ramble without totally straying off-topic, so writing for EZA is quite cathartic!)</p>
<p>On the other hand, blogs are meant to have short, sweet, to-the-point posts. My previous post about <a href="http://www.alexpoole.name/seo/252/seo-ely">SEO Ely</a> was very short, yet it hit the #1 spot in less than an hour and, touch wood, hasn&#8217;t faltered yet (yes OK its hardly competitive!) Now we&#8217;re over 300 words on this post but I think I&#8217;ll try and get up to a nice round 400 before signing off.</p>
<p>To be quite honest I&#8217;m still only dabbling with local search, but its a bit like shooting fish in a barrel in many markets.  The local qualifiers just lower the bar to such an extent that it would be embarrassing <em>not</em> to hit page one straight away&#8230;</p>
<p>Cambridge is a slightly different kettle-of-fish though, as our Atlantically-challenged friends had the nerve to give somewhere in Massachusetts the same name and, when used in conjunction with any IT or web-related terms, that small seat of learning <a href="http://web.mit.edu/career/www/infostats/resources.html">MIT</a> rears its ugly head with all the related academic pages so beloved of the SEs. Then of course you have Cambridge University over here too. <strong>Big</strong> guns in <a href="http://www.cam.ac.uk/global/search/websearch.html" target="_blank">Cambridge search</a> terms!</p>
<p>Often, clicking the &#8220;search UK only&#8221; radio button gets us down from the multiple millions to a couple of hundred thousand, so optimising .co.uk sites, or those physically hosted here, can be a lot easier. (This blog is on a Slicehost slice, so no dice there.)</p>
<p>So anyway, <a href="http://www.alexpoole.name/tag/local-seo">local SEO</a> is fun, and <a href="http://www.isvirtual.co.uk/seo-cambridge.php" target="_blank">SEO Cambridge optimisation</a> especially so <img src='http://www.alexpoole.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Now its time to stop drivelling and go and write a backup script in Bash, gasp!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/seo/262/local-seo-cambridge/feed</wfw:commentRss>
		</item>
		<item>
		<title>SugarCRM: Error: Query limit of 1000 reached for Calls / Lead module.</title>
		<link>http://www.alexpoole.name/web-development/257/sugarcrm-error-query-limit-of-1000-reached-for-calls-lead-module</link>
		<comments>http://www.alexpoole.name/web-development/257/sugarcrm-error-query-limit-of-1000-reached-for-calls-lead-module#comments</comments>
		<pubDate>Thu, 17 Dec 2009 10:19:57 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[SugarCRM]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=257</guid>
		<description><![CDATA[This seems to happen when you convert a lead because Sugar updates every entry in the (contacts table) or something. Not entirely sure which tables are in play here to be honest, but the answer seems to simply be to go to admin-&#62;settings and set &#8220;vCal Updates Time Period&#8221; to 0 (zero).
Worked for one of [...]]]></description>
			<content:encoded><![CDATA[<p>This seems to happen when you convert a lead because Sugar updates every entry in the (contacts table) or something. Not entirely sure which tables are in play here to be honest, but the answer seems to simply be to go to admin-&gt;settings and set &#8220;vCal Updates Time Period&#8221; to 0 (zero).</p>
<p>Worked for one of our <a href="http://www.isvirtual.co.uk/customer-relationship-management.php">CRM Cambridge</a> clients just now anyway <img src='http://www.alexpoole.name/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>There&#8217;s further explanation here: <a href="https://www.sugarcrm.com/forums/showthread.php?p=191467">https://www.sugarcrm.com/forums/showthread.php?p=191467</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/web-development/257/sugarcrm-error-query-limit-of-1000-reached-for-calls-lead-module/feed</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Boy gets arm crushed by car&#8221;</title>
		<link>http://www.alexpoole.name/uncategorized/254/boy-gets-arm-crushed-by-car</link>
		<comments>http://www.alexpoole.name/uncategorized/254/boy-gets-arm-crushed-by-car#comments</comments>
		<pubDate>Mon, 30 Nov 2009 13:53:57 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=254</guid>
		<description><![CDATA[I received an email just now purporting to show a series of photos where a young Iranian lad had his arm crushed by a car as punishment for stealing some bread.
A few moments of research showed that it was likely that the photos were taken out of context, and the lad - a performer in [...]]]></description>
			<content:encoded><![CDATA[<p>I received an email just now purporting to show a series of photos where a young Iranian lad had his arm crushed by a car as punishment for stealing some bread.</p>
<p>A few moments of research showed that it was likely that the photos were taken out of context, and the lad - a performer in a street circus - <a href="http://www.snopes.com/photos/gruesome/crushboy.asp" target="_blank">suffered no permanent damage from the event</a></p>
<p>Now don&#8217;t get me wrong - some of the world&#8217;s worst atrocities have certainly been carried out in one of the many names of God. <a href="http://en.wikipedia.org/wiki/Spanish_Inquisition" target="_blank">Spanish Inquisition</a> anyone? What bothers me though is when highly emotive content is sent around willy nilly and <strong>trusted by the masses at face value</strong>.</p>
<p>When I receive information - especially emotionally-charged information that has such a clear intent to rabble-rouse - I ask, &#8220;what is the motive?&#8221; Usually its a simple question to answer, and that answer can be quite illuminating!</p>
<p>Do you blindly trust what you read at face value, or do you ask yourself who could be trying to manipulate your opinions?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/uncategorized/254/boy-gets-arm-crushed-by-car/feed</wfw:commentRss>
		</item>
		<item>
		<title>SEO Ely</title>
		<link>http://www.alexpoole.name/seo/252/seo-ely</link>
		<comments>http://www.alexpoole.name/seo/252/seo-ely#comments</comments>
		<pubDate>Thu, 26 Nov 2009 11:54:55 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[seo]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[seo ely]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=252</guid>
		<description><![CDATA[If you&#8217;re searching for an SEO Ely specialist, you should definitely contact ISVirtual.
We specialise in all aspects of Search Engine Optimisation including:

Keyword research - finding out what people who are looking for your products and services actually search for, in the real world.
On-page SEO - editing and/or creating the following tags to make sure they [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re searching for an <a href="http://www.isvirtual.co.uk/search-engine-optimisation.php">SEO Ely</a> specialist, you should definitely contact <a href="http://www.isvirtual.co.uk">ISVirtual</a>.</p>
<p>We specialise in all aspects of <a href="http://www.alexpoole.name/category/seo/">Search Engine Optimisation</a> including:</p>
<ul>
<li><strong>Keyword research</strong> - finding out what people who are looking for your products and services actually search for, in the <em>real world</em>.</li>
<li><strong>On-page </strong><a href="http://www.alexpoole.name/category/seo"><strong>SEO</strong></a> - editing and/or creating the following tags to make sure they contain the most relevant keywords which you&#8217;ve identified above:
<ul>
<li>Page &lt;title&gt; tag</li>
<li>&lt;H1&gt;, &lt;H2&gt; and &lt;H3&gt; heading tags</li>
<li>Internal &lt;a href&#8230;&gt; links to other pages on your site</li>
<li>Image &#8220;alt&#8221; attributes</li>
<li>&lt;meta&#8230;&gt; tags  - whilst meta keyword tags are not desperately important for <a href="http://www.alexpoole.name/tag/SEO">SEO</a> any more, the meta <em>description</em> tag usually provides the search result &#8220;snippet&#8221; in Google, which can provide a strong call-to-action</li>
</ul>
</li>
<li><strong>Off-page SEO</strong> - building links to the site to demonstrate to the search engines that the site is a relevant and valuable for them to show to their searchers. We can employ many strategies including the following:
<ul>
<li>Article link-building - writing and distributing valuable and useful content to sites that publish articles, and will then link to the client&#8217;s site.</li>
<li><a href="http://www.isvirtual.co.uk/video-seo.php">Video SEO</a> - producing videos that can quickly insert themselves into the top 10 <a href="http://www.alexpoole.name/tag/google">Google</a> results</li>
<li>Guest blog posting  - creating content to post on other peoples&#8217; sites, who then link back to your site</li>
<li>Affiliate programs - offering a &#8220;cut&#8221; of sales to people who refer the customers - this can be a <em>very</em> powerful technique to grow traffic quickly, if the site can convert visitors into buyers effectively</li>
<li>Directories - most are pretty worthless but there are a few directories that are still worth submitting to</li>
<li>Social Bookmarking - &#8220;spreading the word&#8221; about useful and valuable content using sites like Digg, Del.icio.us,</li>
<li>Social Media - &#8220;spreading the word&#8221; about useful and valuable content with sites such as Facebook and Twitter</li>
</ul>
</li>
<li><strong>Link Bait</strong> - creating content that is so compelling (an addictive game, controversial editorial or super-useful resource,) that other webmasters <em>choose</em> to link to it.</li>
</ul>
<p>We&#8217;re finding more and more customers  locally, in Ely and the surrounding area (Cambridgeshire, West Norfolk, North Suffolk, etc) - its great for us because it costs us less fuel and time to go to meetings, and its great for you because we can pop round and talk face-to-face at the drop of a hat. Why engage an <a href="http://www.isvirtual.co.uk/">SEO company</a> half way across the country (or indeed half way across the world!) when there&#8217;s a highly experienced one on your doorstep?!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/seo/252/seo-ely/feed</wfw:commentRss>
		</item>
		<item>
		<title>SugarCRM issue: CentOS, PHP 5.2.11, Junk Characters, Plesk, OneandOne</title>
		<link>http://www.alexpoole.name/web-development/249/sugarcrm-issue-centos-php-5211-junk-characters-plesk-oneandone</link>
		<comments>http://www.alexpoole.name/web-development/249/sugarcrm-issue-centos-php-5211-junk-characters-plesk-oneandone#comments</comments>
		<pubDate>Fri, 20 Nov 2009 12:26:26 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[CentOS]]></category>

		<category><![CDATA[OneandOne]]></category>

		<category><![CDATA[PHP5.2.11]]></category>

		<category><![CDATA[Plesk]]></category>

		<category><![CDATA[SugarCRM]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=249</guid>
		<description><![CDATA[This post is just a pointer to a solution which it took me a *long* time to find on the SugarCRM forums.
The symptoms are that you install (or migrate) SugarCRM and are presented with a pile of  &#8221;junk characters&#8221; instead of a normal login screen.
The reason, I eventually discovered after a tedious amount of trial, [...]]]></description>
			<content:encoded><![CDATA[<p>This post is just a pointer to a solution which it took me a *long* time to find on the SugarCRM forums.</p>
<p>The symptoms are that you install (or migrate) SugarCRM and are presented with a pile of  &#8221;junk characters&#8221; instead of a normal login screen.</p>
<p>The reason, I eventually discovered after a tedious amount of trial, error and Googling, is that PHP 5.2.11 has a fiddly Zlib implementation.</p>
<p>The solution, (along with a screenshot of the symptom to ensure that this is indeed the same issue that you are experiencing,) is posted here:</p>
<p><a href="http://www.sugarcrm.com/forums/showthread.php?t=53231">http://www.sugarcrm.com/forums/showthread.php?t=53231</a></p>
<p>The other keywords in this post title relating to CentOS, PHP 5.2.11, Plesk and OneandOne are things I thought might be causing the problem.  (Turns out the PHP version is significant, whilst the hosting company and hosting control panel are not.) Hopefully others with the same issue will be able, therefore, to find this post quicker than the deeply buried SugarCRM forum entry.</p>
<p>As always - hope that helps <img src='http://www.alexpoole.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/web-development/249/sugarcrm-issue-centos-php-5211-junk-characters-plesk-oneandone/feed</wfw:commentRss>
		</item>
		<item>
		<title>IM Success Notes Down</title>
		<link>http://www.alexpoole.name/internet-marketing/247/im-success-notes-down</link>
		<comments>http://www.alexpoole.name/internet-marketing/247/im-success-notes-down#comments</comments>
		<pubDate>Tue, 10 Nov 2009 16:05:12 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[Internet Marketing]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=247</guid>
		<description><![CDATA[I&#8217;m so sorry.
Here&#8217;s what happened:
When we set up ISVirtual we bartered a server from a business associate in return for setting up and maintaining a SugarCRM install for them.
I hosted IM Success Notes on this server as it was very over-spec and could deal with huge traffic spikes. (It had 4Gb of RAM and an [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I&#8217;m so sorry.</strong></p>
<p>Here&#8217;s what happened:</p>
<p>When we set up <a href="http://www.isvirtual.co.uk" target="_blank">ISVirtual</a> we bartered a server from a business associate in return for setting up and maintaining a SugarCRM install for them.</p>
<p>I hosted IM Success Notes on this server as it was very over-spec and could deal with huge traffic spikes. (It had 4Gb of RAM and an 8 core processor, if that means anything to you.)</p>
<p>It was a good decision and the site ran smoothly through a very spikey launch.</p>
<p>Well, the other day the server disappeared off the &#8216;net. No HTTP, no SSH, no nothing. No warning :/</p>
<p>Turns out our associate had neglected to pay their hosting bill - many many hundreds of pounds (it pertained to a large number of servers, not just the one we&#8217;d bartered.)</p>
<p>Trusting to the top-notch RAID 5, I hadn&#8217;t kept regular off-site backups. I have all the code for IMSN of course, but no up-to-date database backups.</p>
<p>In layman terms, that means I don&#8217;t know who I owe commissions too, and I&#8217;ve lost the entire user database.</p>
<p>I&#8217;m <em>beyond anger</em> on this. I&#8217;m doing <strong>absolutely everything</strong> I possibly can to retrieve the data.</p>
<p>In the meantime, if you know what commission I owe you, please email me at alexpoole (at) gmail (dot) com and I&#8217;ll paypal you immediately - I know that payments were already overdue.</p>
<p>I understand how badly this has potentially affected my reputation, and I would<em> never</em> have done this on purpose - please believe at least that.</p>
<p>I&#8217;ll do everything I can to make amends.</p>
<p>Again, I&#8217;m very very sorry.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/internet-marketing/247/im-success-notes-down/feed</wfw:commentRss>
		</item>
		<item>
		<title>Online Bass Lessons and Collaboration Bands - Wikinomics Working</title>
		<link>http://www.alexpoole.name/technology/245/online-bass-lessons-and-collaboration-bands-wikinomics-working</link>
		<comments>http://www.alexpoole.name/technology/245/online-bass-lessons-and-collaboration-bands-wikinomics-working#comments</comments>
		<pubDate>Wed, 14 Oct 2009 17:54:56 +0000</pubDate>
		<dc:creator>alex</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.alexpoole.name/?p=245</guid>
		<description><![CDATA[I read Don Tapscotts&#8217;s Wikinomics a while ago - (in my own interpretation) it proposes that the almost limitless collaboration which today&#8217;s internet at last genuinely enables will change every facet of how the world goes around.
Heady stuff for sure and indeed during and after reading the book my head was in a whirl of [...]]]></description>
			<content:encoded><![CDATA[<p>I read Don Tapscotts&#8217;s <a href="http://www.wikinomics.com/book/" target="_blank">Wikinomics</a> a while ago - (in my own interpretation) it proposes that the almost limitless collaboration which today&#8217;s internet at last genuinely enables will change every facet of how the world goes around.</p>
<p>Heady stuff for sure and indeed during and after reading the book my head was in a whirl of possibilities for weeks.</p>
<p>Pragmatically though - real world - what does this all  mean?</p>
<p>Well I&#8217;ve been happening upon something recently that is a perfect and bang up-to-date example&#8230;</p>
<p>I bought a bass guitar the other day. I haven&#8217;t played one in pretty much 20 years but thought it would be fun to get blisters again. Naturally enough to help get back up to speed I researched <a href="http://www.dmanlamius.com/" target="_blank">online bass lessons</a>.</p>
<p>Sure the usual info-products are there, as in pretty much every niche nowadays, but also a world of <a href="http://www.youtube.com/results?search_query=bass+lessons&amp;search_type=&amp;aq=f" target="_blank">bass lessons on youtube</a> which people had recorded and distributed for free. Which was cool.</p>
<p>It gets a whole heap better though.</p>
<p>Turns out people aren&#8217;t just recording and uploading themselves playing <a href="http://www.youtube.com/results?search_query=red+hot+chili+peppers+cover&amp;search_type=&amp;aq=0s">Red Hot Chili Peppers covers</a> any more.</p>
<p>Now they&#8217;re forming &#8220;<a href="http://www.youtube.com/results?search_query=band+collaboration&amp;search_type=&amp;aq=f" target="_blank">Youtube collaboration bands</a>&#8221; - passing tracks around, editing them up into a vid and posting the finished version. These are people who&#8217;ve never met - may never meet - and can quickly and easily form loose networks of collaboration as suits their purpose at the time.</p>
<p>In other words if you&#8217;re a drummer or a bass player who wants to show off their talent with a specific song, you can quickly and easily search Youtube and other networks for guitarists who&#8217;ve already demonstrated their prowess with the song you want to record, or at least a similar song. That&#8217;s the audition taken care of.</p>
<p>Then its a snip to contact the person, move to realtime on IM or Skype, and to send audio or video files to each other across the web.</p>
<p>The result could be something like this <a href="http://www.youtube.com/watch?v=sLfbJDG2QmM" target="_blank">stonking version of Higher Ground</a>.</p>
<p><span style="background-color: #ffffff;">So just think about this for a moment&#8230;</span></p>
<p><span style="background-color: #ffffff;">Someone with just a laptop with a webcam, an  internet connection and an instrument can now find musical partners anywhere on the planet in pretty much real time, and create a multitrack multimedia recording with them, (using only free software and services if they so choose.)</span></p>
<p>Now <em>that</em> is f****ng exciting!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexpoole.name/technology/245/online-bass-lessons-and-collaboration-bands-wikinomics-working/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
