electrolund
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Description no longer appears as captionSearch is your friend!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Gallery TreeNet yet. I miss it too, having come from Gallery2, but I’m sure it will be here eventually. 🙂
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Missing description under thumbnailsI followed your instructions and found that your syntax for the quicktag wasn’t quite correct. It should be:
[nggallery=1 template=sample1]With this corrected, I get the following error on the preview:
Rendering of template gallery-1.php failedThinking it was a permissions issue, I made sure my gallery template file was 0644, as are all the other default WP templates. Any ideas why this would be?
Forum: Plugins
In reply to: [Plugin: IMDb Easy Movie Embed (IEME)] sorry did not workWorks great for me! Kudos to the author for taking the Romanian CinemaRX plugin and adapting it to the IMDb for us American users!
Forum: Fixing WordPress
In reply to: large table sizeOk, I did an XML export and am looking at it. Under widget_categories, there are probably several 1000 backslashes! Also, it appears that the RSS feeds from WordPress.org are all stored in the wp-options file. Why?!
Forum: Fixing WordPress
In reply to: how to add galleries to WP2.5?I’m surprised that there hasn’t been any (that I know of) screencasts or howtos out there yet about the media library.
Forum: Fixing WordPress
In reply to: WP 2.5 Media Library and old filesTotally. Maybe the author will update soon.
Forum: Fixing WordPress
In reply to: All pages are deleted or missingThis just happened to me as well, somewhere between 2.5 and 2.5.1. Although, search as I might, I cannot find my missing pages in the posts admin area, nor in phpMyAdmin. They seem to be really gone.
For me, my plugins were not deactivated.
Forum: Fixing WordPress
In reply to: WP 2.5 Media Library and old filesjokkesvin, did that plugin work for you?
Forum: Fixing WordPress
In reply to: WP 2.5 Media Library and old filesI’d like to know this as well. Maybe some importer will be available soon…
Forum: Themes and Templates
In reply to: making Page show index of posts?Moshu… wow, I’m a dork. Sure enough, that works like a charm. I just didn’t take my time in reading up on those new 2.3.2 features. Thanks!
Forum: Themes and Templates
In reply to: making Page show index of posts?Eureka! All solved. I did a little RTFM (http://codex.wordpress.org/Template_Tags/query_posts) and fixed it with a global
$more. Magic.Forum: Themes and Templates
In reply to: making Page show index of posts?Aha, getting real close now. Just found this help here: http://wordpress.org/support/topic/110676?replies=15
The post by doodlebee is most helpful:<?php if (is_home()) {query_posts('showposts=1');} ?>Except in my case, this page is NOT home. So I modify that line like:
<?php {query_posts('showposts=10');} ?>And this displays the last 10 blog posts in that journal Page like I intended. The only thing not working is the full post is showed, even though those posts have the more tag used. That’s curious.
Got it resolved. Turned out to be a plugin problem, Subscribe2. There’s some discussion of it here.
Turns out you have to change the path in install-helper.php from “../wp-config.php” to root. Works for me now.
There’s this post too, but not much help.
I upgraded from 2.2.2 to 2.3.1 via Fantastico. And I’m seeing this error on every admin page. Doesn’t seem to affect anything, but it’s annoying.
The odd thing is that my /wp-config.php in the root obviously exists. In my /wp-admin/install-helper.php is the correct path:
require_once('../wp-config.php');It’s like the blog root isn’t resolving correctly.