<?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; Uncategorized</title>
	<atom:link href="http://hecode.com/category/uncategorized/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.2</generator>
		<item>
		<title>Why WordPress Asks for Connection Info when I try to install new plugin</title>
		<link>http://hecode.com/why-wordpress-asks-for-connection-info-when-i-try-to-install-new-plugin/</link>
		<comments>http://hecode.com/why-wordpress-asks-for-connection-info-when-i-try-to-install-new-plugin/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 12:44:04 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=531</guid>
		<description><![CDATA[One of the great features of WordPress is that it allows you to automatically install and upgrade plugins. A common problem is that WordPress is unable to access the filesystem directly, which results in a page indicating that &#8220;To perform the requested action, connection information is required.&#8221; learn how you can fix this If you [...]]]></description>
			<content:encoded><![CDATA[<p>One of the great features of WordPress is that it allows you to automatically install and upgrade plugins.</p>
<p>A common problem is that WordPress is unable to access the filesystem directly, which results in a page indicating that &#8220;To perform the requested action, connection information is required.&#8221; learn how you can fix this</p>
<p><span id="more-531"></span></p>
<p>If you feel that your WordPress installation should not be asking you for this information, or you simply do not want WordPress to use this method of plugin management, you may be able to work around it.<br />
What is Causing This?</p>
<p>Whenever you use the WordPress control panel to automatically install, upgrade, or delete plugins, WordPress must make changes to files on the filesystem.</p>
<p>Before making any changes, WordPress first checks to see whether or not it has access to directly manipulate the file system.</p>
<p>If WordPress does not have the necessary permissions to modify the filesystem directly, you will be asked for FTP credentials so that WordPress can try to do what it needs to via FTP.<br />
Why Can&#8217;t WordPress Write To The Filesystem?</p>
<p>In order to understand why WordPress can&#8217;t write to the filesystem, we need to take a look at some WordPress internals.</p>
<p>The following code is from the get_filesystem_method() method in the wp-admin/includes/file.php file:</p>
<p>if( function_exists(&#8216;getmyuid&#8217;) &amp;&amp; function_exists(&#8216;fileowner&#8217;) ){<br />
$temp_file = wp_tempnam();<br />
if ( getmyuid() == fileowner($temp_file) )<br />
$method = &#8216;direct&#8217;;<br />
unlink($temp_file);<br />
}</p>
<p>This code creates a temporary file and confirms that the file just created is owned by the same user that owns the script currently being run. In the case of installing plugins, the script being run is wp-admin/plugin-install.php.</p>
<p>This may seem a little counter-intuitive, since the only thing WordPress really needs to be able to do is write to the wp-content/plugins directory.<br />
What Can I Do About It?</p>
<p>In order to fix this issue, you will need to make sure that the scripts which need to write to the filesystem are owned by the same user that apache is running as.</p>
<p>Many hosting companies will run your apache instance using your user account, and all of your files will be owned by the same account. In those cases, you will probably not have the issue described here.</p>
<p>If your hosting company is running apache as a system user, and your files are owned by your own account, your only option may be to enter your FTP credentials here and allow WordPress to use FTP.</p>
<p>If you are running on a hosting company that gives you root access, or you have installed WordPress on your own development machine at home or at work, you should be able to modify the filesystem permissions to allow WordPress to directly access the filesystem.</p>
<p>The easiest way to do this is to find out what user apache is running as and change ownership of the entire WordPress directory to that user. For example, if apache is running as &#8216;httpd&#8217;, you could use the following commands on your WordPress installation directory:</p>
<p># chown -R httpd: wordpress</p>
<p>Similar you also can us:</p>
<p># chown -R apache: public_html/</p>
<p><strong>Tip:</strong> In order to find out what user your instance of  apache is running as, create a test script with the following content:<br />
<code>&lt;?php echo(exec("whoami")); ?&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/why-wordpress-asks-for-connection-info-when-i-try-to-install-new-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wishlist Member duplicate pages remover</title>
		<link>http://hecode.com/wishlist-member-duplicate-pages-remover/</link>
		<comments>http://hecode.com/wishlist-member-duplicate-pages-remover/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 15:20:52 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=519</guid>
		<description><![CDATA[This script removes extra Wishlist Members pages. Usage: 1. Deactivate all WordPress plugins 2. Upload this script to root of your WordPress path on your server via ftp and point your browser to http://www.yoursite.com/your-wordpress-path/remove-wlm-extra-pages.php 3. Remove Wishlist Member duplicate pages by clicking on &#8220;remove it&#8221; bottom 4. Delete the script from your server. 5. Activate [...]]]></description>
			<content:encoded><![CDATA[<p>This script removes extra Wishlist Members pages.<br />
<span id="more-519"></span><br />
Usage:</p>
<p>1. Deactivate all WordPress plugins<br />
2. Upload this script to <strong>root of your WordPress path</strong> on your server via ftp and point your browser to http://www.yoursite.com/your-wordpress-path/remove-wlm-extra-pages.php<br />
3. Remove Wishlist Member duplicate pages by clicking on &#8220;remove it&#8221; bottom<br />
4. Delete the script from your server.<br />
5. Activate wishlist member plugin.<br />
6. Visit one of &#8220;Registration URL&#8221; at &#8220;WL Member » Manage Membership Levels&#8221; to generate wishlist member page.<br />
7. Activate other plugins<br />
8. Have fun</p>
<p>Example:</p>
<p><a rel="attachment wp-att-520" href="http://hecode.com/wishlist-member-duplicate-pages-remover/wlm-duplicate/"><img class="size-full wp-image-520  alignnone" title="wlm-duplicate" src="http://hecode.com/wp-content/uploads/2010/08/wlm-duplicate.png" alt="" width="248" height="125" /></a></p>
<p>Download it here:<a href="http://hecode.com/wp-content/uploads/2010/08/remove-wlm-extra-pages.zip"> remove-wlm-extra-pages.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/wishlist-member-duplicate-pages-remover/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add New WordPress Admin when you lost orginal admin login?</title>
		<link>http://hecode.com/addnewadmin/</link>
		<comments>http://hecode.com/addnewadmin/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 14:16:27 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hecode.com/?p=476</guid>
		<description><![CDATA[What you do if your  original WordPress admin login do not work? What you do if a hacker changed your wordpress admin login username or password? What you do if a seller tell you code/test a theme/plugin on his website and tell you this has to be done within next few hours but he forgot [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>What you do if your  original WordPress admin login do not work?</li>
<li>What you do if a hacker changed your wordpress admin login username or password?</li>
<li>What you do if a seller tell you code/test a theme/plugin on his website and tell you this has to be done within next few hours but he forgot give you right  WordPress admin  login details?</li>
<li>did you ever found you forgot to write wordpress admin details right after fresh wordpress installation?</li>
<li>What you do if website owner don&#8217;t want to give you phpmyadmin or host control panel info?</li>
</ul>
<div id="attachment_487" class="wp-caption aligncenter" style="width: 512px"><a rel="attachment wp-att-487" href="http://hecode.com/addnewadmin/add-wordpress-new-admin-when-you-lost-orginal-admin-info/"><img class="size-full wp-image-487 " title="Add new admin to wordpress without login in dashboard" src="http://hecode.com/wp-content/uploads/2010/07/add-wordpress-new-admin-when-you-lost-orginal-admin-info.png" alt="Add new admin to wordpress when you lose orginal admin login info" width="502" height="246" /></a><p class="wp-caption-text">Add new admin to wordpress without knowing orginal admin details</p></div>
<p>let make it simple you need free WordPress Emergency <a href="../dl/addnewadmin/latest/addnewadmin.zip">Add New Admin</a>!<br />
<span id="more-476"></span></p>
<ul>
<li> Download free  addnewadmin.zip and extract it to a folder</li>
<li>Upload addnewadmin.php to root of your wordpress instalation path using a ftp program such as filezilla</li>
<li>Navigate your browser to Http://yoursite.com/your_wordpress_instalation_path/addnewadmin/</li>
<li>You see a form that you can add new admin details. fill and submit and enjoy another new admin.</li>
<li>When you done, make sure to remove the script/file from your server. so no one else can find it.</li>
</ul>
<p>Features:</p>
<ul>
<li>Tested on WP3</li>
<li>If new admin user exist it show its info and do not overwrite it</li>
<li>Just one file.</li>
<li>Nice and easy user interface like fresh WordPress installation</li>
<li>It find right database  details such as prefix and connection info.</li>
<li>Its 100% Free!</li>
</ul>
<p>Screenshot:</p>
<p style="text-align: center;"><a title="Download latest WordPress Emergency Add New Admin" rel="attachment wp-att-481" href="http://hecode.com/addnewadmin/wordpress-addnewadmin-v1-image1-2/"><img class="aligncenter size-medium wp-image-481" title="wordpress-addnewadmin-v1-image1" src="http://hecode.com/wp-content/uploads/2010/07/wordpress-addnewadmin-v1-image11-500x388.png" alt="Download latest WordPress Emergency Add New Admin" width="500" height="388" /></a></p>
<p>Download latest WordPress Emergency <a href="http://hecode.com/dl/addnewadmin/latest/addnewadmin.zip">Add New Admin</a></p>
<p>Update:  <strong>Why use AddNewAdmin script instead of phpmyadmin? </strong></p>
<ol>
<li> phpmyadmin is  good if you know how to use it. but AddNewAdmin is more easy and faster and safe. There is no way to lose your database  info with AddNewAdmin.  It only add new admin if same admin is not exist.</li>
<li>You need access to phpmyadmin.  Most of the time you need control panel info in order to access to phpmyadmin.  You may have access to your site phpmyadmin via control panel.  But as freelancer you may don&#8217;t have it that time.  AddNewAdmin just need ftp info to upload.  AddNewAdmin is good to fix others websites at no time with less info.  Website owner  no need share phpmyadmin info or even cpanel info with you!</li>
<li> You can install phpmyadmin and setup it via ftp and use it,  but using addnewadmin take less time , AddNewAdmin no need setup.  Just copy one file and use it right away.  Instead of emailing the buyer and asking for the host or phpmyadmin info,   Create new admin instantly  and do the task and let him know job is done and get paid faster.</li>
<li>To create a admin using phpmyadmin you need to do it at least in few steps. finding right tables, creating a user . changing that user to admin. but   AddNewAdmin do all automatically just by one click. It find right wordpress database. It find right prefix.  It test existing user and add new admin where and when it should!</li>
<li>by using phpmyadmin  you have to do the task  in hard way. but AddNewAdmin is like drinking water! It give you feel like WordPress way.</li>
<li>AddNewAdmin is designed to be safe and fast to do what it say to do.  I personally used it on more than 50 sites  and counting!</li>
</ol>
<p><strong>have question? ask me via comment.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://hecode.com/addnewadmin/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

