onlyconnect
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP Super Cache] locking down cache with .htaccessMy observation so far is that this probably does not work with wp super cache full on, but probably does work with wp super cache half on. I’ve put this in with the cache half on for the time being.
Tim
Forum: Fixing WordPress
In reply to: What should the permissions be? Really!You have to choose between security and convenience.
Tim
Forum: Fixing WordPress
In reply to: RSS HELP.. Basic StuffYou will probably need an index.php rather than an index.html – though I guess you could have some PHP code in a frame.
I use an index.php and include a snippet of code that retrieves the blog entries.
Tim
Forum: Fixing WordPress
In reply to: How to get full text in RSS feed description elementAfter a fair amount of effort, I’ve worked out how to do this by amending the source. At your own risk etc etc, but if you edit the file:
wp-includes/feed-rss.php
find this line:
<description><?php the_content_rss(”, 0, ”, get_option(‘rss_excerpt_length’)) ?></description>
and change it to this:
<description><?php the_content_rss(”, 0, ”, get_option(‘rss_excerpt_length’),1) ?></description>
then you will probably get full HTML RSS 0.92 feeds again – if you selected full text feeds in the first place.
I can’t see any way of getting this *without* making the change (though I could be wrong, I guess plugins can do anything), so it seems to be a change in a recent version.
Tim
Forum: Fixing WordPress
In reply to: Hacked – advice requestedJust a bit more info – it appears the attack exploited a problem with another php application in order to upload or edit a file with a php extension in wp-content.
So this is not a WordPress bug, but illustrates the risks of having the web server able to both write and execute php files in the same location.
Tim
Forum: Fixing WordPress
In reply to: Hacked – advice requestedUpdate – the script’s primary purpose seems to be sending trackback spam.
Tim
Forum: Fixing WordPress
In reply to: Hacked – advice requestedSorry your answer makes no sense to me.
Tim