palamedes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to remove attachment from post, without deleting the mediaAnything?
Forum: Fixing WordPress
In reply to: Smiley Styles?Are you sure they don’t already have a unique class?
Link the site.
Forum: Fixing WordPress
In reply to: Updated or new post and recently are not revealed in main page.What version of wordpress?
Forum: Fixing WordPress
In reply to: site overwhlemed (shut-down) by spiders and feedersAh cool.. Shows you what I know (I’ve always used route.. heh )
Forum: Fixing WordPress
In reply to: site overwhlemed (shut-down) by spiders and feedersWell that’s just an iptables block though..
My way actually hangs them while their TCP socket times out.. *glee*
Forum: Fixing WordPress
In reply to: Can I add content without notifications being sent?Its also important to understand that most feed readers are by request only, not push.
Just because you are updating stuff doesn’t mean it will suddenly be on their computer. More over they are date sensitive, so if you add a new bit of content but set its date to June of 2000, it will already be off the page.
Usually adding old content back into a new wordpress is perfectly safe =) (Unless you’re using some third party plugin to alert people as whooami mentioned..)
Forum: Fixing WordPress
In reply to: Special characters converted to question marks on saveYep deuced is on to it.. Nice catch man.
Forum: Fixing WordPress
In reply to: Code CorruptionI used to use it.. It works and is likely the problem you’re seeing on_edge.
Forum: Fixing WordPress
In reply to: How to know if I’m hacked?Yep its there.. Been there since Dec. ’06
*shrug*
Forum: Fixing WordPress
In reply to: site overwhlemed (shut-down) by spiders and feedersAh sorry..
http://www.robotstxt.org/robotstxt.html
The robots.txt file is a file you can put on your system that will instruct the various web search bots out there what they can and can’t search. More over you can put in a time limit on there that says “only search this often”. (google doesn’t listen to it, but you can log into their site and control it from there)
The robots.txt file on my site looks like this;
User-agent: * Crawl-delay: 240 Disallow: /mint/ Disallow: /uploads/ Disallow: /trap/The lines that are important for you are the Crawl-delay and the Disallow. Basically it tells robots to not crawl anything in the mint, uploads or trap directory and only to crawl my site every 240 seconds.
The crawl-delay will do a lot to help keep the bots that follow robots.txt at bay.
ANY robot that doesn’t follow that file, or falls into the trap of going to a directly specifically disallowed will show up in my logs. My log scrapper will then route them to local host:
route add -host {incoming.annoying.bots.ip} gw 127.0.0.1What this does is it basically tells their bot to search themselves. Usually a bot will hang here .. opening up their tcp port until it times out.. (5 minutes or so).. and costs you nothing ~ its a way to slow’em down or at the very least to give them a “go away” message.
Search your logs for any IP that is pounding on your site and route it..
Forum: Fixing WordPress
In reply to: How to know if I’m hacked?Oh.. hrmm I really can’t imagine not being willing to provide a link.. but then I guess I have nothing to hide..
And yes if you want any kind of specific help a link is required.. For the same reason it’s very hard to get good technical support over the phone..
whooami why does your name link your blog but mine doesnt? is there a minimum post count or something?
Forum: Fixing WordPress
In reply to: Search & index.htmlYou might want to check your apache (or server) to make sure .php is first and .html is second in order of load.
=)
Forum: Fixing WordPress
In reply to: How to know if I’m hacked?I have to agree with whooami here.
If you’re just looking for script injection then you can always run “select id from wp_posts where post_content like ‘%<script%’;” on your database to see if any scripts have been added to your posts..
Otherwise, link your site. The only reason not to link your site is; a) you’re one of the hackers fishing for ways TO hack a wordpress site, or b) you are embarrassed of the content of your site.
If it’s A piss off. If it’s B I don’t think you have a thing to worry about here. You wont be judged no matter whats on there.. (Short of child porn or something.. )
Forum: Fixing WordPress
In reply to: site overwhlemed (shut-down) by spiders and feedersI would suggest following robots.txt as well ..
Then parse your logs, any one that isn’t following it route them to local host.
Forum: Fixing WordPress
In reply to: Special characters converted to question marks on saveIf you do have access to a phpinfo page do a search for “mbstring”.. “Multibyte Support” must be enabled.
(Someone correct me if thats incorrect.. I assume you guys use mbstring for all the multibyte stuff as opposed to rolling your own.. )