Recent Topics

1 Dec 19, 2010 17:18    

My b2evolution Version: Not Entered

I have a blog that allows users to register themselves, but i want to block certain people from registering again after i delete their username, by blocking their ip adress is this possible, How do i do this?

2 Dec 20, 2010 01:31

Welcome to the forum!

Most users have dynamic IPs that change every few days. They can even register from other computer from work, school or friend for example

Anyway, there's no option to block users by IP in b2evo. I can give you some tips if you want to mess with PHP code.

3 Dec 20, 2010 01:55

The host of my website allows me to block ip adresses through the ht acess editor but it ask me for the directory to select , but i don't know which one. Any ideas?

4 Dec 20, 2010 02:34

Try this

domain.tld/path_to_b2evo/htsrv/register.php

5 Dec 20, 2010 04:17

Thanks for your help but what should i do with the code you sent me, i'm thinking its easier to create a ip blocking file and place it in my ht acess editor, i have a code but i don't know how to create and place the file in my htacess .

6 Dec 20, 2010 05:44

It's note a code, it's the URL you may want to limit access to. Try this in .htaccess

<Files register.php>
    order allow,deny
    allow from all
    deny from 12.45.67.90
</Files>


Form is loading...