PHP Web Host - Quality Web Hosting For All PHP Applications Just Great Software
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
Post new topic   Reply to topic
Author Message
blinksy
Hangin' Around


Joined: Apr 25, 2007
Posts: 33

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

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
persona_non_grata



Joined:
Posts: 0

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

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


Joined: Apr 25, 2007
Posts: 33

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

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.
View user's profile Send private message
persona_non_grata



Joined:
Posts: 0

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

is the outgoing message and title somewhat altered or is it pure standard text ?
View user's profile Send private message
evaders99
Moderator


Joined: Apr 30, 2004
Posts: 2852

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

There's a number of No Mail / Auto-activation hacks you can try
View user's profile Send private message Visit poster's website
montego
Site Admin


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

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

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.
View user's profile Send private message Visit poster's website
blinksy
Hangin' Around


Joined: Apr 25, 2007
Posts: 33

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

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?
View user's profile Send private message
persona_non_grata



Joined:
Posts: 0

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

try turning on error report,that will show some error as blank pages indicates that.
View user's profile Send private message
blinksy
Hangin' Around


Joined: Apr 25, 2007
Posts: 33

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

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();
   }
View user's profile Send private message
montego
Site Admin


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

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

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?
View user's profile Send private message Visit poster's website
blinksy
Hangin' Around


Joined: Apr 25, 2007
Posts: 33

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

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);
}
View user's profile Send private message
blinksy
Hangin' Around


Joined: Apr 25, 2007
Posts: 33

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

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.
View user's profile Send private message
montego
Site Admin


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

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

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.
View user's profile Send private message Visit poster's website
montego
Site Admin


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

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

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.
View user's profile Send private message Visit poster's website
blinksy
Hangin' Around


Joined: Apr 25, 2007
Posts: 33

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

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
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic

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
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2002-2008 by Raven
Proud to be listed at Lobo Links Web Directory

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is © copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::

:: fisubice Theme Recoded To 100% W3C CSS & HTML 4.01 Transitional Compliance by Raven and 64bitguy ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum