Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> RN Enhancement Requests and Suggestions
Author Message
blinksy
Hangin' Around



Joined: Apr 25, 2007
Posts: 33

PostPosted: Mon Apr 30, 2007 8:37 am Reply with quote

Hi,

I tried implementing the nuke no user email verification mod as All my registration emails go straight to junk email folders, leaving a lot of my users in the waiting section.

Can anyone suggest a way to either disable the user verification or get my emails out of the junk folder?

Sorry if this is the incorrect forum to post in Sad
 
View user's profile Send private message
hitwalker
Sells PC To Pay For Divorce



Joined:
Posts: 5661

PostPosted: Mon Apr 30, 2007 8:56 am Reply with quote

junk email folders of your members ?
 
View user's profile Send private message
blinksy







PostPosted: Mon Apr 30, 2007 11:08 am Reply with quote

Yes, I have been testing with various different email accounts and both in hotmail and gmail, my registration activation email goes into the junk email folder. When users are keen to visit my site half of them dont look in there and then forget about it.
 
hitwalker







PostPosted: Mon Apr 30, 2007 11:59 am Reply with quote

is the outgoing message and title somewhat altered or is it pure standard text ?
 
evaders99
Former Moderator in Good Standing



Joined: Apr 30, 2004
Posts: 3221

PostPosted: Mon Apr 30, 2007 12:14 pm Reply with quote

There's a number of No Mail / Auto-activation hacks you can try

_________________
- Only registered users can see links on this board! Get registered or login! -

Need help? Only registered users can see links on this board! Get registered or login! 
View user's profile Send private message Visit poster's website
montego
Site Admin



Joined: Aug 29, 2004
Posts: 9457
Location: Arizona

PostPosted: Mon Apr 30, 2007 5:52 pm Reply with quote

blinksy wrote:
Yes, I have been testing with various different email accounts and both in hotmail and gmail, my registration activation email goes into the junk email folder. When users are keen to visit my site half of them dont look in there and then forget about it.


Very odd. I have not seen that problem, at least not to the scale that you seem to be referring to. Some mail services will add headers to the emails in the junk folder that may give you a clue as to why they are considering it junk.

It might be good to take a look at the expanded email headers and see if anything stands out.

_________________
Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! 
View user's profile Send private message Visit poster's website
blinksy







PostPosted: Mon Apr 30, 2007 11:31 pm Reply with quote

evaders99 wrote:
There's a number of No Mail / Auto-activation hacks you can try


I tried to use one, but when it came to using your account all i got was blank white pages.

Can anyone suggest a good YA hack?
 
hitwalker







PostPosted: Tue May 01, 2007 4:01 am Reply with quote

try turning on error report,that will show some error as blank pages indicates that.
 
blinksy







PostPosted: Tue May 01, 2007 8:39 pm Reply with quote

Turned on error reporting and received.

Fatal error: Cannot redeclare makepass() in /home/metalthron/domains/metalthrone.net/public_html/modules/Your_Account/index.php on line 48

Here is a snippet of the YA file

Code:
function makePass() {

    $cons = "bcdfghjklmnpqrstvwxyz";
    $vocs = "aeiou";
    for ($x=0; $x < 6; $x++) {
   mt_srand ((double) microtime() * 1000000);
   $con[$x] = substr($cons, mt_rand(0, strlen($cons)-1), 1);
   $voc[$x] = substr($vocs, mt_rand(0, strlen($vocs)-1), 1);
    }
    $makepass = $con[0] . $voc[0] .$con[2] . $con[1] . $voc[1] . $con[3] . $voc[3] . $con[4];
    return($makepass);
}

function confirmNewUser($username, $user_email, $user_password, $user_password2, $random_num, $gfx_check, $user_question, $user_answer) {
    global $stop, $EditedMessage, $sitename, $module_name, $minpass;
    @include("header.php");
    @include("config.php");
    filter_text($username);
    $username = $EditedMessage;
    $user_viewemail = "0";
    userCheck($username, $user_email);
    userCheck2($user_question, $user_answer);
    if (!$stop) {
   $datekey = date("F j");
   $rcode = hexdec(md5($_SERVER[HTTP_USER_AGENT] . $sitekey . $_POST[random_num] . $datekey));
   $code = substr($rcode, 2, 6);
   if (extension_loaded("gd") AND $code != $gfx_check AND ($gfx_chk == 3 OR $gfx_chk == 4 OR $gfx_chk == 6 OR $gfx_chk == 7)) {
       title(""._NEWUSERERROR."");
       OpenTable();
       echo "<center><b>"._SECCODEINCOR."</b><br><br>"
      .""._GOBACK."</center>";
       CloseTable();
       @include("footer.php");
       die();
   }
 
montego







PostPosted: Tue May 01, 2007 9:20 pm Reply with quote

Is the full code around this function the following:

Code:


if (!function_exists('makepass')) {
    function makePass() {
    $cons = 'bcdfghjklmnpqrstvwxyz';
    $vocs = 'aeiou';
    for ($x=0; $x < 6; $x++) {
        mt_srand ((double) microtime() * 1000000);
        $con[$x] = substr($cons, mt_rand(0, strlen($cons)-1), 1);
        $voc[$x] = substr($vocs, mt_rand(0, strlen($vocs)-1), 1);
    }
    mt_srand((double)microtime()*1000000);
    $num1 = mt_rand(0, 9);
    $num2 = mt_rand(0, 9);
    $makepass = $con[0] . $voc[0] .$con[2] . $num1 . $num2 . $con[3] . $voc[3] . $con[4];
    return($makepass);
    }
}


I have a feeling you may not be using RavenNuke(tm) 2.10.00?
 
blinksy







PostPosted: Tue May 01, 2007 10:06 pm Reply with quote

This is the code from a No email YA hack file, not the RN file.

Code:
function makePass() {

    $cons = "bcdfghjklmnpqrstvwxyz";
    $vocs = "aeiou";
    for ($x=0; $x < 6; $x++) {
   mt_srand ((double) microtime() * 1000000);
   $con[$x] = substr($cons, mt_rand(0, strlen($cons)-1), 1);
   $voc[$x] = substr($vocs, mt_rand(0, strlen($vocs)-1), 1);
    }
    $makepass = $con[0] . $voc[0] .$con[2] . $con[1] . $voc[1] . $con[3] . $voc[3] . $con[4];
    return($makepass);
}
 
blinksy







PostPosted: Tue May 01, 2007 10:12 pm Reply with quote

Hey i replaced the code with the RN YA bit pasted above and it all works great.

Problem is when trying to login after registering i simply get an Access Denied page.
 
montego







PostPosted: Wed May 02, 2007 6:58 am Reply with quote

The RN YA module code has moved around considerably and could look quite different since that original hack was written. You may be better off in the meantime just replacing what you have now with the index.php from the RN distro as it seems that the hack is not going well for you. You might be better served figuring out why your emails are getting into people's junk mail folders... I offerred an advice on that above.

I don't have much time these days, but I have put this on my "to do" list to check out that original hack and see if I can re-do that for RN.
 
montego







PostPosted: Fri May 11, 2007 7:15 am Reply with quote

BTW, it would still be helpful if you could post this:

Quote:

It might be good to take a look at the expanded email headers and see if anything stands out.
 
blinksy







PostPosted: Fri May 11, 2007 7:50 am Reply with quote

It seems to have fixed itself with time montego. I am not getting as many posts go to junk mail.

Will however, when i find the time to reinstall properly, look at finding a no activation hack.

Cheers
 
Display posts from previous:       
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> RN Enhancement Requests and Suggestions

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©