You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 53 guest(s) and 1 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - Activation email [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
jtg91
Nuke Soldier
Nuke Soldier


Joined: Apr 05, 2007
Posts: 19


PostPosted: Mon Apr 09, 2007 9:56 am Reply with quoteBack to top

Hey im using Nuke theme subblack and to register you have to enter ure email so that it can send an activation email link to you. is there anyway to skip this so that they can just register? if so what do i need to do? thanks
Find all posts by jtg91View user's profileSend private message
hue
Support Mod
Support Mod


Joined: Apr 18, 2003
Posts: 368

Location: Ohio

PostPosted: Mon Apr 09, 2007 10:02 am Reply with quoteBack to top

jtg91 wrote:
Hey im using Nuke theme subblack and to register you have to enter ure email so that it can send an activation email link to you. is there anyway to skip this so that they can just register? if so what do i need to do? thanks
You will probably need to get some sort of user account mod /new user mod/auto activation mod (something along those lines) for this . Maybe try this one http://phpnuke-downloads.com/downloadview-details-16-524-New_User_Auto_Activation_Hack_v1.0.html .

_________________
Go Go Buckeyes!!
Find all posts by hueView user's profileSend private messageICQ Number
jtg91
Nuke Soldier
Nuke Soldier


Joined: Apr 05, 2007
Posts: 19


PostPosted: Mon Apr 09, 2007 10:03 am Reply with quoteBack to top

the hack in that thing makes it sound bad so is it bad to do this lol
Find all posts by jtg91View user's profileSend private message
jtg91
Nuke Soldier
Nuke Soldier


Joined: Apr 05, 2007
Posts: 19


PostPosted: Tue Apr 10, 2007 12:19 pm Reply with quoteBack to top

can someone help me with my smtp it dont seem to work Sad
Find all posts by jtg91View user's profileSend private message
hue
Support Mod
Support Mod


Joined: Apr 18, 2003
Posts: 368

Location: Ohio

PostPosted: Tue Apr 10, 2007 12:51 pm Reply with quoteBack to top

jtg91 wrote:
can someone help me with my smtp it dont seem to work Sad

You might have to ask your webhost for your SMTP settings . They will know what you are talking about .

_________________
Go Go Buckeyes!!
Find all posts by hueView user's profileSend private messageICQ Number
jtg91
Nuke Soldier
Nuke Soldier


Joined: Apr 05, 2007
Posts: 19


PostPosted: Tue Apr 10, 2007 12:58 pm Reply with quoteBack to top

i am i have been all day but nothing seems to work Sad
Find all posts by jtg91View user's profileSend private message
jtg91
Nuke Soldier
Nuke Soldier


Joined: Apr 05, 2007
Posts: 19


PostPosted: Tue Apr 10, 2007 1:43 pm Reply with quoteBack to top

im thinking it more of a script kind of thing not letting me do this as when i press mass email on te forum settings and email all users it justs go to a blank white page and nothing happens
Find all posts by jtg91View user's profileSend private message
hue
Support Mod
Support Mod


Joined: Apr 18, 2003
Posts: 368

Location: Ohio

PostPosted: Tue Apr 10, 2007 2:24 pm Reply with quoteBack to top

jtg91 wrote:
im thinking it more of a script kind of thing not letting me do this as when i press mass email on te forum settings and email all users it justs go to a blank white page and nothing happens

Have you checked with your webhost to see if PHP Mail() function is disabled ?

_________________
Go Go Buckeyes!!
Find all posts by hueView user's profileSend private messageICQ Number
jtg91
Nuke Soldier
Nuke Soldier


Joined: Apr 05, 2007
Posts: 19


PostPosted: Tue Apr 10, 2007 2:43 pm Reply with quoteBack to top

yeh they said u have to apply for fsockopen so i did and it got enabled this morning so ive spend 8 hours trying to do it is there anychance i could give u passwords to my website and help me get it to work please Smile i have tried all day i dont have the knowledge to do this lol

im with 110mb.com and they allow both sendmail and fsockopen but sendmail costs so i use fsockopen to allow smtp servers to send the mails but it dont work that way
Find all posts by jtg91View user's profileSend private message
hue
Support Mod
Support Mod


Joined: Apr 18, 2003
Posts: 368

Location: Ohio

PostPosted: Tue Apr 10, 2007 3:06 pm Reply with quoteBack to top

Before anything else , copy the code below and save it as mailcheck.php
Code:
<?
if (isset($submit)) $resultMsg = 'Mailed - This just means that the PHP mail() function is working.<br />If you do not receive the email, then there is probably something wrong with your SMTP setup.';
else $resultMsg = '';
echo "<form action=\"".$_SERVER["PHP_SELF"]."\" method=post>Input your email address to test";
echo "<br />";
echo "<input type=text name=addy size=50>";
echo "<br />";
echo "<br />";
echo "<input type=submit name=submit></form>";
if (isset($submit)&&!empty($addy)) {
   unset($submit);
   mail($addy,'Test message','Did you get this?') or die('ERROR');
   echo($resultMsg);
   unset($resultMsg);
   die();
}
?>

Upload that to your web site then point your browser to it ie;
Quote:
www.yourdomain.com/mailcheck.php

Fill out the form and check your mail and of course , check your spam filter too .

_________________
Go Go Buckeyes!!
Find all posts by hueView user's profileSend private messageICQ Number
jtg91
Nuke Soldier
Nuke Soldier


Joined: Apr 05, 2007
Posts: 19


PostPosted: Tue Apr 10, 2007 3:18 pm Reply with quoteBack to top

ok tested that with yahoo smtp google smtp and unlimitedmail smtp nothing Sad u sure that doesnt send mail through php and not throught the smtp?

i didnt get an error i clicked submit and all that happene is it loaded but kinda like just refreshed
Find all posts by jtg91View user's profileSend private message
hue
Support Mod
Support Mod


Joined: Apr 18, 2003
Posts: 368

Location: Ohio

PostPosted: Tue Apr 10, 2007 3:30 pm Reply with quoteBack to top

jtg91 wrote:
ok tested that with yahoo smtp google smtp and unlimitedmail smtp nothing Sad u sure that doesnt send mail through php and not throught the smtp?

i didnt get an error i clicked submit and all that happene is it loaded but kinda like just refreshed

Just wanted to rule out that the Mail() function was indeed, blocked and it appears it is . Can you clarify exactly what it is that you are trying to accomplish ? If you are still trying to get around the Activation email issue, you just simply need to install a mod for this .

_________________
Go Go Buckeyes!!

Last edited by hue on Tue Apr 10, 2007 3:38 pm; edited 1 time in total
Find all posts by hueView user's profileSend private messageICQ Number
jtg91
Nuke Soldier
Nuke Soldier


Joined: Apr 05, 2007
Posts: 19


PostPosted: Tue Apr 10, 2007 3:38 pm Reply with quoteBack to top

sorry if i didnt make it clear so here it is in full detail.......

ok i signed up with 110mb.com and uploaded nuke 7.6 with subblack theme. i customized the theme a bit and fixed some problems here and there using this forum for help.....i then noticed people couldnt register as there wasnt anyone getting activation emails received and the only way they could join is by me making an account for them and telling them pass and username.....so i looked around 110mb forum and noticed i need something called fsockopen enabled.....to do this u post 30 posts and submit a ticket which i did.....7.30am gmt today i noticed it finnally been enabled so i cheer for joy.....they give u some instructions on which smtp servers to use and i try googlemail 1st.... tested it a million times wasnt working... so i used yahoo smtp....tested that still not working no activation emails being sent.....ok last choice unlimitedmail.....tested this and didnt work.....now i come here seeking your help my friend...... so basically no activation email getting sent through smtp www.sabclan.co.nr is the site
Find all posts by jtg91View user's profileSend private message
hue
Support Mod
Support Mod


Joined: Apr 18, 2003
Posts: 368

Location: Ohio

PostPosted: Tue Apr 10, 2007 3:45 pm Reply with quoteBack to top

jtg91 wrote:
sorry if i didnt make it clear so here it is in full detail.......

ok i signed up with 110mb.com and uploaded nuke 7.6 with subblack theme. i customized the theme a bit and fixed some problems here and there using this forum for help.....i then noticed people couldnt register as there wasnt anyone getting activation emails received and the only way they could join is by me making an account for them and telling them pass and username.....so i looked around 110mb forum and noticed i need something called fsockopen enabled.....to do this u post 30 posts and submit a ticket which i did.....7.30am gmt today i noticed it finnally been enabled so i cheer for joy.....they give u some instructions on which smtp servers to use and i try googlemail 1st.... tested it a million times wasnt working... so i used yahoo smtp....tested that still not working no activation emails being sent.....ok last choice unlimitedmail.....tested this and didnt work.....now i come here seeking your help my friend...... so basically no activation email getting sent through smtp www.sabclan.co.nr is the site


Do a search for something like Auto account mod/User Mod or something of that nature . There are a lot out there . Start here http://phpnuke-downloads.com and maybe here http://www.nukescripts.net .

_________________
Go Go Buckeyes!!
Find all posts by hueView user's profileSend private messageICQ Number
jtg91
Nuke Soldier
Nuke Soldier


Joined: Apr 05, 2007
Posts: 19


PostPosted: Tue Apr 10, 2007 3:49 pm Reply with quoteBack to top

i tried that and i didnt understand because it wanted me to edit SQL and i have no idea how to but ill give it ago thansk for your help
Find all posts by jtg91View user's profileSend private message
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next 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



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.803 Seconds - 182 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::