mgnbrunty
Forum Replies Created
-
Second bugfix
line 181 in the original file says
$feed->set_feed_url(get_bloginfo( 'wpurl' ).$url.'?feed=make-pdf-newspaper');
replace this with
$feed->set_feed_url(get_bloginfo( 'wpurl' ).$url.(strstr($url,'?')?'&':'?').'feed=make-pdf-newspaper');
There is a third bug in the digest stuff, but I can’t chase it down.
Mike
Actually just found and fixed another bug, and I think there is at least one more.
I note is is Gnu Affero. Happy to contribute back the fixes. best however if they make it into the main codebase.Forum: Fixing WordPress
In reply to: Static front page and Post pageI’ve got this problem too
>> Why not navigate to where your posts are displayed?
Where would that be then?
I guess the point is that if you set up your homepage as a page, there’s no obvious URL that points to the latest posts. I’ve tried all of the following ?p ?p=0 ?posts ?cat=0 (?cat=1 obviously gives you something close to what you want, but only gives you things in category 1)
Mike
Forum: Fixing WordPress
In reply to: Lost Password, Link In Email Not Valid (key), ‘Fix’ Does Not WorkCraig,
It’s not entirely clear from the above stream of comments, but to get this to work for users who have previously requested password reset, you have to replace the files AND make an additional change on line 94 of wp-login.php
Fire up your favourite text editor and replace the line
if ( empty($key) ) {
with the line
if ( empty($key) || preg_match(‘/[^a-z0-9]/i’,$key) != 0) {There are other places you could be making the change, I did it on line 94 then it worked.
Mike