microkid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: No Yahoo/WordPress Support – Need Help with SQL ErrorsThe problem seems to be in a stats plugin you’re running, can it be BAStats? If you deactivate this your problem should for solved for now. Maybe check the plugin creator site: https://www.redalt.com/
Forum: Fixing WordPress
In reply to: Problem With PostingPerhaps the memory limit in PHP?
Forum: Fixing WordPress
In reply to: How do I get the code for my blog posts?Just look at the default theme that comes with WordPress. It’s easy!
Forum: Installing WordPress
In reply to: LoginThe old site url is still saved in the database from when you were developing on your local machine.
Check out this how-to:
Forum: Fixing WordPress
In reply to: Single Page ArchivesYou can use the Smart Archives plugin.
Forum: Fixing WordPress
In reply to: Images in posts not savingDid the larger version of the image show after you changed permissions?
Forum: Fixing WordPress
In reply to: Won’t let me import my old blog?Try increasing the PHP memory_limit. See this post as well:
Forum: Everything else WordPress
In reply to: /?tegory%/%postname% Permalink Custom Structure not workingMaybe this plugin will solve your problem:
Forum: Developing with WordPress
In reply to: Category list and nofollow tagsHi,
Check out the All in One SEO plugin, it has this feature.
Forum: Fixing WordPress
In reply to: FLV video not loadingMy experience, the problem with this usually lies in the path you put in the swf file not corresponding with the location of your flv file.
Make sure this is correct, easiest is to put the video files in the same directory as the swf and just enter ‘filename.flv’ as the path when you create the flv.
Forum: Fixing WordPress
In reply to: Database can’t handle theme? (WTF)I guess your database is on its knees.
Although your theme files are obviously not located in the database, a reference to which theme you are using is. So WordPress doesn’t know which stylesheet to load, and you get the..ehr.. plain text version ??
Forum: Installing WordPress
In reply to: WordPress from WordPress: import problemThis might have to do with the import tool tripping over weird M$ Word characters, but I found out that increasing the PHP memory_limit solved this for me. Even though I didn’t get an error, but just the page with the bottom half blank like several replies here describe, I tried it anyway.
Add
ini_set("memory_limit","24M");
all the way at the top of
/wp-admin/import/wordpress.php
Right after
<?php
of course.Forum: Fixing WordPress
In reply to: import problem ?The problem, like the error message tells you already, lies in the fact that your wp-content folder is not writeable. You have to change permissions (a.k.a. CHMOD) to 777.
Forum: Plugins
In reply to: Check if posts lives somewhere else when old permalink triggers 404Yeah I came up with this as a solution for the problem of not having consistent ‘old’ permalinks. Otherwise it would perhaps be easier to use an apache rewrite or something. This is more like a ‘catch-all’ solution.
Forum: Plugins
In reply to: Check if posts lives somewhere else when old permalink triggers 404Here it is: Permalinks Moved Permanently
I made a couple of small adjustments, added check for post_status = ‘publish’ to the query, and use get_permalink($ID) instead of $guid, to make sure no endless loops occur.