Sjeng
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP 3 and permalinksWell, now my page doesn’t link to any post anymore… Tried to set the permalinks to /%year%/%category%/%postname%/, but nothing. :S
I now get:Not Found The requested URL /wordpress/2010/07/testpost/ was not found on this server.
link: https://www.harmoniestmichael.nl/wordpress/
If I set them back to the standard, ugly, ?P=N setting, it works fine, but I want pretty permalinks ??
This is what I get:
If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all.
Well, I’m sorry WP, but I do not HAVE a htaccess file, nor is it in the wordpress3.0 zip package. ??Forum: Fixing WordPress
In reply to: People Cant comment!!!!Akismet isn’t a free service it seems…
I’ve had the same problem, so I tried the standard theme, but the problem remains:
Whenever I want to leave a comment, there’s a line that says “Leave a Reply
You must be logged in to post a comment.”.
So, I log in, but I get the same line, even after refreshing. No comment box for me. Had this problem since WP2.1, and now with WP3.0 the problem still isn’t solved… 3 years without comments ??my site: https://www.raymondhaaken.nl/
my theme is based on Driver 1.0
Strangely enough I did get comments in the first month or so (using WP2.1 I think). But then it just stopped.
I did change some settings back then, because I wanted people to:
– be logged in before commenting
– have at least 1 previously approved comment
Which is all I need to keep spammers at bay. Akismet isn’t free, and Captcha has issues apparently. But still no luck.Forum: Fixing WordPress
In reply to: WP 3 and permalinksFrom what I’ve heard is that WP3 no longer requires a .htaccess file. Which explains why it isn’t there in the first place.
But when trying to save my custom permalink format, WP3 does ask for a htaccess file… Seems to me WP3 isn’t completely bug free…Forum: Fixing WordPress
In reply to: how can I add a comment field to each new page I make?I messed around a bit and came up with this:
`<?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?><?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
</div>
</div><?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this entry.’, ‘<p>’, ‘</p>’); ?>
<!– New comment code part –>
<table width=”100%” border=”0″ celpadding=”0″>
<tr>
<td width=”450″ align=”left” valign=”top”>
<?php comments_template(); ?>
</td>
</tr>
</table><!– end new part –>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>`
Just adjust the td width=”450″ to the width that suits you best.
Forum: Fixing WordPress
In reply to: comments dont workI’m having the exact same problem.
I’ve posted my findings here:
Forum: Fixing WordPress
In reply to: Can’t Comment at all…I’ve upgraded to WP 2.2, clean start, uploaded a new, clean, theme. Activated it all without problems, looked at my page, and still no comment boxes, only the message: You must be logged in to comment, which I AM… *RAAAH* :'(
If I UNcheck the option “users must be registered and logged in to comment” it works, but I only want registered users to be able to comment.
So I seem to have found the error here.- If I check the “users must be registered and logged in to comment” option, the comment box disappears, and users are asked to log in, even if they are allready logged in!!
Could it be my MySQL database??? (I also have a forum, and that works just fine by the way…)
Or could it be WP 2.2 itself?
Anyone???
Forum: Fixing WordPress
In reply to: Can’t Comment at all…as I said in the 1st post:
I tried the standard theme, an unmodified theme, and my own theme, but it’s all the same.
I’m gonna try a whole new fresh page, with unmodded php files, and just copy paste my own custom pages into the theme, and see what happens…
Forum: Fixing WordPress
In reply to: Can’t Comment at all…I really need help here…
Forum: Fixing WordPress
In reply to: Can’t Comment at all…another desperate bump…
It seems, that after you’re logged in, the site doens’t recognize you as being logged in and tells you that you must log in to comment, while you already are…
Maybe that’s the fault? Somehow the site doesn’t know you’re logged in???Forum: Fixing WordPress
In reply to: Can’t Comment at all…*bump* please help. can’t figure it out…
Forum: Fixing WordPress
In reply to: Title link goes to a 404 pageMoshu: Thanks! it was indeed the permalink setting.
I used an incorrect permalink option, and reset it to the bsic “pretty” date and name based option, and everything works just fine now. That link you gave explained a lot.resolved.
Forum: Fixing WordPress
In reply to: Title link goes to a 404 pageHelp anyone? has anyone else tried this driver 1.0 theme and gotten the same trouble? Got a solution?
Forum: Fixing WordPress
In reply to: Title link goes to a 404 pageI have the same issue, only it’s not the .htaccess file (it’s on 666).
here’s my page:
https://www.raymondhaaken.nl/I used a theme called Driver 1.0 as base.
When hovering the mouse over e newstitle or (comments), the link is wrong. It says:
https://www.raymondhaaken.nl/http:/www.raymondhaaken.nl/blog/?p=123
Which is obviously not right.I no nothing about php scripting, so could anyone try and find out what I should edit, and in which .php file?
Thanks!Forum: Fixing WordPress
In reply to: CODE page changes my coding tags1 and 2 helped thanks,
3) how do I do that? can’t seem to find the option to add or remove links in my sidebar (I’m a total WordPress noob)
4) I’ve posted some more details on this in the following topic:
https://www.ads-software.com/support/topic/117282?replies=1Can you show me what I should code? Copy/paste is about all I can manage when it comes to .php coding I’m afraid…