<?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> &#187; Problem Solving</title>
	<atom:link href="http://www.dijiblog.co.uk/category/problem-solving/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dijiblog.co.uk</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 14:51:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Removing the VAT from a VAT Inclusive Price</title>
		<link>http://www.dijiblog.co.uk/removing-vat-vat-inclusive-price/</link>
		<comments>http://www.dijiblog.co.uk/removing-vat-vat-inclusive-price/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 11:08:44 +0000</pubDate>
		<dc:creator>Olly</dc:creator>
				<category><![CDATA[FAIL]]></category>
		<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[bulk remove tax]]></category>
		<category><![CDATA[bulk remove vat]]></category>
		<category><![CDATA[calculation to remove tax]]></category>
		<category><![CDATA[calculation to remove vat]]></category>
		<category><![CDATA[remove tax in bulk]]></category>
		<category><![CDATA[remove tax on products]]></category>
		<category><![CDATA[remove vat from prices]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=1820</guid>
		<description><![CDATA[Ok, so we just spent the last 30 mins figuring out how to remove the VAT (20%) from a VAT inclusive price. The reason for this, is a customer of ours has an awesome online shop made by us &#8211; and all his prices are INCLUSIVE of VAT/Tax. He trades internationally, so we&#8217;ve been working on a [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so we just spent the last 30 mins figuring out how to remove the VAT (20%) from a VAT inclusive price.</p>
<p>The reason for this, is a customer of ours has an awesome online shop made by us &#8211; and all his prices are INCLUSIVE of VAT/Tax. He trades internationally, so we&#8217;ve been working on a cool EUVAT/Vat Exempt module so that (example) if someone buys from the EU and is EUVAT registered, they input their EUVAT number, the site instantly checks it for validity and if its OK removes the Tax/VAT from the order.</p>
<p>It has a whole heap of other &#8220;conditions&#8221; with it, but thats not the reason for this blog post.</p>
<p>We wanted to bulk remvoe the vat from his products, but our initial plan fell flat on its face, becasue;</p>
<p>£100 + 20% VAT = £120</p>
<p>£120 &#8211; 20% VAT = £96</p>
<p>Ah.</p>
<p>The reason for this is that 20% of 100 is not the same as 20% of 120&#8230;.</p>
<p>So we racked our brains for all those formulas and junk we learnt in school, and asked a few friends who mostly pointed us to cool websites that seemed to do the job &#8211; but we were still no closer to actualyl figuring out what the formula was..</p>
<p>Then all of a sudden, bingo!</p>
<p>One of the lads figured it out, and here it is;</p>
<p>(total_price/(100+VAT))*100</p>
<p>So, as we break it down&#8230;..</p>
<p>(120/(100+20))*100</p>
<p>(120/120)*100</p>
<p>1*100</p>
<p><strong>£100</strong></p>
<p>Bingo! <img src='http://www.dijiblog.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/removing-vat-vat-inclusive-price/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>301 Redirect &#8211; Move a site down a directory wildcard</title>
		<link>http://www.dijiblog.co.uk/301-redirect-move-site-directory-wildcard/</link>
		<comments>http://www.dijiblog.co.uk/301-redirect-move-site-directory-wildcard/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 10:40:44 +0000</pubDate>
		<dc:creator>Olly</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[301 redirect]]></category>
		<category><![CDATA[htaccess. seo redirect]]></category>
		<category><![CDATA[moving down a directory]]></category>
		<category><![CDATA[redirect 301]]></category>
		<category><![CDATA[search engine friendly redirects]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=243</guid>
		<description><![CDATA[When we build a new website for a customer we sometimes build it on their live domain, but in a sub-folder like /dev /new &#8211; then when the time comes to make the site live there is sometimes the need to put a redirect in place in case Google has cached the development URLs. Now [...]]]></description>
			<content:encoded><![CDATA[<p>When we build a new website for a customer we sometimes build it on their live domain, but in a sub-folder like /dev /new &#8211; then when the time comes to make the site live there is sometimes the need to put a redirect in place in case Google has cached the development URLs.</p>
<p><img class="alignright size-full wp-image-244" title="Redirection with a 301 is best for SEO" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/08/1285311_direction_signs.jpg" alt="" width="222" height="300" />Now whenever something bakes my noodle &#8211; and no one in the office can help, I turn to Google &#8211; and from time to time the big G lets me down too.</p>
<p>When that happens I turn to my friend <a href="http://www.djb31st.co.uk/" target="_blank">DJB31st</a> to see if he has an idea..</p>
<p>Once again, he saved the day <img src='http://www.dijiblog.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you would like a wildcard redirect to move everything down a directory, then use the following line in your HTACCESS file;</p>
<p>RewriteRule ^new/(.*)$ /$1 [R=301,NC,L]</p>
<p>Replace new with the directory (or directories) you wish to remove from the cached URL&#8217;s</p>
<p>Example:</p>
<p>http://www.domain.com/<strong>new</strong>/page.php, Becomes; http://www.domain.com/page.php</p>
<p>Or</p>
<p>http://www.domain.com/<strong>new</strong>/test/another/,  Becomes; http://www.domain.com<strong></strong>/test/another/</p>
<p>My next redirect blog post will be how to move an entire new site to a new domain, complete with wild-cards!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/301-redirect-move-site-directory-wildcard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Roundstorm Virus/Trojan Information</title>
		<link>http://www.dijiblog.co.uk/roundstorm-virustrojan-information/</link>
		<comments>http://www.dijiblog.co.uk/roundstorm-virustrojan-information/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 18:28:25 +0000</pubDate>
		<dc:creator>Olly</dc:creator>
				<category><![CDATA[FAIL]]></category>
		<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[drunkjeans.com]]></category>
		<category><![CDATA[Galslime.com]]></category>
		<category><![CDATA[Hugejar.com]]></category>
		<category><![CDATA[Ionicclock.com]]></category>
		<category><![CDATA[Malepad.ru]]></category>
		<category><![CDATA[Oldgoal.com]]></category>
		<category><![CDATA[Pantscow.ru]]></category>
		<category><![CDATA[roundstorm.com virus]]></category>
		<category><![CDATA[Tightsales.com]]></category>
		<category><![CDATA[virus infestation]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=226</guid>
		<description><![CDATA[It was a Sunday afternoon, and I was chilling at home with my family when I got a call from a friend saying a website was down &#8211; upon investigation something had altered one of the index.php files and it was this that was causing the site not to load. Upon further inspection i found [...]]]></description>
			<content:encoded><![CDATA[<p>It was a Sunday afternoon, and I was chilling at home with my family when I got a call from a friend saying a website was down &#8211; upon investigation something had altered one of the index.php files and it was this that was causing the site not to load.</p>
<p><img class="alignright size-full wp-image-228" title="VIRUS!!!!" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/07/674262_bug_pc_virus.jpg" alt="" width="300" height="224" />Upon further inspection i found out that the file in question had 2 lines of text added to the bottom of it, and my findings were not good.</p>
<p>After a scan of that websites account, we found a lot more infected files. Oh dear.</p>
<p>I did some searching, and NOTHING came up on Google. Now ive been &#8220;surfing the web&#8221; for 16 years, and i&#8217;ve NEVER been unsuccessful in finding what I want on google &#8211; so it must have been BRAND NEW!</p>
<p>A few days later and I managed to find <a title="WP Guru" href="http://wpguru.co.uk/2010/07/the-drunkjeans-com-wordpress-hack-and-how-to-get-rid-of-it/" target="_blank">a blog that was discussing the virus</a>, and also talking about the different forms/variations it came in.</p>
<p>After much searching, editing of files, searching, editing of files, altering the search criteria, searching, editing files &#8211; we finally have gotten rid of this crap &#8211; but it was a long process!</p>
<p>We think the Trojan gains passwords from <a title="Post on FileZilla Forums" href="http://forum.filezilla-project.org/viewtopic.php?f=1&amp;t=17150" target="_blank">Filezilla</a> and access the sites via ftp, edit all the javascript files, all the index.html, index.php, main.php and maintenance.php files to include some javascript redirect type code.</p>
<p>The overall &#8220;point&#8221; of the virus is unclear, we could do with some original virus files so we can rip them to pieces and analyse what its doing.</p>
<p>We do think its simply a redirect virus that will try and send you to a Viagra site or something &#8211; so its not the worst thing in the world.</p>
<p>It does however block users from viewing your website if they have found it thru google or if they have Virus/Malware/Spyware scanners running all the time on your pc.</p>
<p>Need help getting dis-infected?</p>
<p><em><strong>Call our BUG SQUASHING helpline on +44(0)1623 650 333 <a href="http://www.dijitul.co.uk/contact/">or send us an email</a>!</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/roundstorm-virustrojan-information/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s &#8220;Caffeine&#8221; update is LIVE!</title>
		<link>http://www.dijiblog.co.uk/googles-caffeine-update-live/</link>
		<comments>http://www.dijiblog.co.uk/googles-caffeine-update-live/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 08:19:23 +0000</pubDate>
		<dc:creator>Olly</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[google caffeine]]></category>
		<category><![CDATA[google caffeine update]]></category>
		<category><![CDATA[google caffene]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=199</guid>
		<description><![CDATA[Caffeine? Aint that the stuff in my coffee? &#8211; Yes it is, but its also the nickname given to Googles updated indexing algorithm. It was first rumoured back in august of 2009 that Google would be making some fairly heavy changes to its indexing algorithm, and with the changes bought fresh hope of fairer SERP&#8217;s. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full  wp-image-200" title="Google Caffeine" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/06/google-caffeine-cup.jpg" alt="" width="139" height="188" /><em>Caffeine? Aint that the stuff in my coffee?</em> &#8211; Yes it is, but its also the nickname given to Googles updated indexing algorithm. It was first rumoured back in august of 2009 that Google would be making some fairly heavy changes to its indexing algorithm, and with the changes bought fresh hope of fairer SERP&#8217;s.</p>
<p>You see, the problem that we face day-in-day-out is that so many websites in the results pages do not follow the rules. There are far too many sites appearing high in Google, and yet shouldn&#8217;t be there. We are hoping that once the caffeine update has levelled out &#8211; all the erroneous results will disappear and the better sites will start ranking better.</p>
<p>Unsure if your website is &#8220;Caffeine Friendly&#8221; then <a href="http://www.dijitul.co.uk/contact/">give dijitul media a call</a> and have a FREE on-site search engine optimisation report</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/googles-caffeine-update-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google buys its way out of another pickle &#8211; Gmail.co.uk</title>
		<link>http://www.dijiblog.co.uk/google-buys-pickle-gmailcouk/</link>
		<comments>http://www.dijiblog.co.uk/google-buys-pickle-gmailcouk/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 07:42:10 +0000</pubDate>
		<dc:creator>Olly</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[copyright violation]]></category>
		<category><![CDATA[dijitul media]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=183</guid>
		<description><![CDATA[I was trying to think back to when i started using Gmail for the first time &#8211; i have quite a good account name,  i got it back when you had to be invited to use the system. I love how Gmail has changed the way i use email, i love how i can bolt [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-184" title="Gmail UK gmail.co.uk" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/06/GMailUK-300x231.png" alt="" width="216" height="167" />I was trying to think back to when i started using Gmail for the first time &#8211; i have quite a good account name,  i got it back when you had to be invited to use the system. I love how Gmail has changed the way i use email, i love how i can bolt on &#8220;labs&#8221; stuff which pushes my email forward in ways other email clients only wished they could evolve (Mail Beer Goggles?? Haha!)</p>
<p>Anyway &#8211; when it was launched in the UK, it was called Gmail &#8211; but as its proper launch got closer another company who had been using the term Gmail in the UK for years piped up and kicked up a bit of a fuss about it. A big lawsuit kicked off, and google ended up <a href="http://www.dynonames.com/articles/google_looses_gmail_uk_domain.htm" target="_blank">changing all UK sign ups</a> to @googlemail.com email account &#8211; despite @gmail.com still working for all UK users as well!</p>
<p>It appeared that they had underestimated<a title="Yep, there is more than one, Google." href="http://googlesystem.blogspot.com/2006/09/theres-more-than-one-gmail.html" target="_blank"> the popularity of the Gmail name</a>!</p>
<p>I recently noticed that <a title="Gmail UK" href="http://www.gmail.co.uk" target="_blank">gmail.co.uk</a> has stopped resolving the website for the contensis content management system email, and instead just shows a error page. I did a whois and suprise suprise;</p>
<p style="padding-left: 30px;"><em>Domain name:<br />
gmail.co.uk</em></p>
<p style="padding-left: 30px;"><em><img class="alignright size-full wp-image-185" title="Gmail.de" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/06/gmail-de.gif" alt="" width="155" height="121" /></em><em>Registrant:<br />
Google Inc.</em></p>
<p>I wonder how much they paid for that domain name? First registered in 1998 as well, so its not like to sat on it as soon as they heard google might be doing emails!</p>
<p>Seems to be the way copyright violations like this are solved in this world &#8211; buy out the competition! I wonder if they&#8217;ll do the same for <a href="http://www.gmail.de" target="_blank">Gmail.de</a>?</p>
<p>Also, i wonder if i&#8217;ll soon be able to have an @gmail.co.uk email address? Now that would be awesome!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/google-buys-pickle-gmailcouk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress NextGEN Gallery Shortcodes</title>
		<link>http://www.dijiblog.co.uk/wordpress-nextgen-gallery-shortcodes/</link>
		<comments>http://www.dijiblog.co.uk/wordpress-nextgen-gallery-shortcodes/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 12:46:08 +0000</pubDate>
		<dc:creator>Olly</dc:creator>
				<category><![CDATA[Day to Day]]></category>
		<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[Wordpress Web Design]]></category>
		<category><![CDATA[new nextgen shortcodes]]></category>
		<category><![CDATA[nextgen gallery for wordpress]]></category>
		<category><![CDATA[nextgen shortcode]]></category>
		<category><![CDATA[nextgen wordpress]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=153</guid>
		<description><![CDATA[Whenever we build a website using WordPress and the client request a gallery &#8211; we always use NextGEN. I cant fault them for the features it offers, its a fantastic bit of kit &#8211; but when it actually comes to the shortcodes to get it to display stuff &#8211; NextGEN fail big time. So i [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-154" title="nextgen gallery shortcodes wordpress short codes" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/04/nextgen-gallery-shortcodes-wordpress-short-codes.jpg" alt="" width="210" height="209" />Whenever we build a website using <a href="http://wordpress.org/" target="_blank">WordPress</a> and the client request a gallery &#8211; we always use NextGEN.</p>
<p>I cant fault them for the features it offers, its a fantastic bit of kit &#8211; but when it actually comes to the shortcodes to get it to display stuff &#8211; NextGEN fail big time.</p>
<p>So i google it every time, sometimes finding what i want &#8211; but most of the time having to piece it together from examples people have p=ut on forums.</p>
<p>Today, i found a blog that lists many of the Shortcodes &#8211; so i thought i&#8217;d repeat them so they are easier for people to find! &#8211; <a href="http://www.infopint.com/all-about-nextgen-galleryshort-code-listuseful-hints/" target="_blank">Thanks InfoPint!</a></p>
<h3>List of Short Codes for NextGEN Gallery</h3>
<p>Short codes are the piece of text which you add along with you text  on your blog post or sidebars. Short codes can also be added inside the  theme templates.</p>
<p>For a slideshow :[ slideshow id=x w=width h=height ]<br />
For a album : [ album id=x template=extend] or [ album id=x  template=compact ]<br />
For a gallery : [  nggallery id=x ]<br />
For a single picture : [ singlepic id=x w=width h=height  mode=web20|watermark float=left|right ]<br />
For a image browser : [ imagebrowse r id=x ]<br />
To show image sorted by tags :[ nggtags gallery=mytag,wordpress,...  ]<br />
To show tag albums : [ nggtags album=mytag,wordpress,...  ]</p>
<h3><span id="more-153"></span>Create Special Effects using Short Codes  in the template files</h3>
<p>Short codes can be called from any theme template files, using  <strong>do_shortcode</strong> template tag   from the template files. Here are some examples</p>
<p>&lt;?php echo do_shortcode(’[ slideshow id=2 ]); ?&gt;</p>
<p>You can use this technique to create special flash headers with  rotating images or create a showcase effect like here <a href="http://www.stylehaute.com/">www.StyleHaute.com</a></p>
<p><strong>Display Gallery view</strong></p>
<p>http://nextgen-gallery.com/templates/galleryview/</p>
<p><code>[ nggallery id=1 <strong>template=galleryview</strong> images=0  ]</code></p>
<h3>Useful Links for NextGEN Gallery</h3>
<p><a href="http://nextgen-gallery.com/custom-fields/">http://nextgen-gallery.com/custom-fields/</a></p>
<p><a href="http://wordpress.org/support/topic/294912">http://wordpress.org/support/topic/294912</a></p>
<p><a href="http://dpotter.net/Technical/2008/05/nextgen-gallery-review-displaying-images/">http://dpotter.net/Technical/2008/05/nextgen-gallery-review-displaying-images/</a></p>
<p><a href="http://www.visser.com.au/blog/list-of-wordpress-plugins-addons-for-nextgen-gallery/">http://www.visser.com.au/blog/list-of-wordpress-plugins-addons-for-nextgen-gallery/</a></p>
<p><a href="http://speckyboy.com/2008/10/23/10-powerful-shoppingecommerce-plugin-solutions-for-wordpress/">http://speckyboy.com/2008/10/23/10-powerful-shoppingecommerce-plugin-solutions-for-wordpress/</a></p>
<p><a href="http://www.webdesignerwall.com/tutorials/css-decorative-gallery/">http://www.webdesignerwall.com/tutorials/css-decorative-gallery/</a></p>
<p>If you can think of any more shortcodes &#8211; or if NextGEN include any more in future releases then please comment. <img src='http://www.dijiblog.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/wordpress-nextgen-gallery-shortcodes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cheeky Hardcoded Access to Clients eCommerce Store</title>
		<link>http://www.dijiblog.co.uk/cheeky-hardcoded-access-clients-ecommerce-store/</link>
		<comments>http://www.dijiblog.co.uk/cheeky-hardcoded-access-clients-ecommerce-store/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 12:08:46 +0000</pubDate>
		<dc:creator>Olly</dc:creator>
				<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[dodgy ecommerce suppliers]]></category>
		<category><![CDATA[name and shame online shop creators]]></category>
		<category><![CDATA[things to remember when planning ecommerce]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=149</guid>
		<description><![CDATA[Our clients often come to us with websites they have had developed somewhere else &#8211; sometimes the websites are awesome, made well, with the right elements taken into consideration to enable them to succeed in the SERP&#8217;s &#8211; but unfortunately, most of the time they are garbage. We&#8217;ve had some site in particular that as [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-151" title="Hands Up!" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/03/robber11.jpg" alt="" width="259" height="299" />Our clients often come to us with websites they have had developed somewhere else &#8211; sometimes the websites are awesome, made well, with the right elements taken into consideration to enable them to succeed in the SERP&#8217;s &#8211; but unfortunately, most of the time they are garbage.</p>
<p>We&#8217;ve had some site in particular that as we delve further and further into the really bad coding, we are finding things that make the team here at dijitul physically sick.</p>
<p>For starters, they had themselves hard coded into it so that they were receiving any emails that were sent through the contact form on the site, and were being notified every time there was an order placed!</p>
<p>We found out yesterday that the cheeky buggers also hard coded themselves an admin account so that they can log in and check stuff whenever they want, too.</p>
<p>I guess when you don&#8217;t know much about the internet and things like online shops &#8211; you don&#8217;t know what to look for or ask for when you have one built. Just be wary &#8211; and if you are spending a lot of money having something developed then make sure you go with a reputable company who will speak to you in plain English.</p>
<p>Also, unless you truly need to &#8211; stay away from customised shopping cart platforms &#8211; as they might tick all the boxes now, but in 6 month/1 year down the line they will need changing/updating and it costs a lot of money. Pre-made software is usually modular, so things can be added and removed fairly easily.</p>
<p><a title="Contact us" href="http://www.dijitul.co.uk/contact/">Would you like a quote for a new online shop?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/cheeky-hardcoded-access-clients-ecommerce-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Probably an incorrect setting for the filesystem.rootpath option.</title>
		<link>http://www.dijiblog.co.uk/probably-an-incorrect-setting-for-the-filesystem-rootpath-option/</link>
		<comments>http://www.dijiblog.co.uk/probably-an-incorrect-setting-for-the-filesystem-rootpath-option/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 15:23:14 +0000</pubDate>
		<dc:creator>Olly</dc:creator>
				<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[tinymce]]></category>
		<category><![CDATA[using outsourced partners]]></category>
		<category><![CDATA[wysiwyg]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=92</guid>
		<description><![CDATA[From time to time we work with developers on certain jobs &#8211; some like to use the same software we do (wordpress, cubecart, etc) but others like to use their own software &#8211; and one developer in question helped us with a couple of awesome projects -and for them we used his home-made framework. There [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time we work with developers on certain jobs &#8211; some like to use the same software we do (wordpress, cubecart, etc) but others like to use their own software &#8211; and one developer in question helped us with a couple of awesome projects -and for them we used his home-made framework.</p>
<p>There are limitations to this developers software, as it is what it is. With wordpress you can bolt so much stuff on to it you can literally get it doing whatever you want. <img class="alignleft size-full wp-image-93" title="tinymcelogo" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/02/tinymcelogo.jpg" alt="" width="263" height="155" />However, this framework suited the job in hand perfectly and if it wasn&#8217;t for one small issue it would be totally flawless.</p>
<p>The site in question uses the <a href="http://tinymce.moxiecode.com/" target="_self">TinyMCE</a> WYSIWYG editor for when adding/editing content to pages and blog posts. Everything works fine, but when the user went to upload an image they got the following error;</p>
<p>&#8220;The specified path is not a directory. Probably an incorrect setting for the filesystem.rootpath option.&#8221;</p>
<p>We did some google searching, found two config.php files in the admin folder (once in tiny_mce, and one just below it) we altered the filesystem.roothpath option in both, and bingo.</p>
<p>The problem was that it was set to a different absolute path in both config.php files &#8211; one was pointing to the OTHER site we had developed by this guy, and one was correct.</p>
<p>The lesson we learned here was that when we partner with people to work on projects with, do more research on them and maybe even talk to previous customers of theirs!</p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/probably-an-incorrect-setting-for-the-filesystem-rootpath-option/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Application Update List SCAM!</title>
		<link>http://www.dijiblog.co.uk/facebook-application-update-list-scam/</link>
		<comments>http://www.dijiblog.co.uk/facebook-application-update-list-scam/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 11:34:56 +0000</pubDate>
		<dc:creator>Olly</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[dont believe the hype]]></category>
		<category><![CDATA[facebook scams]]></category>
		<category><![CDATA[scam emails]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=82</guid>
		<description><![CDATA[We&#8217;ve been around the e-Block a few times &#8211; what we mean by this is we have seen and witnessed nearly every type of online scam going. So much so we can spot them a mile away! I received an email this morning from what appeared to be Facebook &#8211; but on closer inspection it [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been around the e-Block a few times &#8211; what we mean by this is we have seen and witnessed nearly every type of online scam going. So much so we can spot them a mile<img class="alignright size-full wp-image-83" title="Scam!" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/01/Loan-Modification-Scam.jpg" alt="" width="180" height="180" /> away!</p>
<p>I received an email this morning from what appeared to be Facebook &#8211; but on closer inspection it turns out it was in fact a scam. There are a few things to look out for when deciding whether or not something is dodgy, here&#8217;s what to look out for.</p>
<p>a) Were you expecting the email? Have you added yourself to/joined any &#8220;Lists&#8221;</p>
<p>b) Is the email mentioned in the email already your facebook email account?</p>
<p>c) Are the links pointing to facebook.com?</p>
<p>There is of course the styling of the email that is questionable too &#8211; most emails from Facebook are styled with the facebook logos and the usual facebook blue colours. This email was plain text.</p>
<p>Here&#8217;s a screenshot of the offending email;</p>
<p><a href="http://www.dijiblog.co.uk/wp-content/uploads/2010/01/facebook-confirm-your-subscription-application-update-list.jpg" rel="wp-prettyPhoto[g82]"><img class="aligncenter size-full wp-image-84" title="facebook confirm your subscription application update list" src="http://www.dijiblog.co.uk/wp-content/uploads/2010/01/facebook-confirm-your-subscription-application-update-list.jpg" alt="" width="587" height="441" /></a></p>
<p>Upon receipt of this scam email i noticed straight away that the link URL was wrong. Facebook will NEVER send out an email with a link containing an IP address! It would almost always be facebook.com &#8211; so if you see that then DELETE IT. I also noticed the email account it was sent from, kingsib@gmail.com &#8211; that&#8217;s most certainly not a Facebook official email account now is it?!</p>
<p>Another thing that struck me as being strange is that it was referencing an old email account that i hardly use any more. I would never ask for my Maxxd.com email to be added to facebook &#8211; so again, this caused the red flags to go up straight away.</p>
<p>It just smelled fishy &#8211; and if you ever receive an email like this then either SPAM it, or report it as &#8220;<a title="Definition from Wikipedia" href="http://en.wikipedia.org/wiki/Phishing" target="_blank">Phishing</a>&#8221; (Under the little arrow next to Reply in Gmail)</p>
<p>If your still not sure &#8211; do some google searching and you should find what you need to put your mind at rest <img src='http://www.dijiblog.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/facebook-application-update-list-scam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fraudster pretends to be FreeIndex!</title>
		<link>http://www.dijiblog.co.uk/fraudster-pretends-to-be-freeindex/</link>
		<comments>http://www.dijiblog.co.uk/fraudster-pretends-to-be-freeindex/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 21:27:40 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[free index scam]]></category>
		<category><![CDATA[freeindex scam]]></category>

		<guid isPermaLink="false">http://www.dijiblog.co.uk/?p=71</guid>
		<description><![CDATA[FreeIndex have been made aware that a company or an individual has made several phone calls to businesses on the FreeIndex website asking for credit card details for payment relating to their FreeIndex listing and profile. FreeIndex are assuring all users that this is no way connected to FreeIndex, and if you receive this sort [...]]]></description>
			<content:encoded><![CDATA[<p>FreeIndex have been made aware that a company or an individual has made several phone calls to businesses on the FreeIndex website asking for credit card details for payment relating to their FreeIndex listing and profile.</p>
<p>FreeIndex are assuring all users that this is no way connected to FreeIndex, and if you receive this sort of phone call, do not hand over any credit card details or make payment in any way. FreeIndex does not charge businesses to be listed on the directory, full stop.</p>
<p>The built in cold call protection which was integrated into FreeIndex earlier this year should stop them from making a large volume of calls, but if you do receive a call we would very grateful if you could get as much information as possible about them, e.g. Location, individuals name etc, and then let the FreeIndex team know so they can try and take action.</p>
<p>Thanks<br />
(on behalf of the FreeIndex Team)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dijiblog.co.uk/fraudster-pretends-to-be-freeindex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

