ddsuresh
Forum Replies Created
-
Forum: Plugins
In reply to: [Donate Plus] [Plugin: Donate Plus] IPN not workingI too had this problem of “Retrying” and 404 not found problem.
Now i have solved it by changing the code in paypal.phprequire(“../../../wp-blog-header.php”);
to
require(“../../../wp-load.php”);
Hope this will helpful to others.
You have to edit wp-content/plugins/custom-category-template/category_template.php
Find:
if ( isset( $_POST['cat_template'] ) && $_POST['cat_template'] != 'default' ) {
Replace With:
$cat_meta = get_option( "category_templates"); $cat_template_name = $cat_meta[$term_id]; if ( isset( $_POST['cat_template'] ) && $_POST['cat_template'] != $cat_template_name ) {
Then it will work properly.
Forum: Fixing WordPress
In reply to: Is it possible to use different permalinks structure based category?Perfect, It works for me.
Thanks a lot, you are my time saver.Forum: Fixing WordPress
In reply to: Simply last X posts on a seperate clean page?Here some sample code, which might be helpful and get some basic idea.
include("blog/wp-load.php"); $recent_query = new WP_Query("posts_per_page=5"); $recent_blogs = array(); while($recent_query->have_posts()) { $recent_query->the_post(); array_push($recent_blogs, array('link'=>get_permalink(), 'title'=>get_the_title(), 'excerpt'=>strip_tags(get_the_excerpt()))); }
Point the include statement to your exact wp-load.php
Forum: Fixing WordPress
In reply to: Google Chrome Display?I don’t think so there is PM in this website. So better paste the url here itself like below link
If you are using wordpress version 3.0, then change the password to below one in database wp_users table.
$P$BhWuJh8U7DNLR8MGehln85fPyKznIw.Then goto wordpress admin and login with your username and type password as “password”.
I think for this problem phpinfo won’t help.
Did you tried my previous post solution, was it helpful?There is an alternate solution to this problem, if you need it urgently.
Do you have access to your wordpress database?
Then goto phpmyadmin and change your password to
$P$BCBMzO0/Q0l27.ajJ031sq/xZ/NowZ. — passwordNow you can login into wordpress admin and change the password.
Suresh
Forum: Fixing WordPress
In reply to: Plugin Problem – Works Locally but not onlineThis might be permission problem. Can you give me the exact plugin name, it will be helpful to identify the problem.
Forum: Fixing WordPress
In reply to: Error messageWhile upgrading manually, you need to complete overwrite all files other than wp-content folder with new version wordpress files.
If you goto wordpress admin, it will ask database upgrade also. Then new version of wordpress will be upgraded successfully.
May be some of the plugins might not work due to version compatibility. You need to upgrade those plugins from wordpress site.
Forum: Fixing WordPress
In reply to: Error messageIn which version wordpress are you facing this problem?
While upgrading to new version of wordpress, how did you upgrade the wordpress – manually or auto update from wordpress admin?Forum: Fixing WordPress
In reply to: How to put a file download link on sidebar?You can goto WordPress Admin -> Appearance -> Widgets.
Create a new Text Widget and move into the sidebar you required.
If your theme supports dynamic sidebar, then it will display in the sidebar.
If it doesn’t support then you need to modify your function.php and sidebar.php in your theme files.Forum: Fixing WordPress
In reply to: Google Chrome Display?Can you give me your website link?
Either it might be html or css rendering issue.I don’t see any YouTube video embedded in your site.
Which version of Internet Explorer are you using?Can you please paste the code that you are using in your site.
Forum: Fixing WordPress
In reply to: WordPress Admin becoming slow – is host to be blamed?Do you face this problem only in Admin site or even in your blog pages also?
If it is only in Admin site, then you need to run Firefox Firebug addon to check the Admin site. Under Net tab, it will clearly tell you which files are taking more time.
May be there are some missing file redirection on Admin site.Suresh