<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Hexperts</title>
	
	<link>http://www.hexperts.com</link>
	<description>...cus we spult it wrung</description>
	<pubDate>Mon, 27 Apr 2009 07:49:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Hexperts" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>How to create a symlink when you don’t have shell access (WP-Cache issue)</title>
		<link>http://feedproxy.google.com/~r/Hexperts/~3/3MsGxHGK9iA/</link>
		<comments>http://www.hexperts.com/2008/12/09/how-to-create-a-symlink-when-you-dont-have-shell-access-wp-cache-issue/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 22:33:54 +0000</pubDate>
		<dc:creator>Forbairt</dc:creator>
		
		<category><![CDATA[*nix]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[filezilla]]></category>

		<category><![CDATA[symlink]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[wp-cache]]></category>

		<guid isPermaLink="false">http://www.hexperts.com/?p=29</guid>
		<description><![CDATA[Earlier today I needed to create a symlink in order to get WP-Cache working.
Unfortunately a simple

ln -s target link

wasn&#8217;t an option as I didn&#8217;t have shell access.
So in usual fashion I have to use a php script and chmod the directory permissions to 777 in this case


&#60;?php
$target = &#8216;/public_html/wp-content/plugins/wp-cache/wp-cache-phase1.php&#8217;;
$link = &#8216;/public_html/wp-content/advanced-cache.php&#8217;;
symlink($target, $link);
echo(readlink($link));
?&#62;
Of course php symlink [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier today I needed to create a symlink in order to get WP-Cache working.</p>
<p>Unfortunately a simple<br />
<code><br />
ln -s target link<br />
</code><br />
wasn&#8217;t an option as I didn&#8217;t have shell access.</p>
<p>So in usual fashion I have to use a php script and chmod the directory permissions to 777 in this case</p>
<p><code><br />
</code><br />
&lt;?php<br />
$target = &#8216;/public_html/wp-content/plugins/wp-cache/wp-cache-phase1.php&#8217;;<br />
$link = &#8216;/public_html/wp-content/advanced-cache.php&#8217;;<br />
symlink($target, $link);</p>
<p>echo(readlink($link));</p>
<p>?&gt;</p>
<p>Of course php symlink can do some funny things so maybe its a case of using the exec command.</p>
<p>&lt;?php<br />
exec(&#8217;ln -s /public_html/wp-content/advanced-cache.php /public_html/wp-content/plugins/wp-cache/wp-cache-phase1.php&#8217;)</p>
<p>?&gt;<br />
Really whichever works for you at the end of the day. This worked for me</p>
<img src="http://feeds.feedburner.com/~r/Hexperts/~4/3MsGxHGK9iA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hexperts.com/2008/12/09/how-to-create-a-symlink-when-you-dont-have-shell-access-wp-cache-issue/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hexperts.com/2008/12/09/how-to-create-a-symlink-when-you-dont-have-shell-access-wp-cache-issue/</feedburner:origLink></item>
		<item>
		<title>upgrading from 1.2.4 to 1.4.1 in CMSMS ( CMS Made Simple ) causes the templates to die</title>
		<link>http://feedproxy.google.com/~r/Hexperts/~3/SVtMHJdAM1E/</link>
		<comments>http://www.hexperts.com/2008/12/01/upgrading-from-124-to-141-in-cmsms-cms-made-simple-causes-the-templates-to-die/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 23:55:33 +0000</pubDate>
		<dc:creator>Forbairt</dc:creator>
		
		<category><![CDATA[CMSMS]]></category>

		<category><![CDATA[CMS Made Simple]]></category>

		<category><![CDATA[Upgrade issue]]></category>

		<guid isPermaLink="false">http://www.hexperts.com/?p=27</guid>
		<description><![CDATA[Well in case this has happened to you the solution is handy enough. Though why the problem I&#8217;m not entirely sure.
For some reason a column &#8220;assoc_order&#8221; is missing in the &#8220;css_assoc&#8221; table.
To fix this (probably handies via phpmyadmin go in and alter the table structure and add a new column of type int(11) and Null.
The [...]]]></description>
			<content:encoded><![CDATA[<p>Well in case this has happened to you the solution is handy enough. Though why the problem I&#8217;m not entirely sure.</p>
<p>For some reason a column &#8220;assoc_order&#8221; is missing in the &#8220;css_assoc&#8221; table.</p>
<p>To fix this (probably handies via phpmyadmin go in and alter the table structure and add a new column of type int(11) and Null.</p>
<p>The upgrade went smoothly enough. Database schema was all fine and dandy but for some reason it was not loading the style sheets and this would appear to be the reason</p>
<img src="http://feeds.feedburner.com/~r/Hexperts/~4/SVtMHJdAM1E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hexperts.com/2008/12/01/upgrading-from-124-to-141-in-cmsms-cms-made-simple-causes-the-templates-to-die/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hexperts.com/2008/12/01/upgrading-from-124-to-141-in-cmsms-cms-made-simple-causes-the-templates-to-die/</feedburner:origLink></item>
		<item>
		<title>Free CSS book</title>
		<link>http://feedproxy.google.com/~r/Hexperts/~3/6wflzD02gro/</link>
		<comments>http://www.hexperts.com/2008/11/18/free-css-book/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 09:42:39 +0000</pubDate>
		<dc:creator>Forbairt</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Free Things]]></category>

		<category><![CDATA[Free CSS Book]]></category>

		<category><![CDATA[Free PDF]]></category>

		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://www.hexperts.com/?p=25</guid>
		<description><![CDATA[Site point is having a give away at the moment
You can get the Art &#38; Science of CSS for free (PDF download) from their site.
The link is http://twitaway.aws.sitepoint.com/ There seems to be some issues with the following and getting a link to it hopefully they&#8217;ll iron it out shortly.
Either way free book and worth a [...]]]></description>
			<content:encoded><![CDATA[<p>Site point is having a give away at the moment</p>
<p>You can get the Art &amp; Science of CSS for free (PDF download) from their site.</p>
<p>The link is <a title="The Art &amp; Science of CSS" href="http://twitaway.aws.sitepoint.com/">http://twitaway.aws.sitepoint.com/</a> There seems to be some issues with the following and getting a link to it hopefully they&#8217;ll iron it out shortly.</p>
<p>Either way free book and worth a free download <img src='http://www.hexperts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/Hexperts/~4/6wflzD02gro" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hexperts.com/2008/11/18/free-css-book/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hexperts.com/2008/11/18/free-css-book/</feedburner:origLink></item>
		<item>
		<title>The absolute path / relative path doesn’t work with CMSMS / CMS Made Simple</title>
		<link>http://feedproxy.google.com/~r/Hexperts/~3/UxgJHGqGp1U/</link>
		<comments>http://www.hexperts.com/2008/11/12/the-absolute-path-relative-path-doesnt-work-with-cmsms-cms-made-simple/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 14:18:50 +0000</pubDate>
		<dc:creator>Forbairt</dc:creator>
		
		<category><![CDATA[CMSMS]]></category>

		<category><![CDATA[Absolute Paths]]></category>

		<category><![CDATA[base]]></category>

		<category><![CDATA[CMS Made Simple]]></category>

		<category><![CDATA[Relative paths]]></category>

		<guid isPermaLink="false">http://www.hexperts.com/?p=23</guid>
		<description><![CDATA[This has just eaten the better part of an hour for me  
I&#8217;ve running a lot of installs of CMS Made Simple ( CMSMS ) and any of the images I was adding were appearing fine on my admin section when I was adding them to the page in edit mode.
Of course I&#8217;ve a [...]]]></description>
			<content:encoded><![CDATA[<p>This has just eaten the better part of an hour for me <img src='http://www.hexperts.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>I&#8217;ve running a lot of installs of CMS Made Simple ( CMSMS ) and any of the images I was adding were appearing fine on my admin section when I was adding them to the page in edit mode.</p>
<p>Of course I&#8217;ve a load of sites out there and I couldn&#8217;t see the difference between them apart from thinking oh I&#8217;ve got this on a different server the apache config / mod rewrite has to be different.<br />
So I&#8217;ve just spent the better part of an hour going through all the settings in the cpanel &#8230; .htaccess files and config files.</p>
<p>Anyways to cut a long story short.</p>
<p>Make sure your template includes the {metadata} tag</p>
<p>Which of course includes the <base /> tag which tells urls like uploads/images/logo.png what path to start from. <base href="http://www.hexperts.com/" /> for example.</p>
<p>Hope that saves people some agonizing. </p>
<img src="http://feeds.feedburner.com/~r/Hexperts/~4/UxgJHGqGp1U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hexperts.com/2008/11/12/the-absolute-path-relative-path-doesnt-work-with-cmsms-cms-made-simple/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hexperts.com/2008/11/12/the-absolute-path-relative-path-doesnt-work-with-cmsms-cms-made-simple/</feedburner:origLink></item>
		<item>
		<title>How can I reset the auto index with phpMyAdmin?</title>
		<link>http://feedproxy.google.com/~r/Hexperts/~3/331QEhYZ4Uk/</link>
		<comments>http://www.hexperts.com/2008/11/11/how-can-i-reset-the-auto-index-with-phpmyadmin/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 23:14:58 +0000</pubDate>
		<dc:creator>Forbairt</dc:creator>
		
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.hexperts.com/?p=19</guid>
		<description><![CDATA[Well there I was tonight I&#8217;d wiped out the entries of various tables only to realise the auto index was stuck at 99 for the next extra.
The solution to resetting it back to one using phpmyadmin (short of entering in an sql statment) when viewing the list of the tables tick the table (that of [...]]]></description>
			<content:encoded><![CDATA[<p>Well there I was tonight I&#8217;d wiped out the entries of various tables only to realise the auto index was stuck at 99 for the next extra.</p>
<p>The solution to resetting it back to one using phpmyadmin (short of entering in an sql statment) when viewing the list of the tables tick the table (that of course you&#8217;ve emptied and want to reset or empty) and from the drop down select empty.</p>
<p>A minor thing but it saved me a bit of hastle tonight and will come in handy again as I&#8217;ll be resetting tables in this database quite often.</p>
<img src="http://feeds.feedburner.com/~r/Hexperts/~4/331QEhYZ4Uk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hexperts.com/2008/11/11/how-can-i-reset-the-auto-index-with-phpmyadmin/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hexperts.com/2008/11/11/how-can-i-reset-the-auto-index-with-phpmyadmin/</feedburner:origLink></item>
		<item>
		<title>How can I change my php settings with .htaccess files</title>
		<link>http://feedproxy.google.com/~r/Hexperts/~3/_Nno94uBeSs/</link>
		<comments>http://www.hexperts.com/2008/11/05/how-can-i-change-my-php-settings-with-htaccess-files/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 17:32:05 +0000</pubDate>
		<dc:creator>Forbairt</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.hexperts.com/?p=17</guid>
		<description><![CDATA[A great thing about .htaccess is the ability to alter a few of the settings for php. These days a lot of the content management systems are getting pretty hefty and the default apache / php config just isn&#8217;t cutting it anymore.
If you find yourself needing to up some of the settings well you may [...]]]></description>
			<content:encoded><![CDATA[<p>A great thing about .htaccess is the ability to alter a few of the settings for php. These days a lot of the content management systems are getting pretty hefty and the default apache / php config just isn&#8217;t cutting it anymore.</p>
<p>If you find yourself needing to up some of the settings well you may not want to do it for all your sites on the server. You may also not have access to the php.ini settings file. If you find yourself in this boat why try the following and see if it helps.</p>
<p>Into your .htaccess file put:</p>
<p><code>php_value memory_limit 128M<br />
php_value max_execution_time 60</p>
<p>php_value safe_mode Off</code></p>
<p>Of course you&#8217;ll only want to tweak the settings you need.</p>
<p>You can find more at <a title="PHP configuration" href="http://us2.php.net/configuration.changes">http://us2.php.net/configuration.changes</a></p>
<p>edit: I added in php_value safe_mode (12th November 2008)</p>
<img src="http://feeds.feedburner.com/~r/Hexperts/~4/_Nno94uBeSs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hexperts.com/2008/11/05/how-can-i-change-my-php-settings-with-htaccess-files/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hexperts.com/2008/11/05/how-can-i-change-my-php-settings-with-htaccess-files/</feedburner:origLink></item>
		<item>
		<title>How do I find a file on my linux server.</title>
		<link>http://feedproxy.google.com/~r/Hexperts/~3/pkAry5ttoKw/</link>
		<comments>http://www.hexperts.com/2008/10/30/how-do-i-find-a-file-on-my-linux-server/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 18:00:26 +0000</pubDate>
		<dc:creator>Forbairt</dc:creator>
		
		<category><![CDATA[*nix]]></category>

		<guid isPermaLink="false">http://www.hexperts.com/?p=12</guid>
		<description><![CDATA[I don&#8217;t use linux all the time. I do quite like the power of the shell though  
I&#8217;ve got a Mac so I quite like getting down dirty with things and having commands to &#8220;find&#8221; things easily.
However I realised quite recently I wasn&#8217;t too sure offhand how to find a file on a linux [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t use linux all the time. I do quite like the power of the shell though <img src='http://www.hexperts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve got a Mac so I quite like getting down dirty with things and having commands to &#8220;find&#8221; things easily.</p>
<p>However I realised quite recently I wasn&#8217;t too sure offhand how to find a file on a linux system. My VPS that I regularly ssh into doesn&#8217;t exactly have a nice file manager for the system files (at least I&#8217;ve not found it yet) So I was quite happy to be able to use the following</p>
<p><code>find / -name "filename"</code></p>
<p>in my case I was looking for my httpd.conf so I simply put in</p>
<p><code>find / -name "httpd.conf"</code></p>
<p>Basically search for httpd.conf from the root folder /<br />
Pretty obvious I know if you regularly use linux</p>
<img src="http://feeds.feedburner.com/~r/Hexperts/~4/pkAry5ttoKw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hexperts.com/2008/10/30/how-do-i-find-a-file-on-my-linux-server/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hexperts.com/2008/10/30/how-do-i-find-a-file-on-my-linux-server/</feedburner:origLink></item>
		<item>
		<title>How can I query a name server for my domain?</title>
		<link>http://feedproxy.google.com/~r/Hexperts/~3/gGFt875sAbM/</link>
		<comments>http://www.hexperts.com/2008/10/30/how-can-i-query-a-name-server-for-my-domain/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 13:03:42 +0000</pubDate>
		<dc:creator>Forbairt</dc:creator>
		
		<category><![CDATA[Domains]]></category>

		<category><![CDATA[Featured Articles.]]></category>

		<guid isPermaLink="false">http://www.hexperts.com/?p=7</guid>
		<description><![CDATA[Yesterday I updated the IP on one of my domains on a VPS and I was wondering if the changes on the VPS were being picked up by the associated Nameservers.
A quick check of the man pages for dig and I found its
dig @namerserver mydomain
Of course it still took about 30 minutes for the name [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I updated the IP on one of my domains on a VPS and I was wondering if the changes on the VPS were being picked up by the associated Nameservers.</p>
<p>A quick check of the man pages for dig and I found its</p>
<p><code>dig @namerserver mydomain</code></p>
<p>Of course it still took about 30 minutes for the name servers to update. Still it was nice to be able to verify that the name servers had updated and that it was just a case now of waiting for the changes to propagate</p>
<img src="http://feeds.feedburner.com/~r/Hexperts/~4/gGFt875sAbM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hexperts.com/2008/10/30/how-can-i-query-a-name-server-for-my-domain/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hexperts.com/2008/10/30/how-can-i-query-a-name-server-for-my-domain/</feedburner:origLink></item>
		<item>
		<title>and just like that there was hexperts…</title>
		<link>http://feedproxy.google.com/~r/Hexperts/~3/4lGidZQLpJA/</link>
		<comments>http://www.hexperts.com/2008/10/30/hello-world/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 12:16:15 +0000</pubDate>
		<dc:creator>Forbairt</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.hexperts.com/?p=1</guid>
		<description><![CDATA[I registered hexperts a long time ago and since then I&#8217;ve had great plans for it. Unfortunately I&#8217;ve got a design but I didn&#8217;t have the content management system. I&#8217;ve got the content management system now at least so I can work on templating it at a later date. For the moment I&#8217;ll just concentrate [...]]]></description>
			<content:encoded><![CDATA[<p>I registered hexperts a long time ago and since then I&#8217;ve had great plans for it. Unfortunately I&#8217;ve got a design but I didn&#8217;t have the content management system. I&#8217;ve got the content management system now at least so I can work on templating it at a later date. For the moment I&#8217;ll just concentrate on getting some useful content in there. Useful for me as I can look back &#8230; maybe useful for you as you&#8217;re encountering the same problem who knows.</p>
<p>In the mean time welcome to the site.</p>
<p>James</p>
<img src="http://feeds.feedburner.com/~r/Hexperts/~4/4lGidZQLpJA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hexperts.com/2008/10/30/hello-world/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hexperts.com/2008/10/30/hello-world/</feedburner:origLink></item>
	</channel>
</rss>
