<?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>WordPress and Wishlist Member plugin and theme &#187; WishList Member Tips</title>
	<atom:link href="http://hecode.com/category/wishlist-member/feed/" rel="self" type="application/rss+xml" />
	<link>http://hecode.com</link>
	<description>WordPress Professional Solutions - Wishlist Member advanced -  – SEO Consulting Services - Plugins and WP Theme</description>
	<lastBuildDate>Wed, 10 Aug 2011 04:05:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Insert a member into your WordPress remotely by using WishList member REST API</title>
		<link>http://hecode.com/how-to-insert-a-member-into-your-wordpress-remotely-by-using-wishlist-member-restapi/</link>
		<comments>http://hecode.com/how-to-insert-a-member-into-your-wordpress-remotely-by-using-wishlist-member-restapi/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 17:46:09 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[WishList Member Tips]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=561</guid>
		<description><![CDATA[Do you know you can add new member to your wordpress without even visiting your WordPress website? Sound unreal? yeah. but here is an example that shows how you can use  WishList Member reset Interface to insert a user into your WordPress remotely. Try following code, remember to replace your site url and your Wishlist [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
<p>Do you know you can add new member to your wordpress without even visiting your WordPress website? Sound unreal? yeah. but here is an example that shows how you can use <a href="http://hecode.com/wlm"> WishList Member</a> reset Interface to insert a user into your WordPress remotely.<br />
<span id="more-561"></span><br />
Try following code, remember to replace your site url and your  Wishlist Member Secret Word.<br />
Example: http://screencast.com/t/Cq8sMmkwF</p>
<p>Ok here is a example code to insert a member into your WordPress remotely by using WishList member REST  API interface. </p>
<pre class="brush: php">&lt;?php
/*
Example by Andy ( hecode.com)

AddUser( string $username, string $email, string $password, [string $firstname=''], [string $lastname=''] )

Add a new user to WishList Member. This functions requires 5 parameters:

   1. string $username the username for the new user
   2. string $email  the email address for the new user
   3. string $password  the password for the new user
   4. string $firstname  the first name of the new user
   5. string $lastname  the last name of the new user
*/
$Fxn = 'AddUser';
$username=&quot;andydepp&quot;;
$email=&quot;andy@example.com&quot;;
$password=&quot;mypassword&quot;;
$firstname=&quot;Andy&quot;;
$lastname=&quot;Depp&quot;;
//echo $URL;

$params = array ($username,$email,$password,$firstname,$lastname);
$Key = md5 ($Fxn . '__' . $Secret . '__' . implode ('|',$params));

$URL=&quot;http://wp3db.com/?WLMAPI=$Fxn/$Key/$username/$email/$password/$firstname/$lastname&quot;;

$ch = curl_init ($URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$RESTReturn = curl_exec($ch);
curl_close($ch);


echo '&lt;br /&gt; return value=' . $RESTReturn .&quot;&lt;br /&gt;&quot;;

list ($status, $return) = unserialize ($RESTReturn);
 if ($status) {
 // successful- do something useful here
 var_dump ($return);
 } else {
 // failed, show error message
 echo $return;
 }
?&gt;</pre>
<p>Note: If your secret word or   parameters or  order of parameters  are wrong you will get a message like a:2:{i:0;b:0;i:1;s:20:”AUTHORIZATION FAILED”;}</p>
<p>If everything was fine you will get a message like:</p>
<p>return value=a:2:{i:0;b:1;i:1;i:5;}<br />
int(5) </p>
<p>That shows new user  with user id = 5 is created.</p>
<p>Need more guide? <a href="http://hecode.com/wlm">Visit WishList Member</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/how-to-insert-a-member-into-your-wordpress-remotely-by-using-wishlist-member-restapi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a membership level to wordpress member remotely?</title>
		<link>http://hecode.com/how-to-add-a-membership-level-to-wordpress-member-remotely/</link>
		<comments>http://hecode.com/how-to-add-a-membership-level-to-wordpress-member-remotely/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 17:04:53 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[WishList Member Tips]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=554</guid>
		<description><![CDATA[Wishlist Member have a API that allow us to take control of WordPress core functions and do what we want by using simple line of code. but that is not all. You can do even  control your WordPress remotely. How it feel to add a new member ship level to your current WordPress member from [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
<p><a href="http://hecode.com/wlm">Wishlist Member have a API</a> that allow us to take control of WordPress core functions and do what we want by using simple line of code. but that is not all. You can do even  control your WordPress remotely. How it feel to add a new member ship level to your current WordPress member from another website? possibles are unlimited. Fortunately it is very simple than you think. here are an example to show you how you can do it yourself.<br />
<span id="more-554"></span></p>
<p>The same functions available to WishList Member extensions can be made available to remote applications via a simple to use REST interface.  This allows developers to create a lot of different applications that control a particular WishList Member powered website remotely.</p>
<p>Lets start:</p>
<p>Silver user have no level    http://screencast.com/t/OJyWmWyrNjnl</p>
<p>I want to add  Silver level to this user remotely.</p>
<pre class="brush: php">&lt;?php
$Fxn = 'AddUserLevels';
$Secret = 'BIKLOQRhGKLManqs';
$txnid=&quot;my-txnid-999&quot;;
$user=2;
$params = array ($user,1288000826,$txnid);
$Key = md5 ($Fxn . '__' . $Secret . '__' . implode ('|',$params));

$URL=&quot;http://example.com/?WLMAPI=$Fxn/$Key/$user/1288000826/$txnid&quot;;

//echo $URL;

$ch = curl_init ($URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$RESTReturn = curl_exec($ch);      
curl_close($ch);


echo '&lt;br /&gt; return value=' . $RESTReturn .&quot;&lt;br /&gt;&quot;;

list ($status, $return) = unserialize ($RESTReturn);
 if ($status) {
 // successful do something useful here
 var_dump ($return);
 } else {
 // failed, show error message
 echo $return;
 }

?&gt;</pre>
<p>Simply create a php file with name addlevel.php and copy past similar code. We need copy our file to a php enabled server and run it.</p>
<p>by visiting our file url ( for example Http://example.com/addlevel.php) , Silver user will be added to &#8220;silver&#8221;  Member ship level remotely.<br />
Example:  http://screencast.com/t/9JfscW39Qaf</p>
<p>How it works?</p>
<p>A) We want to call &#8220;AddUserLevels&#8221; remotely.  You can call this function to add a level right inside your wordpress theme or plugin cod when wishlist member plugin is activated. but here we want to call it from another website or perhaps a standalone php file that have nothing to do with our wordpress installation.</p>
<p>B) What we need is user id  (which is 2 here) and level silver level id (which is 1288000826 here) . we also need Secret Word that you can get from Wishlist member integration tab.</p>
<p>Example: http://screencast.com/t/Cq8sMmkwF</p>
<p>Txnid is your shopping cart transaction_id, It can be anything at our example.</p>
<p>C) Replace your own similar variables. If you save it and run it. You will see a message like a:2:{i:0;b:1;i:1;b:1;} that shows result is successful.</p>
<p>If you echo $url value, you will see a url like</p>
<p>http://example.com/?WLMAPI=AddUserLevels/d8feb2f5ff2add0c558e768a4d6581b1/2/1288000826/my-txnid-999</p>
<p>Just   visiting above url is enough to add our user to silver level. we used curl to make it happen from inside our code.</p>
<p>Note: if your secret word or parameters are wrong you will get a message like a:2:{i:0;b:0;i:1;s:20:&#8221;AUTHORIZATION FAILED&#8221;;}</p>
<p>Note. Order of parameters are important.</p>
<p>More information can be found at <a href="http://hecode.com/wlm">Wishlistmember API Quide.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/how-to-add-a-membership-level-to-wordpress-member-remotely/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add new membership levels by using WishList Member API?</title>
		<link>http://hecode.com/how-to-add-new-membership-levels-by-using-wishlist-member-api/</link>
		<comments>http://hecode.com/how-to-add-new-membership-levels-by-using-wishlist-member-api/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 11:41:21 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[WishList Member Tips]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=533</guid>
		<description><![CDATA[WishList Member is a powerful WordPress plugin that allow to protect WordPress contents such as post or even files by adding levels to WordPress users.   It have friendly user interface and easy to us.  But you can go farther to do whatever you want using Wishlist member API.  Here I want to show you [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>WishList Member is a powerful WordPress plugin that allow to protect WordPress contents such as post or even files by adding levels to WordPress users.   It have friendly user interface and easy to us.  But you can go farther to do whatever you want using<a href="http://hecode.com/wlm"> Wishlist member API</a>.  Here I want to show you how easy you can add new levels directly from code.</p>
<p><span id="more-533"></span><br />
Example code:<br />
<pre class="brush: php">$my_user_id=2;

$mywlmapi= new WLMAPI();

echo &quot;&lt;h3&gt;1) we want to see user levels &lt;/h3&gt;&quot;;
echo &quot;&lt;pre&gt;&quot;;
$my_user_levels=$mywlmapi-&gt;GetUserLevels($my_user_id );
var_dump( $my_user_levels);
echo &quot;&lt;/pre&gt;&quot;;

echo &quot;&lt;h3&gt;2) we want see all levels details &lt;/h3&gt;&quot;;
echo &quot;&lt;pre&gt;&quot;;
$my_all_levels=$mywlmapi-&gt;GetLevels();
var_dump( $my_all_levels);
echo &quot;&lt;/pre&gt;&quot;;

echo &quot;&lt;h3&gt;3) we want to add a levels &lt;/h3&gt;&quot;;
echo &quot;&lt;br&gt;&lt;pre&gt;&quot;;
$AddUserLevelsresult=$mywlmapi-&gt;AddUserLevels($my_user_id, array('1288000851'));
var_dump( $AddUserLevelsresult);
echo &quot;&lt;/pre&gt;&quot;;

echo &quot;&lt;h3&gt;4) again we want to see user levels &lt;/h3&gt;&quot;;
echo &quot;&lt;pre&gt;&quot;;
$my_user_levels=$mywlmapi-&gt;GetUserLevels($my_user_id );
var_dump( $my_user_levels);
echo &quot;&lt;/pre&gt;&quot;; </pre></p>
<p>And here is example  output</p>
<pre class="brush: xml">1) we want to see user levels

array(1) {
[1288000826]=&gt;
string(6) &quot;silver&quot; &lt;-------- user with id=2 only have one level with level id= 1288000826 which is silver level
}

2) we want see all levels details

array(2) {
[1288000826]=&gt;
array(12) {
[&quot;name&quot;]=&gt;
string(6) &quot;silver&quot;
[&quot;url&quot;]=&gt;
string(6) &quot;Sdep89&quot;
[&quot;loginredirect&quot;]=&gt;
string(3) &quot;---&quot;
[&quot;afterregredirect&quot;]=&gt;
string(3) &quot;---&quot;
[&quot;noexpire&quot;]=&gt;
string(1) &quot;1&quot;
[&quot;upgradeTo&quot;]=&gt;
string(0) &quot;&quot;
[&quot;upgradeAfter&quot;]=&gt;
string(0) &quot;&quot;
[&quot;upgradeMethod&quot;]=&gt;
string(0) &quot;&quot;
[&quot;count&quot;]=&gt;
string(1) &quot;1&quot;
[&quot;role&quot;]=&gt;
string(10) &quot;subscriber&quot;
[&quot;levelOrder&quot;]=&gt;
string(0) &quot;&quot;
[&quot;ID&quot;]=&gt;
int(1288000826)
}
[1288000851]=&gt; &lt;----------- Golden level id that we want add it to user levels
array(10) {
[&quot;wpm_newid&quot;]=&gt;
string(10) &quot;1288000851&quot;
[&quot;name&quot;]=&gt;
string(6) &quot;golden&quot;
[&quot;url&quot;]=&gt;
string(6) &quot;NOWYj2&quot;
[&quot;loginredirect&quot;]=&gt;
string(3) &quot;---&quot;
[&quot;afterregredirect&quot;]=&gt;
string(3) &quot;---&quot;
[&quot;noexpire&quot;]=&gt;
string(1) &quot;1&quot;
[&quot;role&quot;]=&gt;
string(10) &quot;subscriber&quot;
[&quot;levelOrder&quot;]=&gt;
string(0) &quot;&quot;
[&quot;count&quot;]=&gt;
string(1) &quot;1&quot;
[&quot;ID&quot;]=&gt;
int(1288000851)
}
}

3) we want to add a levels

bool(true) &lt;--- level is added with no problem

4) again we want to see user levels

array(2) {
[1288000826]=&gt;
string(6) &quot;silver&quot;
[1288000851]=&gt;
string(6) &quot;golden&quot; &lt;-------- user now have two levels, silver and golden
}</pre>
<p><strong>Example Screenshots</strong><em>:</em></p>
<p>http://screencast.com/t/3YMSUOM4lxN</p>
<p>http://screencast.com/t/yWVDuhsxkF</p>
<p>http://screencast.com/t/w2jjp6Hcfg</p>
<p>http://screencast.com/t/2cXIgm15R</p>
<p>http://screencast.com/t/b3g2DzOGNEvH</p>
<p>Wonder what is<strong> Wishlist member wordpress plugin</strong> and what it can do?  <a href="http://hecode.com/wlm">check here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/how-to-add-new-membership-levels-by-using-wishlist-member-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wishlist Member FAQ</title>
		<link>http://hecode.com/wishlist-member-faq/</link>
		<comments>http://hecode.com/wishlist-member-faq/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 20:47:41 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[WishList Member Tips]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=492</guid>
		<description><![CDATA[I created this page to answer your all kind of  questions about Wishlist Member WordPress plugin. Do you have any difficulty getting most of WishList member? Wonder how other site used Wishlist member and you wish to know that? Newbie and advanced  questions  are welcome. I answer all type of related question. Feel free to [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>I created this page to answer your all kind of  questions about <a title="Try wishlist list member plugin for wordpress" href="http://hecode.com/wlm">Wishlist Member WordPress plugin</a>. Do you have any difficulty getting most of WishList member? Wonder how other site used Wishlist member and you wish to know that? Newbie and advanced  questions  are welcome. I answer all type of related question. Feel free to ask you question via comment.</p>
<p>Thank you.</p>
<p>Andy</p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/wishlist-member-faq/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Why I Can not login via wp-admin but same time I can login from WP-login.php?</title>
		<link>http://hecode.com/why-i-can-not-login-via-wp-admin-but-same-time-i-can-by-wp-login-php/</link>
		<comments>http://hecode.com/why-i-can-not-login-via-wp-admin-but-same-time-i-can-by-wp-login-php/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 23:52:58 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[WishList Member Tips]]></category>
		<category><![CDATA[Wordpress Tips]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[wlm]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=299</guid>
		<description><![CDATA[I know how it feel, like no one know the solution. You like to pay everything you have, to find out why you can not login into your wordpress from wp-admin. And if you do it will redirect to same page without showing any message. but same time you can login into your wordpress from [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>I know how it feel, like no one know the solution. You like to pay everything you have, to find out why you can not login into your wordpress from wp-admin. And if you do it will redirect to same page without showing any message. but same time you can login into your wordpress from wp-login.php.  Sometime clearing the browser’s cookies might let us login again but to be honest  it’s a pain, and clearing your cookies isn’t a permanent fix and do not work everyone.</p>
<p>Answer is easy when you know the following two solutions.<span id="more-299"></span></p>
<p><strong>Solution1:  At   WordPress admin&#8211;&gt; Settings&#8211;&gt; General Settings:</strong></p>
<p>&#8220;WordPress address (URL)&#8221;  should be same as &#8220;Blog address (URL)&#8221;  You will love this simple tip if you are using <a title="get latest WLM here" href="http://member.wishlistproducts.com/wlp.php?af=1060219" target="_blank">Wishlist member wordpress plugin</a>. because no one know this except you and me!</p>
<p><strong>Solution2:  Fixing  issue with cookies.</strong></p>
<p>problem is that occasionally on our various WordPress sites the <strong>wp-admin.php </strong>URL login stops working and we can only login through <strong>wp-login.php</strong>.</p>
<p>What we need to do is to force WordPress to follow the correct cookie  path. This can be done by adding a small line of code to the  wp-config.php file located in your WordPress installation root  directory.</p>
<p>Open up wp-config.php in your web editor and add this:<br />
<code><br />
/** wp-admin login fix */<br />
@define('ADMIN_COOKIE_PATH', '/');<br />
</code></p>
<p>If you’re unsure, it can go just before the ?&gt; at the end of the  php code like so:</p>
<p><code>/** Sets up WordPress vars and included files. */<br />
require_once(ABSPATH . 'wp-settings.php');<br />
/** wp-admin login fix */<br />
@define('ADMIN_COOKIE_PATH', '/');<br />
?&gt;</code></p>
<p>Update:  Some reported WP Security Scan case this issue. Please test and confirm in comments if you are using WP Security Scan wordpress plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/why-i-can-not-login-via-wp-admin-but-same-time-i-can-by-wp-login-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to translate  Wishlist member plugin to your own language?</title>
		<link>http://hecode.com/how-to-translate-wordpress-wishlist-member-to-your-own-language/</link>
		<comments>http://hecode.com/how-to-translate-wordpress-wishlist-member-to-your-own-language/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 23:12:56 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[WishList Member Tips]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[translate]]></category>
		<category><![CDATA[wlm]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=283</guid>
		<description><![CDATA[Not everybody knows English.  Take advantage of your second language to enjoy more fresh members at your WordPress membership site.  Learn how to translate your WordPress and Wishlist member wordpress plugin to none English language. You can even translate your site to more than one language at same time. Here is how to do this. [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Not everybody knows English.  Take advantage of your second language to enjoy more fresh members at your WordPress membership site.  Learn how to translate your WordPress and <a href="/wlm" target="_blank">Wishlist member wordpress plugin</a> to none English language. You can even translate your site to more than one language at same time. Here is how to do this.<br />
<span id="more-283"></span></p>
<p>You have two option to translate your membership website. I explain both ways:</p>
<p><strong>How to translate Wishlist Member</strong><strong> when your site have only one none-english language?</strong></p>
<p><em>Step I. Creating the correct language file</em></p>
<p>1. Download poEdit at <a rel="nofollow" href="http://www.poedit.net/">www.poedit.net</a><br />
2. Open the file po file /plugins/wishlistmember/lang/wishlist-member-en_US.po<br />
3. Click File -&gt; Save As and change en_US to anything you want (i.e.  de for German) so that the filename becomes something like  wishlist-member-de.po<br />
4. Translate<br />
5. Click File -&gt; Save at same path</p>
<p>This now generates the correct .po and .mo files for your language.</p>
<p><em>Step II. Tell WordPress to use your language file</em></p>
<p>1. Edit wp-config.php<br />
2. Locate the line that says: define (&#8216;WPLANG&#8217;, &#8221;);<br />
3. Change it to: define (&#8216;WPLANG, &#8216;de&#8217;);<br />
(Note, use whatever language code you used when you made your  translation)<br />
4. Save wp-config.php</p>
<p>That&#8217;s all. enjoy your Membership website powered by WordPress and Wishlist member at your own language.</p>
<p><strong>Your site support more than one language at same time. </strong></p>
<p><em>Step I and II. Creating the correct language files</em></p>
<p>Same of above create po files for languages you need.</p>
<p>Step III. Writing same post/page at more than one language</p>
<p>You need to install the free<a href="http://wordpress.org/extend/plugins/qtranslate/  " target="_blank"> Q-Translate plugin</a> for WordPress. This plugin allow to write your post at more than one language. Simply you will have a multi  language membership website.</p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/how-to-translate-wordpress-wishlist-member-to-your-own-language/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>fixing Internal Server Error 500</title>
		<link>http://hecode.com/500-internal-server-error/</link>
		<comments>http://hecode.com/500-internal-server-error/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 21:43:31 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[WishList Member Tips]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[WishList]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=272</guid>
		<description><![CDATA[How to fix  Internal Server Error 500 after activating a WordPress plugin Solution is easy.  Keep reading. Some time when you try activate a wordpress plugin you will see Errot 500 Server. One of below steps will solve the issue. Your host php version probably  is 4. upgrading to php5+ will solve the problem.Wasn&#8217;t that [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
            <script type="text/javascript" src="http://hecode.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>How to fix  Internal Server Error 500 after activating a WordPress plugin</p>
<p>Solution is easy.  Keep reading.<span id="more-272"></span></p>
<p>Some time when you try activate a wordpress plugin you will see Errot 500 Server.</p>
<p>One of below steps will solve the issue.</p>
<ul>
<li>Your host php version probably  is 4. upgrading to php5+ will solve the problem.Wasn&#8217;t that easy?</li>
<li>Your upload is corrupted , try  re-uploading.</li>
<li>Your wordpress is out of memory. Try <a href="http://hecode.com/how-to-increase-php-wordpress-memory-limit/">Increasing WordPress memory limit</a>.</li>
<li>Try deactivate other plugins first. And activate them after all.</li>
</ul>
<p>How to upgrade your host from php4 to php5+;</p>
<p>Most host provide easy switch from php4 to php5. You will need contact your host to let you know how to do that.</p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/500-internal-server-error/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

