Ack!! I’m supposed to go live this morning with a new site and just discovered that as a result of last-minute stuff last night, all weblog pagination is broken.
I am using mod_rewrite to force lowercase letters…naturally, that big capital “P” that EE creates for pagination links creates a problem. But the thing is, nothing I’ve done thus far to try to get around it works. (The only other thing that would be affected is categories with a uppercase “C,” right? Thankfully, I’m not outputting that stuff.)
—tried find/replace on the pagination links—>find P | replace p
—tried altering mod_weblog.php line 3151 $PGR->prefix = ‘P’;
It looks like there are a lot of other dependencies in that file where I’m seeing a hard-coded uppercase P. I guess that would explain why my attempts failed.
Is anyone awake? Can someone help me get this squared away?
EDITED TO ADD: No wait! Crap! I can’t simply lowercase it because I have conditionals going on that essentially say “if segment_2 begins with a P, do this”...and I’m bound to have a url title that begins with a “p.” Okay, what about changing the pagination prefix to something totally unique or not likely to appear in that position otherwise? How ‘bout an “x”...? OMG I’m just rambling here.