<?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/"
	>

<channel>
	<title>Blog Almighty</title>
	<atom:link href="http://www.blog-almighty.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog-almighty.com</link>
	<description>Ruler of the Blogging World</description>
	<pubDate>Sun, 25 Jan 2009 17:20:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Ask Dmitri 0901: Modifying the Header Links</title>
		<link>http://www.blog-almighty.com/modifying-the-header-links/</link>
		<comments>http://www.blog-almighty.com/modifying-the-header-links/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 16:20:03 +0000</pubDate>
		<dc:creator>Dmitri</dc:creator>
		
		<category><![CDATA[Ask Dmitri]]></category>

		<category><![CDATA[Demystifying HTML Codes]]></category>

		<category><![CDATA[Wordpress Themes]]></category>

		<category><![CDATA[header]]></category>

		<category><![CDATA[html tags]]></category>

		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://www.blog-almighty.com/?p=91</guid>
		<description><![CDATA[Hear Ye! Hear Ye! Our fist question for Dmitri has arrived from BURAOT:
dmitri,
eto isa pa tanong. pano ko gagawin na yung header ko ay clickable to the main page(home)?
at pano gumawa ng extra page na &#8220;home&#8221;?
para kapag nasa ibang pages yung bwisitor ko, eh pede lang nila i hit yung &#8220;home&#8221; button or yung main [...]]]></description>
			<content:encoded><![CDATA[<p>Hear Ye! Hear Ye! Our fist question for Dmitri has arrived from BURAOT:</p>
<blockquote><p><em>dmitri,</em></p>
<p><em>eto isa pa tanong. pano ko gagawin na yung header ko ay clickable to the main page(home)?<br />
at pano gumawa ng extra page na &#8220;home&#8221;?<br />
para kapag nasa ibang pages yung bwisitor ko, eh pede lang nila i hit yung &#8220;home&#8221; button or yung main header para bumalik sila sa 1st page.</em></p>
<p><em>tenkyu.</em></p></blockquote>
<p>Let me translate that for everyone else to understand (here’s hoping that there really are someone elses here):</p>
<blockquote><p>Dmitri,</p>
<p>How can I make my header to be clickable to the main page (home) to enable my visitors to be returned to the main page upon clicking the “home” button?</p>
<p>How to make an extra “home” page?</p>
<p>Thank you,</p>
<p>Buraot</p></blockquote>
<p>Buraot has just migrated from blogspot to wordpress with <a href="http://www.anaknikulapo.com">Anak Ni Kulapo</a>? Now he’s created another blog he calls <a href="http://www.iamburaot.com">IAMBURAOT</a>.</p>
<p>At first, I was extremely confused about his questions so I have decided to visit his two blog. Truth indeed, his Wordpres Themes’ headers, un-like the usually Wordpress Themes, are not clickable – they are not linked.</p>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/i-am-buraot.jpg" alt="I Am Buraot" /></p>
<p><span id="more-91"></span>Before answering his questions, let me call <a href="http://www.blog-almighty.com/author/iosif/">Iosif</a> to demystify some of the HTML terms. Here’s Iosif:</p>
<blockquote><p>In cyberspace, what most internet users call homepage is the page that appears when you enter the URL or domain in your internet browser (such as Internet Explorer, Opera, Firefox and Google Chrome). But in order for that to happen, there should be at least an index.htm (or index.asp, index.php, home.php or home.htm depending on the language that you are using – HTML, ASP, PHP, etc.) file. Otherwise, you will just see a directory listing of that domain or folder (if directory listing is enabled) or an error message.</p>
<p>In the case of Wordpress, it is using PHP codes driven by MySQL database and most Wordpress themes are using index.php for displaying the home page.</p></blockquote>
<p>Thank you Iosif, that was one brain-whacking information you got there. Though we think that was unnecessary.</p>
<p>Looking at IAMBURAOT.COM, the header is pulling all the Wordpress pages but not the home page. I am safely assuming that his theme’s header.php file is similarly coded as this:</p>
<blockquote><p>&lt;ul&gt;<br />
&lt;?php wp_list_pages(&#8217;sort_column=menu_order&amp;depth=1&amp;title_li=&#8217;);?&gt;<br />
&lt;/ul&gt;</p></blockquote>
<p>Those codes are meant to pull a list of the pages’ titles and link to each one accordingly. What we need to do is insert another list which will call the homepage. Like this:</p>
<blockquote><p>&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_settings(&#8217;home&#8217;); ?&gt;&#8221;&gt;<strong>Home</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php wp_list_pages(&#8217;sort_column=menu_order&amp;depth=1&amp;title_li=&#8217;);?&gt;<br />
&lt;/ul&gt;</p></blockquote>
<p>You are free to change the text <strong>Home</strong> to what ever you want and it will all the same point to your homepage.</p>
<p>The problem with this kind of coding, however, is that it will automatically display all of you published pages in your blog. Sometimes the header gets too crowded when you have published too many of them. Or even if you just have a few, the length of the page titles make it difficult for the header space to display. In that case, you always have the option to code your header.php file manually to display only those pages that you deem important on that location. Here’s an example:</p>
<blockquote><p>&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_settings(&#8217;home&#8217;); ?&gt;&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_settings(&#8217;home&#8217;); ?&gt;<strong>/about</strong>&#8220;&gt;About&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_settings(&#8217;home&#8217;); ?&gt;&#8221;<strong>/contact</strong>&gt;Contact&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</p></blockquote>
<p>You’ll notice that the codes <strong>&lt;?php echo get_settings(&#8217;home&#8217;); ?&gt;</strong> points to the homepage location. What you just need to do next is to insert the page slug of the pages you wanted display after a forward slash (‘/’). Though this is only true if you’re using the post slugs (pretty permalinks) but if you prefer to use the page ID (ugly permalinks) then you should add /?p=page_ID.</p>
<p>In most cases, Wordpress themes are coded differently depending on the theme creator. If you could not edit your header.php file with my instructions, chances are we’re looking at different codes. You may email me you’re header.php file and let me see what I can do.</p>
<p>And regarding making your whole header clickable, you have to have a linkable image instead of simply a background image. I believe you Wordpress Theme, just like this blog’s, don’t have a header image. They only have a background image for the entire blank space. You should put something there and enclose it with the link tags like:</p>
<blockquote><p>&lt;a href=&#8221;&lt;?php echo get_settings(&#8217;home&#8217;); ?&gt;&#8221;&gt;&lt;img src=&#8221;<strong>image-location</strong>&#8220;&gt;&lt;/a&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-almighty.com/modifying-the-header-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Personalizing your Wordpress Login Page</title>
		<link>http://www.blog-almighty.com/custom-wordpress-login-page/</link>
		<comments>http://www.blog-almighty.com/custom-wordpress-login-page/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 09:33:46 +0000</pubDate>
		<dc:creator>Partitos</dc:creator>
		
		<category><![CDATA[Wordpress Hacks, Tools and Plugins]]></category>

		<category><![CDATA[blog branding]]></category>

		<category><![CDATA[custom login]]></category>

		<category><![CDATA[logo]]></category>

		<guid isPermaLink="false">http://www.blog-almighty.com/?p=72</guid>
		<description><![CDATA[If you’re running a community blog, it wouldn&#8217;t hurt to give your members a personalized welcome when they would login into the admin panel. Binary Moon has created a perfect Wordpress plugin to suit this purpose and they called it BM Custom Login Plugin. This would create an interface where you can change the entire [...]]]></description>
			<content:encoded><![CDATA[<p>If you’re running a community blog, it wouldn&#8217;t hurt to give your members a personalized welcome when they would login into the admin panel. <a href="http://www.binarymoon.co.uk/">Binary Moon</a> has created a perfect Wordpress plugin to suit this purpose and they called it <a href="http://www.binarymoon.co.uk/projects/bm-custom-login/">BM Custom Login Plugin</a>. This would create an interface where you can change the entire look of your Wordpess login page. I love myself so I used it to give me a personalized welcome page when I’d try to login on my personal blog. Here’s how it looked like:</p>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/wordpress-logon-logo-kk.gif" alt="Custom Wordpress Login Page" /></p>
<p>If you didn’t like the plugin but you still want to replace the Wordpress logo with you own brand, you could still do it by replacing the default Wordpress logo-login.gif image in the wp-admin/images directory folder. Here’s how:</p>
<p>1. In Adobe Photoshop, or whatever image editor suits you, create a new 326 x 80 pixel transparent image.<br />
2. Embed and resize your own logo or branding that suits that image size.<br />
3. Save your image as logo-login.gif and upload it in the wp-admin/images directory folder of your Wordpress blog.</p>
<p><span id="more-72"></span>If you want to blend your logo with the background color of your Wordpress login page, you can use the RGB color codes F9F9F9 (in Wordpress version 2.7 or FFFFFF in version 2.5) in the color palette.</p>
<p>Here’s how the old and new <strong>Wordpress Login Page</strong> of this blog looks like before and after the modification.</p>
<p>Before:<br />
<img src="http://www.blog-almighty.com/wp-content/uploads/2009/wordpress-logon-logo-old.gif" alt="Old Wordpress Login Page" /></p>
<p>After:<br />
<img src="http://www.blog-almighty.com/wp-content/uploads/2009/wordpress-logon-logo.gif" alt="New Wordpress Login Page" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-almighty.com/custom-wordpress-login-page/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Am&#8230; Hello world?</title>
		<link>http://www.blog-almighty.com/hello-world/</link>
		<comments>http://www.blog-almighty.com/hello-world/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 11:23:42 +0000</pubDate>
		<dc:creator>Dmitri</dc:creator>
		
		<category><![CDATA[Blogging in General]]></category>

		<category><![CDATA[blogs]]></category>

		<category><![CDATA[professional wordpress services]]></category>

		<guid isPermaLink="false">http://www.blog-almighty.com/?p=64</guid>
		<description><![CDATA[I hope you do realize how big the changes are around here. New look, new post, old post deleted, new characters, new services. New, new, new. Happy New Year to all!  This is Dmitri of Ask Dmitri and I’ll be the over-all in charge of pretty much everything around here. Except of course for [...]]]></description>
			<content:encoded><![CDATA[<p>I hope you do realize how big the changes are around here. New look, new post, old post deleted, new characters, new services. New, new, new. Happy New Year to all! <img src='http://www.blog-almighty.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> This is <a href="http://www.blog-almighty.com/author/dmitri/">Dmitri</a> of <a href="http://www.blog-almighty.com/ask-dmitri/">Ask Dmitri</a> and I’ll be the over-all in charge of pretty much everything around here. Except of course for those life-over-Wordpress discussions, I will be obliged to let the other deities handle.</p>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/the-all-new-blog-almighty.jpg" alt="The All New Blog Almighty" /></p>
<p>To begin with, let me make it clear that this blog has not been purchased or is currently being ran by new owners - we wouldn’t want to do that. There are just a few major changes made here and there in order to make your browsing experience a little more interesting, entertaining and, most of all, informative. Blog Almighty, himself, summoned the powers of five blogging deities (including yours truly) to fill every pages of this blog with useful and informative ideas pertaining to the technical aspects of this blogging platform (i.e. <a href="http://www.wordpress.org">Wordpress</a>). You may find some useful information about us on the About Us page, which is now entitled as <strong><a title="Meet the Five Blogging Deities" href="http://www.blog-almighty.com/about-us/">Meet the Five Blogging Deities</a></strong> - That’s us.</p>
<p>For the contents, the all new Blog Almighty will be concentrating on five main categories: <a href="http://www.blog-almighty.com/category/building-wordpress/"><strong>Building/Rebuilding Wordpress</strong></a> which is about all the things you need to know when you need your Wordpress blog archived, recovered when lost, fixed when experiencing massive errors and even back-to-basics information on installing Wordpress when you have the need to move from your old blogging platforms or even from free <a href="http://www.wordpress.com">Wordpress</a> to self-hosting; <a href="http://www.blog-almighty.com/category/wordpress-plugins/"><strong>Wordpress Hacks, Tools and Plugins</strong></a> will feature some of the available Wordpress tools and plugins which could aid you in optimizing you blogging experience; <strong><a href="http://www.blog-almighty.com/category/html/">Demystifying HTML Codes</a></strong> and <a href="http://www.blog-almighty.com/category/photoshop/"><strong>Demystifying Photoshop</strong></a> will deal about manual webpage coding and photoshop tutorials, respectively; and <a href="http://www.blog-almighty.com/category/wordpress-themes/"><strong>Wordpress Themes</strong></a> will, of course, discuss about anything and everything you want to know about Wordpress themes (we will also release our own free Wordpress themes soon). In order to receive timely updates, please make sure to bookmark this site (that&#8217;s Ctrl+D on your Windows keyboard or Command+D in you Macs), <a href="http://feeds.feedburner.com/BlogAlmighty/">subscribe in a reader</a> or to our <a title="Subscribe with Feedburner" href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1847312&amp;loc=en_US">email feeds</a>.</p>
<p>Please don’t forget that there is also a special column that will deal with all your technical questions revolving around blogging and Wordpress in general. In the best way that we can, <a title="Wordpress Support" href="http://www.blog-almighty.com/ask-dmitri/"><strong>Ask Dmitri</strong></a> (that’s me) will answer all your questions individually. You may send your questions to us through email address <a href="mailto:ask@blog-almighty.com"><span style="color: #ff0000;"><strong>ask@blog-almighty.com</strong></span></a> or use our contact form at the bottom of the <a href="http://www.blog-almighty.com/ask-dmitri/">Ask Dmitri page</a>. We’re too eager to receive your questions so better start sending them now.</p>
<p>And finally, Blog Almighty is now officially opening our doors to offer you <a title="Professional Wordpress Development Services" href="http://www.blog-almighty.com/services/"><strong>professional and dedicated Wordpress development services</strong></a>. We’ll help you install, build, move or migrate Wordpress blogs from elsewhere to anywhere in the cyberspace (even in you local computers). Please contact us at <a href="mailto:support@blog-almighty.com"><span style="color: #ff0000;"><strong>support@blog-almighty.com</strong></span></a> for support and pricing inquiries.</p>
<p>That’s all for now, ladies and gentlemen. We hope that you’ll enjoy your blogging experience with us. Thank you all for your support in the past.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-almighty.com/hello-world/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Exporting &#038; Importing Wordpress WXR (XML) files</title>
		<link>http://www.blog-almighty.com/exporting-importing-wordpress-wxr-xml-files/</link>
		<comments>http://www.blog-almighty.com/exporting-importing-wordpress-wxr-xml-files/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 01:28:48 +0000</pubDate>
		<dc:creator>Onesimus</dc:creator>
		
		<category><![CDATA[Building/Rebuilding Wordpress]]></category>

		<category><![CDATA[wordpress back-up]]></category>

		<category><![CDATA[wxr files]]></category>

		<category><![CDATA[xml files]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=9250</guid>
		<description><![CDATA[This popular Wordpress content backup function is native to Wordpress 2.1 and has been widely used by most Wordpress users because of its simplicity and ease of use. The functions could be found right in your Wordpress Admin panel under Tools (in 2.7 or Manage in earlier versions). It creates an XML file in WXR [...]]]></description>
			<content:encoded><![CDATA[<p>This popular Wordpress content backup function is native to Wordpress 2.1 and has been widely used by most Wordpress users because of its simplicity and ease of use. The functions could be found right in your Wordpress Admin panel under Tools (in 2.7 or Manage in earlier versions). It creates an XML file in WXR (WordPress eXtended RSS) format which you could use to copy or transfer your Wordpress contents from one Wordpress blog to another.</p>
<h1>How to export your Wordpress WXR files</h1>
<p>1. Under Tools tab (in Wordpress 2.7 or Manage tab in earlier version) in your Wordpress Dashboard, click Export.</p>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/export-wxr-files-1.gif" alt="export xml files" /></p>
<p>2. In the Export panel, you will have the option to restrict your download by author. Click Download Export File button to start download.</p>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/export-wxr-files-2.gif" alt="" /></p>
<p><span id="more-40"></span><br />
<h1>How to import your Wordpress WXR files</h1>
<p>1. Under Tools tab (in Wordpress 2.7 or Manage tab in earlier version) in your Wordpress Dashboard, click Import.</p>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/import-wxr-files-1.gif" alt="import xml files" /></p>
<p>2. Locate your Wordpress WXR file from your computer and hit Upload file and import button to start upload.</p>
<p>3. Choose Wordpress when asked which blogging platform your import file is from.</p>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/import-wxr-files-2.gif" alt="" /></p>
<p>4. You will be prompted to assign new authors for your imported posts or map them to existing ones. Click Download and import file attachments check button and click submit to continue.</p>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/import-wxr-files-3.gif" alt="" /></p>
<p>Wait for the <strong>All done. Have fun!</strong> message to appear to ensure successful upload. If the process terminated without this message, hit refresh in your browser to repeat upload process. Don’t worry that you will have duplicate posts because Wordpress will not import duplicate contents.</p>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/import-wxr-files-4.gif" alt="" /></p>
<p>Note that your import size may be delimited by your hosting provider so if you have large xml files, you will have to resize them accordingly. Here’s a <a title="Splitting large XML files" href="http://www.blog-almighty.com/splitting-wordpress-xml-files/">step-by-step process</a> that you may follow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-almighty.com/exporting-importing-wordpress-wxr-xml-files/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Splitting large Wordpress WXR (XML) file into several small uploadable file sizes</title>
		<link>http://www.blog-almighty.com/splitting-wordpress-xml-files/</link>
		<comments>http://www.blog-almighty.com/splitting-wordpress-xml-files/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 00:00:07 +0000</pubDate>
		<dc:creator>Onesimus</dc:creator>
		
		<category><![CDATA[Building/Rebuilding Wordpress]]></category>

		<category><![CDATA[wxr files]]></category>

		<category><![CDATA[xml files]]></category>

		<guid isPermaLink="false">http://www.blog-almighty.com/?p=40</guid>
		<description><![CDATA[So you thought you have been wise after successfully backing up your Wordpress Blog’s XML files just in case something happens in the future. Then the future came and to you’re surprise, the files can’t be imported because your Wordpress blog is only capable of importing 2MB of contents. Suddenly, your world starts falling out [...]]]></description>
			<content:encoded><![CDATA[<p>So you thought you have been wise after successfully backing up your Wordpress Blog’s XML files just in case something happens in the future. Then the future came and to you’re surprise, the files can’t be imported because your Wordpress blog is only capable of importing 2MB of contents. Suddenly, your world starts falling out right in your very eyes.</p>
<p>But there’s a solution: <strong>Split your XML files into several chunks of uploadable sizes.</strong></p>
<p>1. Create a new text file and name it WPEXPORT.xml (or however you want to name it as long as the extension is .xml and not .txt)</p>
<p>2. Open you exported Wordpress XML file in notepad and find the first &lt;item&gt; tag. Your may press Ctrl+F, type &lt;item&gt; in the ‘Find what’ tab and press enter.</p>
<p>You will notice that your XML file is arranged in this order:</p>
<ul>
<li><strong>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt; SOME IMPORTANT CODES THAT YOU DON’T REALLY NEED TO UNDERSTAND &lt;/wp:tag&gt;</strong></li>
<li><strong>&lt;item&gt; HERE’S WHERE YOUR BLOG ENTRIES ARE CONTAINED &lt;/item&gt;</strong></li>
<li><strong>&lt;/channel&gt;&lt;/rss&gt;</strong></li>
</ul>
<p><img src="http://www.blog-almighty.com/wp-content/uploads/2009/split-xml-files.gif" alt="splitting xml files" /></p>
<p>This is an indicator that your XML export has been properly completed. If your export does not end with &lt;/channel&gt;&lt;/rss&gt;, it means you have not successfully completed exporting your blog contents and some entries will be missing.</p>
<p><span id="more-36"></span>3. Copy all texts before your first &lt;item&gt; tag and paste it in your WPEXPORT.xml file.</p>
<p>4. Reserve a few spaces (press ENTER several times) just so you could mark the location for the next steps. Copy &lt;/channel&gt;&lt;/rss&gt; in the end of the WPEXPORT.xml file. Save it and make several copies.</p>
<p>Now you’re ready to split your exported XML file.</p>
<p>5. Cut and paste you posts between the spaces you’ve made in your new WPEXPORT.xml files.</p>
<p>6. Continue the process until you have copied all of your XML files into several 2MB or less files.</p>
<p>If your nose bleeds during the process, blame it to the Joneses.</p>
<p>Another option that I’ve tried is by compressing the XML file into a GZip file using a <a href="http://www.7-zip.org/">7z software</a>. But it doesn&#8217;t always work correctly and we’ll tackle this case later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-almighty.com/splitting-wordpress-xml-files/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JSQuery causing errors which exhausts server resources during post editing in Wordpress</title>
		<link>http://www.blog-almighty.com/jsquery-error-during-post-editing/</link>
		<comments>http://www.blog-almighty.com/jsquery-error-during-post-editing/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 15:13:09 +0000</pubDate>
		<dc:creator>Onesimus</dc:creator>
		
		<category><![CDATA[Building/Rebuilding Wordpress]]></category>

		<category><![CDATA[jscripts]]></category>

		<category><![CDATA[wordpress bugs]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=48</guid>
		<description><![CDATA[A lot of self-hosted Wordpress blogs are experiencing script errors when trying to create or modify a post. Most experiences browser hanging-up and an error tab appears pointing to the script causing the error:
A script on this page may be busy , or it may have stopped responding. You can stop the script now or [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of self-hosted Wordpress blogs are experiencing script errors when trying to create or modify a post. Most experiences browser hanging-up and an error tab appears pointing to the script causing the error:</p>
<p style="padding-left: 30px;"><strong>A script on this page may be busy , or it may have stopped responding. You can stop the script now or you can continue to see if the script will complete.</strong></p>
<p style="padding-left: 30px;"><strong>Script: http://…../wp-includes/js/jquery/jquery.js?ver=1.2.6:11</strong></p>
<p>Two of my blogging friends have experienced the same error (they also mentioned their other friends are experiencing the same) and one of them got their wordpress blog locked by their hosting company. He has been seeing the same symptom for a while but he chose to ignore it and then one day, without prior notice, Bluehost has locked his wordpress blogs. Now he has no access to his dashboard so he couldn’t even export the XML files. Fortunately, the SQL database remained accessible and the transfer to a new host was done, though not smoothly.</p>
<p>I scoured the internet for similar discussions and found this thread in <a href="http://wordpress.org/support/topic/206177">Wordpress Support Forum</a>. The recommended solution was to delete the following lines from the <strong>edit-form-advanced.php</strong> file under <strong>wp-admin folder</strong>:</p>
<p style="padding-left: 30px;"><!--p<br--><!--p     $metadata = has_meta($post-&gt;ID);<br--><strong>&lt;?php<br />
$metadata = has_meta($post-&gt;ID);<br />
list_meta($metadata);<br />
?&gt;</strong></p>
<p><span id="more-35"></span>In effect however, deleting those lines would disable manual editing of the custom fields and if you’re like me who uses custom fields excessively (particularly with magazine-style Wordpress themes), this is going to cause a lot of pain. Like how can you assign a custom field when the custom field form is inaccessible?</p>
<p>Someone from elsewhere also explained that when one starts creating a new entry, the said script is loading all the META data in all existing post and page ID the Wordpress database and if you have tons of them (just like my two friends who have been blogging for eternities), you have high chances of encountering this problem.</p>
<p>I do believe it’s true because, even in my one and a half year-old blog, all the previous META data would load below the custom field tab each time I create a new entry. But because I only have a few hundreds of entries so far, the loading goes smoothly. I believe it was the reason why one of my friends’ blog was locked by Bluehost – it’s consuming too much server resources. But hell, they could have given my friend a warning when even their team had no idea where the problem is coming from.</p>
<p>I wonder if the loading is multiplied when you’re using the All-in-one SEO pack because for many ways, it registers a lot of META data for each entry.</p>
<p>I do hope that Matt’s team could come up with a better fix because the case got worse with the upgrade to the Wordpress 2.7.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-almighty.com/jsquery-error-during-post-editing/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
