angsuman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Dashboard links not showing after upgradeTry disabling the plugins one by one by renaming them in plugins directory(as you probably cannot access the plugins screen too).
Forum: Fixing WordPress
In reply to: is_author function brokenThanks. That works 🙂
BTW: I actually used zero (0). Shouldn’t that work too?
Forum: Everything else WordPress
In reply to: Upgrade Now Or Wait?I am waiting till it settles down. I am however testing it actively.
Forum: Fixing WordPress
In reply to: is_author function brokenIn fact is_author() is also not working in a template. As you like code here it goes:
if(is_author()) {
echo ‘I am in Author Archive’;
}Forum: Fixing WordPress
In reply to: is_author function brokenif(is_author()) {
// Do blah blah
}I am calling it in a function which is hooked to template_redirect.
At the same location other functions like is_date() or is_single() etc. are working.
And I am calling an author page by:
http://hostname/index.php/author/0/
or
http://hostname/index.php?author=0Forum: Requests and Feedback
In reply to: Irrelevant “news” in Dashboard’s “Other WordPress News”> that having the ability to add any feed there opens a very wide security hole – and who would get the blame for that ?
The same security risks that Google, Bloglines and scores of other free feed aggregators undertake.
Frankly I don’t think anyone will blame WP for that. They should rather blame the browser.Forum: Requests and Feedback
In reply to: Irrelevant “news” in Dashboard’s “Other WordPress News”You can try using my WordPress Admin Dashboard replacement which gets rid of all the feeds and add some relevant admin links instead. It works on WP 2.0 as well as 1.5.x versions.
Forum: Plugins
In reply to: Detailed statistics like on WP.comFew months back when I checked StatTraq, I found it had problems with nice permalinks. It clubs such visits under home page visit.
You are better off using StatCounter / SiteMeter / Google Analytics (best)
Forum: Plugins
In reply to: Authenticated WordPress Plugin – Password Protection for Your WordPress BlogI have a solution for you. Contact me directly at angsuman[at]taragana[dot]com
Forum: Installing WordPress
In reply to: Disappearing Sidebar with WordPress 2.0@lisar…
Activate Jale’s Shoutbox plugin – blog.jalenack.com/ajax/
or remove the code from your template.
It is happening due to some error in your plugins.
However unless you have followed the safe procedure for adding plugin code to template, just deactivating the plugin may not help as has happened in your case.Forum: Plugins
In reply to: Authenticated WordPress Plugin – Password Protection for Your WordPress BlogThanks.
Forum: Plugins
In reply to: Comprehensive List of WordPress 2.0 Action Hooks for Plugin DevelopersI found the wphooks site while compiling my list. Found it hard to use (IMHO) and not updated with WP 2.0 hooks like mce_options etc.. Your mileage may vary.
Also it doesn’t distinguish between hooks and filters which though are code-wise same but serve entirely different functionality.In my list I have taken care of all of the above. Additionally I provide source code information of the hook, all in a single page.
Forum: Requests and Feedback
In reply to: wordpress.org is not working properlyLooks like the upgraded server is not equipped to handle the load.
Forum: Everything else WordPress
In reply to: 404s on the Forum?> Yeah, and that’s on top of the codex content being gutted.
I wonder if this is a deliberate attempt at obfuscation 🙂Forum: Installing WordPress
In reply to: Directory Listing Denied ? Help> DirectoryIndex index.php
Actually just add index.php to the existing list which will surely contain index.html index.html etc.