<?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>Seek A Shop</title>
	<atom:link href="http://www.seekashop.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seekashop.com</link>
	<description>World Business Announcements around the world</description>
	<lastBuildDate>Tue, 02 Feb 2010 10:55:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What are the optimal values for a heavy tomcat6 business application ?</title>
		<link>http://www.seekashop.com/2010/02/what-are-the-optimal-values-for-a-heavy-tomcat6-business-application/</link>
		<comments>http://www.seekashop.com/2010/02/what-are-the-optimal-values-for-a-heavy-tomcat6-business-application/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 10:55:34 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=468</guid>
		<description><![CDATA[The answer on this question is not easy. It depends on the business application and the requirements. There are few thing that you should know and that help for the first moments. Just in case that you have over thousand(s) of classes that should be loaded (and that is a common value) increase the -X:MaxPermSize [...]]]></description>
			<content:encoded><![CDATA[<p>The answer on this question is not easy. It depends on the business application and the requirements. There are few thing that you should know and that help for the first moments. Just in case that you have over thousand(s) of classes that should be loaded (and that is a common value) increase the -X:MaxPermSize to a value that is suitable for your application. The default value is 64MB and is optimal for small applications. </p>
<p>The Java Garabe Collector (GC) is running every time when some of the objects are not more used and have no references to other objects in use. If you have a problem with the performance of your application, please update the value for the heap size. The best is to set the starting heap size and maximum heap size to the same value, so i suggest to use -Xms1024m -Xmx1024m. The first option is for the starting heap size value and the second is for the max heap size value.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2010/02/what-are-the-optimal-values-for-a-heavy-tomcat6-business-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash History</title>
		<link>http://www.seekashop.com/2010/01/bash-history/</link>
		<comments>http://www.seekashop.com/2010/01/bash-history/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 08:53:22 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=466</guid>
		<description><![CDATA[If you use a linux desktop environment and constantly use bash in a terminal, you repeat some command every day  . To have access to the last 10.000 (yes, ten thousand commands) i have extened the HISTORY variable in my .bashrc.  
I have added this to .bashrc:

# HISTORY FILE
export HISTIGNORE="&#038;:[ ]*:exit"
export HISTSIZE=10000
export HISTCONTROL=erasedups

After [...]]]></description>
			<content:encoded><![CDATA[<p>If you use a linux desktop environment and constantly use bash in a terminal, you repeat some command every day <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . To have access to the last 10.000 (yes, ten thousand commands) i have extened the HISTORY variable in my .bashrc.  </p>
<p>I have added this to .bashrc:</p>
<p><code><br />
# HISTORY FILE<br />
export HISTIGNORE="&#038;:[ ]*:exit"<br />
export HISTSIZE=10000<br />
export HISTCONTROL=erasedups<br />
</code></p>
<p>After a while, here is the list of top 10 most used commands in bash:</p>
<p><code>$ history|awk '{print $2}'|awk 'BEGIN {FS="|"} {print $1}'|sort|uniq -c|sort -rn|head -10</code><br />
<code><br />
   1512 cd<br />
   1335 hg<br />
    869 ls<br />
    470 sudo<br />
    408 rm<br />
    391 ssh<br />
    353 less<br />
    274 mv<br />
    231 find<br />
    225 ant<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2010/01/bash-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 best practices for openssh, the secure way</title>
		<link>http://www.seekashop.com/2010/01/5-best-practices-for-openssh-the-secure-way/</link>
		<comments>http://www.seekashop.com/2010/01/5-best-practices-for-openssh-the-secure-way/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 09:16:58 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=462</guid>
		<description><![CDATA[If you have access or if you have unix (root) server in most cases you use ssh to login into the console. 
First of all, to avoid that a user is logged forever into the server, SSH can deal with an idle timeout interval. After this interval has passed, the idle user will be automatically [...]]]></description>
			<content:encoded><![CDATA[<p>If you have access or if you have unix (root) server in most cases you use ssh to login into the console. </p>
<p>First of all, to avoid that a user is logged forever into the server, SSH can deal with an idle timeout interval. After this interval has passed, the idle user will be automatically logged out.<br />
In /etc/ssh/sshd config file, enter:</p>
<p><code># vi /etc/ssh/sshd config </code></p>
<p>Find the variable ClientAliveInterval and set this to 300 seconds (5 minutes) as follows:<br />
<code><br />
ClientAliveInterval 300<br />
ClientAliveCountMax 0<br />
</code><br />
Save the file and restart ssh.  On debin like systems you have to issue:<br />
<code>/etc/init.d/sshd restart</code></p>
<p>Second, just disable login as root. </p>
<p>To disable root login via SSH, update your sshd_config again with the following line:</p>
<p><code>PermitRootLogin no</code></p>
<p>Third, only use the ssh protocol in version 2. ssh protocol version 1 should be avoided and disabled in ssh config.</p>
<p>Please open sshd_config file and make sure the following line exists or add it there:<br />
<code> Protocol 2 </code></p>
<p>Fourth best practice is to limit the number of users that can login to the server over ssh.</p>
<p>To only allow root, john and joe user to login via ssh please add the following to sshd_config file:</p>
<p><code>AllowUsers root john joe</code></p>
<p>Fifth, use strong passwords for your login.</p>
<p>Here is a simple but powerfull password generator function. Add this to your ~/.bashrc. </p>
<p><code><br />
passwdgen() {<br />
	local l=$1<br />
       	[ "$l" == "" ] &#038;&#038; l=20<br />
      	tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs<br />
}<br />
</code></p>
<p>You can pass a length argument to the passwdgen function:</p>
<p><code>$ passwdgen 15<br />
L0kyeSv2mSGQc31</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2010/01/5-best-practices-for-openssh-the-secure-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAMP Pro a strange issue</title>
		<link>http://www.seekashop.com/2009/12/mamp-pro-a-strange-issue/</link>
		<comments>http://www.seekashop.com/2009/12/mamp-pro-a-strange-issue/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 09:41:09 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=460</guid>
		<description><![CDATA[After upgrading to 1.8.4 MAMP PRO i had a strange issue. Starting Apache to listen on standard port 80 was not possible. The log file say that there was other process that is running on port 80. I have disabled the websharing in the firewall a year ago, so this was not the problem. 
$lsof [...]]]></description>
			<content:encoded><![CDATA[<p>After upgrading to 1.8.4 MAMP PRO i had a strange issue. Starting Apache to listen on standard port 80 was not possible. The log file say that there was other process that is running on port 80. I have disabled the websharing in the firewall a year ago, so this was not the problem. </p>
<p><code>$lsof -i:80</code> was my friend, and really there was a httpd listening on this port. After i have killed this process i was able to start Apache on port 80, trough MAMP PRO. Strange.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2009/12/mamp-pro-a-strange-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seek A Shop &#8211; New Design</title>
		<link>http://www.seekashop.com/2009/11/seek-a-shop-new-design/</link>
		<comments>http://www.seekashop.com/2009/11/seek-a-shop-new-design/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 10:09:36 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=458</guid>
		<description><![CDATA[Hi out there. Thanks for your support and your mails. Thanks for reading and commenting trough mail  . Now its time to make a new step forward. We must look forward and try to make our environment better  . Ok, here is the new design for this blog.
 Seek A Shop is powered [...]]]></description>
			<content:encoded><![CDATA[<p>Hi out there. Thanks for your support and your mails. Thanks for reading and commenting trough mail <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Now its time to make a new step forward. We must look forward and try to make our environment better <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Ok, here is the new design for this blog.<br />
 Seek A Shop is powered by WordPress and we use Grey Dove theme by Nyutech. Thanks in advance. </p>
<p>If you want to upgrade you blog/wordpress installation and don&#8217;t know how, there are few new options in WordPress that make this task easy for your. Look at &#8220;Apperance&#8221;, &#8220;Plugins&#8221;, &#8220;Tools&#8221; in your WordPress Dashboard <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . It&#8217;s great stuff there. Use it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2009/11/seek-a-shop-new-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What should America sell to avoid bankruptcy ?</title>
		<link>http://www.seekashop.com/2009/11/what-should-america-sell-to-avoid-bankruptcy/</link>
		<comments>http://www.seekashop.com/2009/11/what-should-america-sell-to-avoid-bankruptcy/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 13:31:36 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=448</guid>
		<description><![CDATA[They have few things that they could sell. Let say they want to sell the bomb. Not a good choice but if they want to sell it they will find 220 countries that want to have the bomb, if the neigborhood has it  . 1 Billion each and if America is a good salesman [...]]]></description>
			<content:encoded><![CDATA[<p>They have few things that they could sell. Let say they want to sell the bomb. Not a good choice but if they want to sell it they will find 220 countries that want to have the bomb, if the neigborhood has it <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . 1 Billion each and if America is a good salesman maybe 3-4 Billions for one of over 5000 bombs. OK, this is not possible, we know. But it&#8217;s one of last options that we should present here.</p>
<p>Do they have something else ? Sure, they have. We know that movie stars and the whole Hollywood production is making big money <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . If America sell this industry to, let say, India that would be great <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . Angelina Jolie and Brad Pitt in the sequel Mr. and Mrs. Ramakishwa, let&#8217;s dance and don&#8217;t shoot again. Imagine sequel Bourne Identity &#8211; Meaning of Life. OK, it&#8217;s maybe a bad joke but what will be th sequel if America sell the film industry to France. Bournce Identity &#8211; raison d&#8217;être  &#8230; Come on ! <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>What they should sell, really ? I have the answer and this is a simple one. They should sell something that they really not own. That&#8217;s the way they do and make politic last 60 years. They have sold us things that we had, again and again. There is an american that sold the Moon, and he don&#8217;t own the Moon <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>America should sell:</p>
<h2><strong>Taiwan</strong> </h2>
<p>to China. If the price is right <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8230;. Just imagine. At the moment both parties, China and Taiwan, have enough money, if America find in the diplomatic etablishment somebody that can talk and argument like Mr. Henry Kissinger in the 70&#8217;s, the deal will be perfect, in few days. </p>
<p>Something about the Political status of Taiwan can be read here:</p>
<p><a href="http://en.wikipedia.org/wiki/Political_status_of_Taiwan">http://en.wikipedia.org/wiki/Political_status_of_Taiwan<br />
</a></p>
<p>Look at the part:</p>
<h3>Possible military solutions and intervention</h3>
<p>Until 1979, both sides intended to resolve the conflict militarily.[citation needed] Intermittent clashes occurred throughout the 1950s and 1960s, with escalations comprising the First and Second Taiwan Strait crises. In 1979, with the U.S. change of diplomatic recognition to the PRC, the ROC lost its ally needed to &#8220;recover the mainland.&#8221; Meanwhile, the PRC&#8217;s desire to be accepted in the international community led it to promote peaceful unification under what would later be termed &#8220;one country, two systems,&#8221; rather than to &#8220;liberate Taiwan&#8221; and to make Taiwan a Special Administrative Region.</p>
<p>Political status vs. Taiwan issue</p>
<p>Some scholarly sources as well as political entities like the PRC refer to Taiwan&#8217;s controversial status as the &#8220;Taiwan question&#8221;, &#8220;Taiwan issue&#8221;, or &#8220;Taiwan problem&#8221; (台灣問題). The ROC government does not like these terminologies, emphasizing that it should be called the &#8220;Mainland issue&#8221; or &#8220;Mainland question&#8221;, because from the ROC&#8217;s point of view, the PRC is making an issue out of or creating a problem out of Taiwan. Others use the term &#8220;Taiwan Strait Question&#8221; because it implies nothing about sovereignty and because &#8220;Cross-Strait relations&#8221; is a term used by both the ROC and the PRC to describe their interactions. However, this term is also objectionable to some because it still implies that there is an issue, which they feel is created only by the PRC.</p>
<p>Maybe this is one of the reasons why Obama is visiting Peking this days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2009/11/what-should-america-sell-to-avoid-bankruptcy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Take a website offline, the easy way</title>
		<link>http://www.seekashop.com/2009/09/take-a-website-offline-the-easy-way/</link>
		<comments>http://www.seekashop.com/2009/09/take-a-website-offline-the-easy-way/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 07:23:01 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[offline page]]></category>
		<category><![CDATA[take site offline]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/2009/09/take-a-website-offline-the-easy-way/</guid>
		<description><![CDATA[If you have using some CMS that has not a module to manage taking a web site offline, then you can do that in a easy way using mod_rewrite rules.
Just backup your old .htaccess and add this  lines in you .htaccess on the begining :



RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/offline\.php$
RewriteRule ^(.*)$ /offline\.php [L]


Make a web [...]]]></description>
			<content:encoded><![CDATA[<p>If you have using some CMS that has not a module to manage taking a web site offline, then you can do that in a easy way using mod_rewrite rules.</p>
<p>Just backup your old .htaccess and add this  lines in you .htaccess on the begining :<br />
<strong><br />
<code><br />
<strong><br />
RewriteEngine On</strong><br />
<strong>RewriteBase /</strong><br />
<strong>RewriteCond %{REQUEST_URI} !^/offline\.php$</strong><br />
<strong>RewriteRule ^(.*)$ /offline\.php [L]</strong><br />
</strong><br />
</code></p>
<p>Make a web page with the name offline.php with information about why your site is offline (be nice to your visitors) and upload to the root of your document directory. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2009/09/take-a-website-offline-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu and vmplayer</title>
		<link>http://www.seekashop.com/2009/09/ubuntu-and-vmplayer/</link>
		<comments>http://www.seekashop.com/2009/09/ubuntu-and-vmplayer/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 07:04:39 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/2009/09/ubuntu-and-vmplayer/</guid>
		<description><![CDATA[I&#8217;m using a ubuntu installation for the daily work and after i have migrated my vmware installation from vmserver to vmplayer my network connection was broken. I got the message : The network bridge on device /dev/vmnet0 is not available.
Hm. After some googling i found the right tip  . Issue the command ifconfig -a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using a ubuntu installation for the daily work and after i have migrated my vmware installation from vmserver to vmplayer my network connection was broken. I got the message : The network bridge on device /dev/vmnet0 is not available.</p>
<p>Hm. After some googling i found the right tip <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Issue the command ifconfig -a and see if there are vmnetX (X stands for any number) interfaces or are they only eth0 and lo as interfaces marked (maybe also a wifi interface, if enabled).<br />
In the most cases there are not vmnet interfaces and you have to start this service with :</p>
<p>$ sudo /etc/init.d/vmware stop; sleep 2; sudo /etc/init.d/vmware start</p>
<p>This start script bring the interfaces up and when you start the vmplayer you will have a working ethernet connection.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2009/09/ubuntu-and-vmplayer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permission denied (publickey).</title>
		<link>http://www.seekashop.com/2009/09/permission-denied-publickey/</link>
		<comments>http://www.seekashop.com/2009/09/permission-denied-publickey/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 07:57:58 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=441</guid>
		<description><![CDATA[So i wanted to copy something from a machine B to machine A. But when i run
scp -r serverB:/something . 
server b responses : Permission denied (publickey).
To be able to scp from the second machine you have to edit the sshd_configuration there.
Set value for ChallengeResponseAuthentication to yes in the sshd_config and restart your sshd.
ChallengeResponseAuthentication yes
 [...]]]></description>
			<content:encoded><![CDATA[<p>So i wanted to copy something from a machine B to machine A. But when i run<br />
<code>scp -r serverB:/something . </code><br />
server b responses : <strong>Permission denied (publickey).</strong></p>
<p>To be able to scp from the second machine you have to edit the sshd_configuration there.</p>
<p>Set value for ChallengeResponseAuthentication to yes in the sshd_config and restart your sshd.</p>
<p>ChallengeResponseAuthentication yes</p>
<p> <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Best regards</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2009/09/permission-denied-publickey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox and USB hard disk</title>
		<link>http://www.seekashop.com/2009/09/virtualbox-and-usb-hard-disk/</link>
		<comments>http://www.seekashop.com/2009/09/virtualbox-and-usb-hard-disk/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 17:10:19 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=438</guid>
		<description><![CDATA[I want to upgrade my asus 500g premium router and use a external hard drive attached on the router as network device. The task is not so easy  . I have DDWRT on my router in the last stable version and everything is working great in my small WiFi network. There are couple of [...]]]></description>
			<content:encoded><![CDATA[<p>I want to upgrade my asus 500g premium router and use a external hard drive attached on the router as network device. The task is not so easy <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I have DDWRT on my router in the last stable version and everything is working great in my small WiFi network. There are couple of devices that share the DSL line. Now to attach a hard disk i have to prepare it for this task. Because of commodity i want to use HDsamba2 and this software want to have linux partitions on the hard disk. But i don&#8217;t have a linux computer. Hm, what to do ? The easy way is to download a linux distribution as a image and burn this on a cd/dvd or use usb stick to boot from this medium. But that is a easy way <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . The second, and my way is this:</p>
<p>I have a VirtualBox on my Mac and can run a guest operating system from a image also <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> , just add to the CD/DVD the image and run the virtual machine.</p>
<p>But, not every Linux distribution has enabled the usb support, but i have found this www.slitaz.org SliTaz Gnu/Linux distribution that is small and beautifull for use, and also has enabled usb support <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  that works <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>As virtual machine was up and running i plug-out and plug-in the hard disk. The system has recognized the hard disks and i was able to format<br />
the disk with the usual : fdisk /dev/sda <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2009/09/virtualbox-and-usb-hard-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAMP PRO and ioncube working on Snow Leopard</title>
		<link>http://www.seekashop.com/2009/09/mamp-pro-and-ioncube-working-on-snow-leopard/</link>
		<comments>http://www.seekashop.com/2009/09/mamp-pro-and-ioncube-working-on-snow-leopard/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 14:20:02 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=436</guid>
		<description><![CDATA[At the moment there seems to be a &#8220;bug&#8221; in ioncube and MAMP PRO installation. I have MAMP and MAMP Pro installed on a fresh Snow Leopard installation. The MAMP is working with the ioncube installed in the htdocs of my php application. If I change to MAMP PRO the application is not working and [...]]]></description>
			<content:encoded><![CDATA[<p>At the moment there seems to be a &#8220;bug&#8221; in ioncube and MAMP PRO installation. I have MAMP and MAMP Pro installed on a fresh Snow Leopard installation. The MAMP is working with the ioncube installed in the htdocs of my php application. If I change to MAMP PRO the application is not working and the error is that &#8220;ioncube is not installed&#8221;.<br />
<del datetime="2009-09-06T14:11:22+00:00"><br />
If somebody has a solution, please send me a mail to info at oglasi.com. Thanks in advance.</del></p>
<p>Ok,</p>
<p>i have found the solution. You have to edit the MAMP PRO php.ini file. How to find this file ? <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  It&#8217;s tricky,<br />
but here is the solution.<br />
When you start MAMP PRO go in the menu File-> Edit Template -> PHP5 php.ini . This is Command 4 on the keyboard and insert the line where you have installed ioncube at line 1085 or greater.<br />
And please be  sure the ioncube_loader_dar_5.2.so file is in that folder!</p>
<p>zend_extension=/usr/local/ioncube/ioncube_loader_dar_5.2.so</p>
<p>Yes, i have installed my ioncube in /usr/local/ and it&#8217;s working like it should <img src='http://www.seekashop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , now. Bye.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2009/09/mamp-pro-and-ioncube-working-on-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinchmedia is Spyware</title>
		<link>http://www.seekashop.com/2009/08/pinchmedia-is-spyware/</link>
		<comments>http://www.seekashop.com/2009/08/pinchmedia-is-spyware/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 15:49:14 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=427</guid>
		<description><![CDATA[And that is my opinion. 
I never heard about this firm, now i know they have a piece of software in my iphone. That piece of software is going to send any data about me to Pinchmedia, without my knowledge. It sucks. I will jailbreak my iphone and try to install iptables there and set [...]]]></description>
			<content:encoded><![CDATA[<p>And that is my opinion. </p>
<p>I never heard about this firm, now i know they have a piece of software in my iphone. That piece of software is going to send any data about me to Pinchmedia, without my knowledge. It sucks. I will jailbreak my iphone and try to install iptables there and set few chains. Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seekashop.com/2009/08/pinchmedia-is-spyware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
