irregardless
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: “Page Template” not visible in dashboardI recently ran into a similar problem.
I have a development server that I use to test designs and changes on my custom theme before pushing to the live site. When I went to write a new page to test a new page template, the option to select the template was missing on the dev site, but was visible on the live site.
Suspecting a plugin conflict, I did a fresh re-install of WP2.6.1 and deactivated all my plugins. No dice.
Turns out I had to “remind” WordPress which theme to use. Even though the front-end of the site was working properly, the “Design” tab showed that I had no theme activated. I don’t know what would have caused that, but as soon as I “re-activated” my theme, the “Page Template” selector re-appeared on “Write Page.”
Forum: Fixing WordPress
In reply to: more link text with get_content_rss()Not a fix, but a work-around.
I get around this by just manually specifying the ‘read more’ link.
<?php the_content_rss('', FALSE, '', 20); ?><br /> <a href="<?php the_permalink() ?>">Read this</a>.Works pretty well.
Forum: Plugins
In reply to: Link Harvest ProblemI don’t know if it’s coincidental or not, but my harvest also tops out at the 75 mark.
Furthermore, I get this error when saving a post and debug V2 is activated:
Warning: strstr() [function.strstr]: Empty delimiter. in /~/wp-content/plugins/link-harvest.php on line 305 Warning: strstr() [function.strstr]: Empty delimiter. in /~/wp-content/plugins/link-harvest.php on line 305 Warning: Cannot modify header information - headers already sent by (output started at /~/wp-content/plugins/link-harvest.php:305) in/~/wp-includes/pluggable.php on line 275Forum: Fixing WordPress
In reply to: mailto links breaking my postsi’ll check with my host and see what they have to say, but let me run this by you as well:
if i use improper syntax like this :
<a href="mailto:test.example.com">email me</a>my post works fine. i get a working mailto link that launches my mail program and puts
test.example.comin the To: field.if i try
<a href="mailto:test@example.com">email me</a>it fails.
Forum: Fixing WordPress
In reply to: mailto links breaking my postswell i turned off all my plugins and the problem is still occurring; no ‘@’ signs to be had.
i checked, and yes, my host is running mod_security, but beyond that i have no idea how to find out if it is the cause of the problem.
now to be clear, i can type the @ in the body of a post just fine. it’s when i put the @ inside the ‘a’ tag to create the mailto link that it fails. the problem occurs whether i’m posting from multiple browsers on mac os x 10.4 or IE on win2k.
my hunch is still leaning toward some kind of character encoding conflict, but i haven’t made much progress in that direction.
Forum: Fixing WordPress
In reply to: mailto links breaking my postsi did some playing and, on a hunch, have determined that wordpress is choking on the ‘@’ symbol. as soon as i removed it, my mailto links were accepted. though they aren’t very useful without the ‘@’.
so that leads me to believe that it’s some sort of text encoding problem. in fact, if i input the html character entities via an email encoder, wordpress accepts it just fine.
that’s more of a workaround and not a solution. do my pages need to be using a particular text encoding? i think they’re utf at the moment.
Forum: Fixing WordPress
In reply to: mailto links breaking my postsyep, i’m using standard html mailto syntax and whenever i press save, my post is reset to the point before i started editing.