Part of the EllisLab Network
pMachine Pro has been replaced by ExpressionEngine, our full featured web publishing solution. Please consider upgrading.
You can download pMachine Pro here: Download pMachine Pro  |  Download Language Packs
   
3 of 5
3
Spam Registrations
Posted: 09 November 2004 09:52 AM   [ Ignore ]   [ # 37 ]  
Grad Student
Rank
Total Posts:  31
Joined  2003-03-04

Same person registered today on mine (66.199.238.21) Still pending though.

What username did you get? I had ibcegi.

Profile
 
 
Posted: 09 November 2004 08:15 PM   [ Ignore ]   [ # 38 ]  
Summer Student
Avatar
Total Posts:  5
Joined  2003-08-18

yup:
- 66.199.238.21 =  ibcegi
- 64.237.57.150 =  fpiuly

Is someone, somehow, accessing blogs only from people using pMachine?

Profile
 
 
Posted: 11 November 2004 12:32 AM   [ Ignore ]   [ # 39 ]  
Summer Student
Total Posts:  12
Joined  2004-03-28

Paul,
I would like to test!

>To block that specific email address, all I did is open up member.fns.php >and add a conditional during the data check to see if ‘mail.ru’ was part of >the email address. Who wants to test?

I know that I won’t have users with a mail.ru account.
Could you post a solution, so that I could try it.
It might not be a help for everyone, but for many.

Thanks a lot!
David.

Profile
 
 
Posted: 11 November 2004 06:38 AM   [ Ignore ]   [ # 40 ]  
Summer Student
Total Posts:  30
Joined  2003-11-07

<i>It might not be a help for everyone, but for many.</i>

Spammers will simply use a new address.  Shouldn’t the focus be on actually finding a fix to comment spam?

Profile
 
 
Posted: 11 November 2004 08:51 AM   [ Ignore ]   [ # 41 ]  
Research Scientist
Avatar
RankRankRankRankRankRank
Total Posts:  7534
Joined  2002-08-05

We’re working on getting pMachine Pro 2.4 out as soon as we can, which will have many new features for preventing spam.

 Signature 
Profile
 
 
Posted: 11 November 2004 09:02 AM   [ Ignore ]   [ # 42 ]  
Summer Student
Total Posts:  12
Joined  2004-03-28

Since you’ve used it on your own website, would you mind posting the code?
Thanks

Profile
 
 
Posted: 11 November 2004 09:25 AM   [ Ignore ]   [ # 43 ]  
Summer Student
Total Posts:  8
Joined  2003-07-02

I’m interested in knowing how to delete these guys from my member list. I’ve blocked the IP addresses, but they’re still in the list…

Janet

Profile
 
 
Posted: 11 November 2004 10:01 AM   [ Ignore ]   [ # 44 ]  
Summer Student
Total Posts:  9
Joined  2002-11-19

Add me to the list of people having problems with these guys, and add me to the non-technical side list as well.  Hopefully, there will an easy fix at some point, but thanks for the efforts up to now.

Profile
 
 
Posted: 11 November 2004 11:08 AM   [ Ignore ]   [ # 45 ]  
Research Scientist
Avatar
RankRankRankRankRankRank
Total Posts:  7534
Joined  2002-08-05

David -  Look in members.fns.php for this piece of code in the current pMachine Pro files, I have them around lines 463 and 881.

elseif ($signature == "" OR $signature == '&nbsp;')
    
{
        
return header("location:$memdir$messagespage$sfx?m=29");
    
}


Make that into this:

elseif ($signature == "" OR $signature == '&nbsp;')
    
{
        
return header("location:$memdir$messagespage$sfx?m=29");
    
}
    
elseif(stristr($signature, 'mail.ru') !== false)
    
{
        
return header("location:$memdir$messagespage$sfx?m=29");
    
}

 Signature 
Profile
 
 
Posted: 11 November 2004 11:09 AM   [ Ignore ]   [ # 46 ]  
Research Scientist
Avatar
RankRankRankRankRankRank
Total Posts:  7534
Joined  2002-08-05

janet -  Are you using the current version of the files?  Back at the beginning of the year I added the ability to delete multiple members at the same time using checkboxes.  With that ability you can delete these members even if they have no signature.

 Signature 
Profile
 
 
Posted: 11 November 2004 01:39 PM   [ Ignore ]   [ # 47 ]  
Summer Student
Total Posts:  9
Joined  2002-11-19

Hi Paul,

I can’t seem to find that ability in my control panel.  It says I’m running 2.3, did I miss something?  Thanks.

Profile
 
 
Posted: 11 November 2004 01:58 PM   [ Ignore ]   [ # 48 ]  
Research Scientist
Avatar
RankRankRankRankRankRank
Total Posts:  7534
Joined  2002-08-05

When was the last time you updated your scripts?  Try downloading them again from the download area and replacing everything in the /pm/ directory except the config.php file.  This includes the language files.

 Signature 
Profile
 
 
Posted: 11 November 2004 05:55 PM   [ Ignore ]   [ # 49 ]  
Summer Student
Total Posts:  8
Joined  2003-07-02

Hello Paul—
I’ve updated my files, but I don’t see anything with checkboxes allowing me to delete users. I followed the advice you gave Glenn, but my control panel looks the same.

Profile
 
 
Posted: 11 November 2004 06:05 PM   [ Ignore ]   [ # 50 ]  
Research Scientist
Avatar
RankRankRankRankRankRank
Total Posts:  7534
Joined  2002-08-05

I just installed a copy of pMachine Pro 2.3 yesterday and under View All Members and when you do a Member Search, the checkboxes are there.  Are you sure you updated the entirety of the cp directory?

 Signature 
Profile
 
 
Posted: 11 November 2004 06:22 PM   [ Ignore ]   [ # 51 ]  
Summer Student
Total Posts:  8
Joined  2003-07-02

Yes. Most of the files are dated Aug. 17, 2004. There are tons of broken links everywhere (according to GoLive), so presume I can’t just update pm.

I am not a techie. You need to tell me very specifically what to do. Up until now I’ve been able to manage the software perfectly well!

Profile
 
 
Posted: 11 November 2004 07:18 PM   [ Ignore ]   [ # 52 ]  
Research Scientist
Avatar
RankRankRankRankRankRank
Total Posts:  7534
Joined  2002-08-05

GoLive?  Did you upload the files to your server using it? 

I checked the downloadable files, and it definitely has the code in there.  You should replace every single file in the /pm/ directory except the config.php file.

 Signature 
Profile
 
 
Posted: 11 November 2004 07:20 PM   [ Ignore ]   [ # 53 ]  
Summer Student
Total Posts:  8
Joined  2003-07-02

I can’t seem to get into my control panel at all now. “The requested URL was not found on the server.”

Profile
 
 
Posted: 11 November 2004 07:22 PM   [ Ignore ]   [ # 54 ]  
Research Scientist
Avatar
RankRankRankRankRankRank
Total Posts:  7534
Joined  2002-08-05

janet -  Want to just email me and we can figure this out?

 Signature 
Profile
 
 
   
3 of 5
3
 
Post Marker Legend
New Topic New posts Hot Topic Hot Topic with new posts New Poll New Poll Moved Topic Moved Topic Sticky Topic Sticky topic
Old Topic No new posts Hot Old Topic Hot Topic with no new posts Old Poll Old Poll Closed Topic Closed Topic Announcement Announcements
Theme
Change Theme
Visitor Statistics
The most visitors ever was 233, on December 18, 2007 12:04 AM
Total Registered Members: 64509 Total Logged-in Users: 1
Total Topics: 81067 Total Anonymous Users: 0
Total Replies: 436296 Total Guests: 15
Total Posts: 517363    
Members ( View Memberlist )
Active Members:    jackdaws