stanch
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can access WP_Admin, but can’t view sitehi, but i can view your site without getting an error like that 🙂
Forum: Fixing WordPress
In reply to: Can access WP_Admin, but can’t view sitehi, but i can view your site without getting an error like that 🙂
Forum: Everything else WordPress
In reply to: Ordering on pages and posts ( I.D. numbers )i am not understand yet about your question. can you provide some examples. anyway, afaik the un-alphabetical order of wp page id page is default setting of wp.
Forum: Themes and Templates
In reply to: Widgitizing an existing templateor you can try this Widgetizing Sidebar tutorial. anyway, sometime that problem occur caused by our browser cache, so try to clearing your browser cache.
Forum: Fixing WordPress
In reply to: Create an RSS feed page to view subscribed blogsi’ve written a short article about tips to publishing the rss feed posts on a separate page.
01. example of a page contain this wp forum’s recent posts:
http://aufklarung.org/wpsupport/
02. example of a page contain wp planet’s latest posts:
anyway, you can read that article at:
http://aufklarung.org/computer/publishing-rss-feed-posts-on-a-separate-page.mspx
thanks,
stanchForum: Plugins
In reply to: WP Super Cache – Deletes all cache contentsCaspie wrote:
Anyone with similar problem?sure, why not 🙂 so? worry? its not be a problem 🙂
Forum: Installing WordPress
In reply to: Pageshas published it?
Forum: Themes and Templates
In reply to: Can’t Center my pagesyou can put the pages manually in the header file, cmiiw 🙂
Forum: Plugins
In reply to: SyntaxHighlighter not working with wp version 2.3.2alternatively, you can use WP-Syntax plugin. its absolutely amazing, and work on wp 2.3.2, i am using it too 🙂
Forum: Themes and Templates
In reply to: Displaying Parent name in sidebarhave you try using the pithy code something like this?:
<li> <h2 class="sidebartitle"><?php _e('Categories'); ?></h2> <ul class="list-cat"> <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=1'); ?> </ul> </li>Forum: Installing WordPress
In reply to: import problem – missing fileswhy didn’t you try to backup your wp blog to *sql file, its more easier than *.xml file (cmiiw) 🙂
Forum: Plugins
In reply to: Works with WP 2.3.2?why didn’t you try it? anyway, yeah it work with wp 2.3.2 and alternatively, you can try WP-DBManager. thanks you 🙂
Forum: Fixing WordPress
In reply to: Can’t Access Presentation Themes (Memory Exhausted Message)read this post http://wordpress.org/support/topic/153640
Forum: Plugins
In reply to: Where Do I Add < ?php wp23_related_posts(); ? >depending on what you want, in my case, i add it on the bottom of <?php the_content; ?>
Forum: Fixing WordPress
In reply to: Error with import of WP-Hosted exportto change the memory limit by including a line such as this at the very top of wp-config.php :
ini_set("memory_limit","12M");you can also make this change permanently for all PHP scripts running on the server by adding a line like this to the server’s php.ini file:
memory_limit = 12Mbtw, the 12M sets the limit to 12 megabytes (12582912 bytes). if this doesn’t work, keep increasing the memory limit until your script fits or your server squeals for mercy :).