alexo05
Forum Replies Created
-
Just FYi, this issue is also happening on WPMu v. 2.8.4. I tried the new upgrade file and tried renaming the folder where the galleries get stored, memory limit up to 64MB but still the upgrade script doesn’t go through. ??
Using NextGen v. 1.3.5
Forum: Fixing WordPress
In reply to: Comments don’t work; blank pageFYI… I was having this same problem, and I realized that I was missing this line of code near my submit button:
<?php comment_id_fields(); ?>
So in my comments.php file, it looks like this:
<p><button type="submit" name="submit" id="sub">Submit</button> <?php comment_id_fields(); ?> <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>"></p>
In the Default WP theme, the code looks like this:
<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /> <?php comment_id_fields(); ?> </p>
Forum: Fixing WordPress
In reply to: Getting blank page after trying to commentFYI… I was having this same problem, and I realized that I was missing this line of code near my submit button:
<?php comment_id_fields(); ?>
So in my comments.php file, it looks like this:
<p><button type="submit" name="submit" id="sub">Submit</button> <?php comment_id_fields(); ?> <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>"></p>
In the Default WP theme, the code looks like this:
<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /> <?php comment_id_fields(); ?> </p>
Forum: Themes and Templates
In reply to: wp-comments-post.php = Blank page : Broken comment abilityFYI… I was having this same problem, and I realized that I was missing this line of code near my submit button:
<?php comment_id_fields(); ?>
So in my comments.php file, it looks like this:
<p><button type="submit" name="submit" id="sub">Submit</button> <?php comment_id_fields(); ?> <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>"></p>
In the Default WP theme, the code looks like this:
<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /> <?php comment_id_fields(); ?> </p>
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] 500 Error with Flash image uploaderYea no problem. I’m able to upload photos that way.
Forum: Plugins
In reply to: image for captcha does not load?? :(Hi all
I was having this same issue. I think the plugin will have a broken link to the image if your wordpress install *is not* on your root directory *and* you configured your blog to still point to the root directory.
(For instance, your wp install is in “domain.com/wordpress” but your blog displays at “domain.com”)
The reason is the “bloginfo(url)” call inside the zrx_captcha.inc.php file in the simple_captcha directory. If you feel adventurous, open that file in a text editor (can’t edit plugin through WP backend) and replace all instances of “bloginfo(url)” for “bloginfo(wpurl).”
wpurl points to your install URL instead of your blog URL. This worked for me (see here revistaelite.com).
Forum: Developing with WordPress
In reply to: wp_list_bookmarks – exclude categoryHmm that didn’t work for me ??
Using WP 2.2.3
Forum: Fixing WordPress
In reply to: Blogroll, ‘WordPress database error’Hey there
I’ve actually found that whenever using the “exclude” parameter with wp_list_bookmarks, this error string will show up. I don’t know if any other parameter will cause the same behavior, but it seems odd.
I haven’t found a solution.
Forum: Fixing WordPress
In reply to: Problems with permalinksFWIW, I too have encountered this same problem.
Here’s the kick, while using WP 2.2, permalinks worked. Now that I just upgraded to 2.2.1, they do not.
mysql 4.0, hosted by godaddy.
This is what GoDaddy sez about mod_rewrite:
Mod_rewrite is an Apache web server module installed on all of our Linux severs by default; it does not have to be installed or enabled. Our Linux hosting accounts support most mod_rewrite functionality.
You will not need to enable mod_rewrite in your httpd.conf, as this is handled at a global level. All you will need to do is add the desired code to the body of your .htaccess file.
NOTE:The .htaccess file containing the rewrite rules must be in the same directory as the target files.
Hope it sheds some light into the problem.
Forum: Fixing WordPress
In reply to: Can’t create categoryScratch that. The following workaround worked for me:
Log in with admin;
Assign another user in your WP install Administration privileges;
Log off admin / log in with other user;
Give the admin a user lesser priviliges (i made it an editor);
Update;
Give admin, administrator privileges again; Update again;
Log off other user;
log in admin.You should be able to create categories now. This is the “reaffirm admin privileges” solution found here.
I’m not sure why this happening. But it’s very odd.
I think the devs are on it, tho.
Forum: Fixing WordPress
In reply to: Can’t create categoryHi all
I too can’t create new categoreis.
I’ve tried that plugin recomended above, and although once I added and activate it, it allows me to create new categories; once I deactivate it, WP won’t allow me to create via the default way.
What’s more, when I try to create a category, and I click on the “Add Category” button, nothing happens. But when I try to navigate away, WP asks me to confirm that I do indeed want to navigate away from the page.
Dunno if this is a tell-tale sign of what’s going on.
Has anyone searched the trac for a similar problem?
Forum: Plugins
In reply to: Future Post listings in WP 2.1We’re using WordPress MU and Future Posts are not showing up at all. They get saved and placed in the manage posts list, but they don’t get published onto the site.
I tried a standalone WP 2.1 and same thing, the post doesn’t show up.
Forum: Fixing WordPress
In reply to: 2.1 Image InsertionWell, turns out the bug has hit me. Now I can’t upload images while using FF. When I click on the button to edit the image, I get a blank box and it won’t go away.
It worked on an Opera browser, haven’t tested in IE.
I’ve read somewhere this is actually a Javascript / FireFox issue.
True??
Forum: Fixing WordPress
In reply to: 2.1 Image InsertionHey there
We’re having a similar problem with our image insertion box. When one of our guys tries to upload an image, and clicks on the upload button, he gets a blank box. He’s using FireFox. And when on a PC and IE, he can’t see the text for his post in the editor.
The funny thing is, none of this happens to me, and I use all kinds of browsers.
Where you able to solve your problem?