fdfhdoihansdhgasdfa
Forum Replies Created
-
Forum: Installing WordPress
In reply to: “google-sitemap-generator”UPDATE. Strangely, but happily, the error disappeared when I logged back into WordPress an hour later on a different computer. Working great now. Perhaps a strange cookie or cache issue or something?
Forum: Installing WordPress
In reply to: “google-sitemap-generator”Wow, that’s wild… you posted just three hours before I encountered this same problem. I’m having the same WordPress error: “Cannot load sitemap.php” when I try to go to “Configuration” after installing and activating the plug-in.
Never used it before, and trying it out on WP 2.8.0
Any thoughts anyone?
Forum: Fixing WordPress
In reply to: ‘Previous entries’ gives 404Just wanted to say that jrm213 had the only solution that worked for me (see above). Nice work and thanks!
Forum: Fixing WordPress
In reply to: HTTPS / SSL: Securing a single page (e.g. orderform)As usual, after 3 days of trying to find the answer, I found it minutes after I posted. Here’s my solution and it works… but I don’t know if there’s an easier way or if there are drawbacks to doing it this way, so any feedback would be appreciated. All I did was put this at the very top of my Page template (change the page name for your own page title of course):
<?php if ( is_page('make-a-donation') ) { if($_SERVER['SERVER_PORT'] != '443') { header('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); } } else { if($_SERVER['SERVER_PORT'] == '443') { header('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); } } ?>
Forum: Fixing WordPress
In reply to: HTTPS / SSL: Securing a single page (e.g. orderform)I’m with melvins and davgree… I can’t seem to figure out how to serve SSL from just a single page of the site. I’ve been trying and trying to get the right combination of mod_rewrite rules working in my .htaccess file, but none of them gets it just right. I believe it has to do with the WordPress rewrites already being done in the .htaccess. Can anyone help us?
Forum: Fixing WordPress
In reply to: Paragraph tag dissappearing upon save or code view changeAfter a few days of trying to get make this work, I gave up and then found the FCKEditor plugin which, after a few preliminary tests, seems to work just fine and doesn’t exhibit the same problems as WP’s default visual/code view. You can find it here: https://www.ads-software.com/support/topic/142936?replies=11#post-660065 or here: https://www.ads-software.com/extend/plugins/deans-fckeditor-for-wordpress-plugin/
Obviously this is no solution, but just a workaround until someone on the WP team can sort this one out.
Forum: Fixing WordPress
In reply to: Paragraph tag dissappearing upon save or code view changeOK, I just did a test in a Post. Same issue there. Here is an example:
<div class="test">
<p>one</p>
<p>two</p>
<p>three</p>
</div>
If I put that in code view, then save and flip between visual and code view, each time I flip back to code view it’s deleted another set of
<p>
and</p>
tags. So after 3 or four flips between visual and code view, here is what I end up with in code view:<div class="test">onetwothree</div>
Can anyone help me out here?
Forum: Fixing WordPress
In reply to: Paragraph tag dissappearing upon save or code view changeAddendum to my last post: this is happening on Pages. Can’t say whether it’s happening on Posts or not.
Forum: Fixing WordPress
In reply to: Paragraph tag dissappearing upon save or code view changeI’ve been having the same problem. This is a huge problem, and a real showstopper for my use of WordPress, since I can’t very well hand off a website to a client which they can’t update.
<p>
tags are disappearing when inside of a div. I put them back in when in code view, and they just get deleted again. Please, someone? Anyone?