Greenguy's Board

Greenguy's Board (http://www.greenguysboard.com/board/index.php)
-   General Business Knowledge (http://www.greenguysboard.com/board/forumdisplay.php?f=10)
-   -   Eonpal?? WTF is this? (http://www.greenguysboard.com/board/showthread.php?t=37016)

LowryBigwood 2006-12-24 09:30 PM

Quote:

Originally Posted by ladydesigner (Post 321028)
Hi DD. Not to sound like a total newbie but I've got some galleries floating around that these jerks are also linking to. What exactly do I need to add to my htaccess files to block them or bust out of their frames?

I'm not DD, but I think Useless provided the code for your .htaccess in a previous post. Here it is.

RewriteCond %{HTTP_REFERER} eonsex\.com [NC]
RewriteRule .* - [F]

Useless 2006-12-24 09:36 PM

I'm thinking we need to kill both of their domains in order to block as much of their slime as we can.

RewriteCond %{HTTP_REFERER} eonpal\.com [NC,OR]
RewriteCond %{HTTP_REFERER} eonsex\.com [NC]
RewriteRule .* - [F]

If anyone has something a better than that - or corrections - let us know. Every htaccess site I go to gives me a something different from the last. ;)

EDIT- Remember to test your site immediately after editing your .htaccess file.

LadyD - I don't know of any frame killing methods with .htaccess. I think the standard javascript framebuster is all we have at our disposal.

ladydesigner 2006-12-25 11:25 PM

Thanks guys. I guess I'll be editing htaccess files in the morning. :(

johnnybg 2006-12-26 04:31 AM

Since my fusker saga from last spring I block first and ask questions later. Thanks everyone for heads up! :)

LowryBigwood 2006-12-26 06:43 AM

Quote:

Originally Posted by Useless Warrior (Post 321050)

EDIT- Remember to test your site immediately after editing your .htaccess file.

Yes, do this for sure. It caused my site to say this after adding the code.

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, postmaster@planet-xxx.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log. |shocking|

Simon 2006-12-26 07:07 AM

Lowry - I haven't seen your htaccess file to know what's already in there, but you may need to add this above the first RewriteCond:

RewriteEngine on

Some (few?) servers may need both of these lines added above the first RewriteCond:

RewriteEngine on
Options +FollowSymlinks

That second line would be used if your server isn't configured with FollowSymLinks in its section in httpd.conf, and you get a 500 Internal Server error when using the code without the second line.

~~

Another option could be to use something like this:

order allow,deny
deny from . eonpal.com
deny from . eonsex.com
allow from all

The denied users in this case will get a 403 error saying something like "You do not have permission to access this site." Or if you configure a custom error page for 403 errors, you can show them whatever you like.

LowryBigwood 2006-12-26 07:28 AM

Thank You Simon!!

That worked. Here is my htaccess, it's basic but it should do the job.

RewriteEngine on
RewriteCond %{HTTP_REFERER} eonpal\.com [NC,OR]
RewriteCond %{HTTP_REFERER} eonsex\.com [NC]
RewriteRule .* - [F]
ErrorDocument 400 http://www.triplexworld.com/
ErrorDocument 401 http://www.triplexworld.com/
ErrorDocument 403 http://www.triplexworld.com/
ErrorDocument 404 http://www.triplexworld.com/
ErrorDocument 500 http://www.triplexworld.com/
AddHandler server-parsed .htm .html

Useless 2006-12-26 09:15 AM

Quote:

Originally Posted by LowryBigwood (Post 321180)
Yes, do this for sure. It caused my site to say this after adding the code.

Internal Server Error

Sorry about that, Lowry. I already had a bunch of rewrite rules, so I only pasted in what I had added on to include those eonfuckers.

Mr Spock 2006-12-27 12:29 AM

I noticed these guys in my stats as well - Do I need to block them from each freesite that I have created.

How easy is it it to edit my htaccess file? I know zip about it!

Flex 2006-12-27 04:33 AM

I figured something like that was going on because no gives you something for nothing.

I have been doing alot of seo research on my sites stats as of late and that source was next on the list to find out about. Thanks for making my job alot easier guys |thumb

johnnybg 2006-12-27 07:36 AM

Quote:

Originally Posted by Mr Spock (Post 321307)
I noticed these guys in my stats as well - Do I need to block them from each freesite that I have created.

How easy is it it to edit my htaccess file? I know zip about it!

You need to upload .htaccess file to your domain root ant then it will be "propagated" to all subdirectories on that domain.

First, check out if you already have .htaccess file on your server. If you do, download it locally. Note the dot at the beginning of file name - it needs to be there.

Use simple text editor, copy/paste the code posted by UW, upload that file and you're set.

Remember to test several of your sites if everything is working. If something is wrong you can just undo the changes you made.

Mr Spock 2006-12-27 09:03 AM

Thanks Johnybg - sounds reasonably idiot proof.

troy 2007-01-05 07:18 AM

I wanted to change the .htaccess on cumshotspecialist but I did not make this one.
Normaly I use this one for fusker:

AuthUserFile /dev/null
AuthGroupFile /dev/null
RewriteEngine On


ErrorDocument 400 http://www.cumshotspecialist.com/
ErrorDocument 403 http://www.cumshotspecialist.com/
ErrorDocument 404 http://www.cumshotspecialist.com/
ErrorDocument 500 http://www.cumshotspecialist.com/
ErrorDocument 501 http://www.cumshotspecialist.com/
ErrorDocument 503 http://www.cumshotspecialist.com/

RewriteCond %{HTTP_REFERER} !^http://www.cumshotspecialist.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.cumshotspecialist.com/:80/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.cumshotspecialist.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.cumshotspecialist.com/:80/.*$ [NC]

ReWriteRule .*\.(JPG|jpg|JPg|Jpg|GIF|gif|GIf|Gif)$ http://www.mlilahsporndimension.com/hotlink.htm [R,L]

But when I opened the .htaccess on cumshotspecialist
there is this:

# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*


Options +Includes
XBitHack on



order deny,allow
deny from all
allow from all


order deny,allow
deny from all

AuthName www.cumshotspecialist.com
AuthUserFile /home/cumshots/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/cumshots/public_html/_vti_pvt/service.grp

I am not sure what do, I don't know shit about .htaccess. Can I use just the first or do I have to adjust the last one |huh
DangerDave made my link list 4 years ago and I don't know if he wrote it.
Can anyone please help me with this?


All times are GMT -4. The time now is 01:32 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc