Mads Phikamphon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: .htaccess redirectThat’s exactly how I redirect at the moment, but when I do so, I end up with this kind of redirection:
olddomain.com -> newdomain.com, olddomain.com/blog -> newdomain.com/blog, olddomain.com/news -> newdomain.com/news, etc.
Not the kind of redirection I need:
olddomain.com -> newdomain.com, olddomain.com/blog -> newdomain.com, olddomain.com/news -> newdomain.com, etc.Forum: Fixing WordPress
In reply to: Commenting is really, really slow :(Haven’t got any spam plugins beside Akismet.
Forum: Plugins
In reply to: How to call query_posts from functions.php?Awesome. That was exactly what I needed.
$args = array( 'numberposts' => 10, 'category_name' => $category_name ); $posts = get_posts($args); foreach ($posts as $post) { }Thanks a lot.
Forum: Themes and Templates
In reply to: Cufon font replacement, non-English charactersAnyone who can answer this?
I feel like I have looked everywhere, but I cannot find any information on how to fix the problem 🙁
Forum: Plugins
In reply to: Showing posts on a static page, excerpt problemAwesome, that fixed the problem. Thanks a lot for your help.
Forum: Fixing WordPress
In reply to: Not redirecting to the www versionTurns out that W3 Total Cache fills the .htaccess file with stuff.
If I overwrites the .htaccess file with a classic, simple version, the redirect problem goes away.
So now my question is: Does W3 Total Cache creates a SEO issue or not?
I would say so, since Google considers example.com and http://www.example.com to be two different pages.
Forum: Plugins
In reply to: Related posts plugin, content basedFound what we needed here,
http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/Forum: Fixing WordPress
In reply to: Hacked, but uploading new WP doesn’t work :(Any idea if the plugin exec-php might be causing trouble, i.e. create a hacking backdoor?
It’s the only similarity I can find between the hacked sites.
Forum: Fixing WordPress
In reply to: Marked as spam in Akismet?Thanks a lot.
I didn’t get a blank screen when I commented on your post. But at the same time, I didn’t get any message about my comment had to be reviewed, etc.
I look forward to hear if you can see the comment in your backend – and maybe tell me what is going wrong.
Thanks again, Mads
Forum: Plugins
In reply to: DB backup plugin that backup all tablesExcellent, just what I needed.
Thanks a lot.
Forum: Plugins
In reply to: Review Site pluginThanks for your reply, but that’s not what I’m looking for 🙁
Forum: Plugins
In reply to: Using URL parametersFound out that I work if I change permalinks option to default.
Can’t make it work using name based permalinks 🙁
Forum: Plugins
In reply to: Publishing two feeds from one WP installationStill no luck getting the pages indexed, even though I tried adding a second feed (using PHP Feed Generator).
Could it be because I use the 404.php to fetch my pages from a database?
Like this:
URL not found -> Go to 404.php, check if URL is in the database -> Show generated page if URL in database, else show standard 404 error page.Thanks, Mads
Forum: Plugins
In reply to: Publishing two feeds from one WP installationYes, I have done sitemaps. I doesn’t help. Posts are indexed much better than pages 🙁
Forum: Plugins
In reply to: Avoid pictures on the frontpage/category pagesOutstanding answers! Thank you everybody, it works now.