ralfrottmann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: ClickCounter Plugin no longer works (WP 2.0)Any news on this issue?
Forum: Fixing WordPress
In reply to: ClickCounter Plugin no longer works (WP 2.0)The version 2.0 wp-blog-header.php definitely breaks stuff in Click Counter – maybe not always but as it appears obviously in some cases.
I have now applied a dirty workaround:
1.) I have renamed the version 1.5.2 wp-blog-header.php to wp-blog-header-old.php .
2.) I have uploaded it to my blog’s root dir. It sits there nicely in parallel to wp-blog-header.php from version 2.0.
3.) I have changed the
require('./wp-blog-header-old.php');to reference the old (version 1.5.2).Click Counter works again. Obviously this is dirty. I hope somebody will find the root cause, soon.
Forum: Fixing WordPress
In reply to: ClickCounter Plugin no longer works (WP 2.0)Thanks for replying.
Click Counter is listed as one of the working with WP 2.0 plugins on the wordpress.org update pages. However it seems as if I am not the only one having problems with WP 2.0 and go.php .Viper007Bond, have you also updated your wp-blog-header.php in blogroot?
If I uncomment the first require() statement in go.php thinks work fine. (However counting stops for obvious reasons).
Maybe it’s a specific combination of php/webserver settings which break it.
Forum: Fixing WordPress
In reply to: ClickCounter Plugin no longer works (WP 2.0)As there seems to be not too much of an idea what causes Click Counter to break in Wp 2.0 I wonder:
==> Is there anybody out here who has a ***working*** WP 2.0 install with Ozh’s Click Counter 1.01?
This would help me identifying whether I am the only one having difficulties or whether others experience the same issue.
So if you run WP 2.0 and Ozh’s Click Counter plugin and do not see any issues with the go.php script, please post an answer to this thread!
Thanks in advance.
Forum: Fixing WordPress
In reply to: ClickCounter Plugin no longer works (WP 2.0)Tried to nail it down further. It now appears that things no longer work due to changes in the
wp-blog-header.php
file.
If I uncomment the
require('./wp-blog-header.php');line in the go.php (and obviously also the calls to wp_ozh_click_increment()) everything works fine.Any help is greatly appreciated!
Forum: Fixing WordPress
In reply to: ClickCounter Plugin no longer works (WP 2.0)Things are getting more weird… as the above seems to solve the issue, it appears to me that IE 6 no longer redirects while Firefox does. Any idea?
Forum: Fixing WordPress
In reply to: ClickCounter Plugin no longer works (WP 2.0)It appears to me that the
$is_IISvariable seems to be no longer available in WordPress 2.0. I have altered the go.php script as follows and it seems to work again:if ($is_IIS) {
header(“Refresh: 0;url=$url”);
} else {
header(“Refresh: 0;url=$url”);
// header(“Location: $url”);
}`So effectively I put the “IIS way” of redirecting a browser (Refresh: 0; url=$url) into the else branch of the $is_IIS condition.
Can anybody confirm similar observations? The Click Counter plugin is listed as one which should work seamlessly with WP 2.0 though…
Forum: Fixing WordPress
In reply to: Please help solving PERMALINK issue!SOLVED IT!
Now all three options offered by WordPress 2.0 work like a charm!!!
Thank you so much for your patience. Any idea why the default way offered by WP 2.0 did not work?
Man, I hope this helps lots of users out there.
Forum: Fixing WordPress
In reply to: Please help solving PERMALINK issue!I do see the permalinks. They seem to be correct. However clicking them I end up on a “This page cannot be found” error.
As an example for one of the generated links here is the URL:
http://www.rottmann.net/blog/index.php/2006/01/02/updated-blog-to-version-20/
So the URLs get updated however once I submit this URL it seems as if there is no redirect. Instead the browser tries to load the physical page at the address which – obviously – is not there.
Forum: Fixing WordPress
In reply to: Please help solving PERMALINK issue!… while “default” points to the URL parameter options ?p=xyz right? The URL parameter version is not considered a permalink at all, or?
Well, seems as if I can only wait. I still wonder why WordPress 2.0 does not inject the above code into my .htaccess file.
Forum: Fixing WordPress
In reply to: Please help solving PERMALINK issue!I am close to giving up and migrating to MovableType. I changed the .htaccess file as you’ve posted. Issue remains. The key thing is that WordPress 2.0 ***never adds any rewrite rules to .htaccess***. Do you have any idea why? Isn’t it supposed to add a list of rewrite rules to .htaccess when I change the permalinks options?
Forum: Fixing WordPress
In reply to: Please help solving PERMALINK issue!Thanks again for helping. Unfortunately it still does not work. My WordPress 2.0 is in the blog subdir. So I changed .htaccess to:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule># END WordPress
However, issue remains. The problem seems to be that WordPress *does not ADD any rules* to the file once I select one of the permalink options. It leaves the .htaccess file untouched. This to me seems to be the root cause.
Any idea?
Forum: Fixing WordPress
In reply to: Please help solving PERMALINK issue!Yes. Both.
The file can be fully accessed. As I have stated in my initial post: WordPress’ built-in file editor can successfully edit the .htaccess file. A clear indication that the 777 access rights work fine.Non of the settings in Options > Permalinks work.
Any idea?
Forum: Fixing WordPress
In reply to: Permalinks .htaccess issue – No more ideas… please help!Hello WordPress Community…
… can anybody try to help with this? Even steps to troubleshoot on PHP or DB level would be greatly appreciated.
Regards
RRForum: Fixing WordPress
In reply to: Permalinks .htaccess issue – No more ideas… please help!Just for clarification:
I believe my WordPress install does not process any posts when I update the permalinks structure. As stated below
– write access to .htaccess is positive and checked (admin panels file editor can edit and [b]save[/b] changes
– mod_rewrite works (manually added rewrite rules work like a charm)
– WP finds the correct .htaccess file (if I change write permissions to read-only and update permalinks strcuture, I do get the “cannot write” message in admin panel — but no code to manually copy into .htaccess file)
So I guess somehow WP “thinks” it does not need to update any rewrite rules
Any hints how to troubleshoot this? Are there any flags in any tables which might need to be reset?
Best regards
Ralf