Login     Sign up
Forgot password help!
Roozbeh Jafari (@roozbeh)
Join date: Nov 4th 2010
Community posts: 92
View Profile
Send Message

Why the Forgot password program's in jcow does not work؟

165 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

try to test the forgot password function here on the site. If you don't get any mail, it means the mail is blocked somewhere (flagged as spam).

165 months ago
Roozbeh Jafari (@roozbeh)
Join date: Nov 4th 2010
Community posts: 92
View Profile
Send Message

[quote=falcone]try to test the forgot password function here on the site. If you don't get any mail, it means the mail is blocked somewhere (flagged as spam). [/quote]

For your site works. But I do not work on my site. Do I need special setting to do?

thanks man!

165 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

i'm using something simular like this

[url]http://www.howtonix.com/smtp-module-jcow-social-script/[/url]

165 months ago
Roozbeh Jafari (@roozbeh)
Join date: Nov 4th 2010
Community posts: 92
View Profile
Send Message

[quote=falcone]i'm using something simular like this

[url]http://www.howtonix.com/smtp-module-jcow-social-script/[/url] [/quote]

thanks,about this!
How can you install to clearly explain?
I've installed, but the homepage will not load anymore!

165 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

probably a problem with copy and pasting the code

the ´ and ` (accents) have to be ' (single quote)

165 months ago
Roozbeh Jafari (@roozbeh)
Join date: Nov 4th 2010
Community posts: 92
View Profile
Send Message

First
I download class.smtp.php and class.phpgmailer.php scripts and place into includes/libs/ folder under JCow directory

Ok!

second

I add these php code to boot.inc.php from includes/ folder.

//loading SMTP Library
require_once ‘./includes/libs/class.phpgmailer.php’;
require_once ‘./includes/libs/class.smtp.php’; 

ok!

thired

edit my/config.php files and put smtp parameters as like follows:

$config['smtp_host']=’127.0.0.1′;
$config['smtp_port']=25;
$config['smtp_auth']=true;
$config['smtp_user']=’YOUR USERNAME’;
$config['smtp_pass']=’YOUR PASSWORD’;
$config['smtp_html']=true;
$config['smtp_from']=’noreply@YOURDOMAIN’; 

I dont now ,i must edit this "
$config['smtp_host']=’?′;
$config['smtp_port']=?;
$config['smtp_auth']=?;
$config['smtp_user']=’?’;
$config['smtp_pass']=’?’;
$config['smtp_html']=?;
$config['smtp_from']=’?’;

and final step. Edit includes/libs/common.inc.php and write mailer function :

function jcow_user_mail($to,$subject,$message,$reply=”){
global $config;
$mail = new PHPGMailer();
$mail->Username = $config['smtp_user'];
$mail->Password = $config['smtp_pass'];
$mail->From = $config['smtp_from'];
$mail->FromName = get_gvar(‘site_name’);
$mail->Host=$config['smtp_host'];
$mail->Port=$config['smtp_port'];
$mail->Subject = $subject;
$mail->AddAddress($to);
$mail->Body = $message;
$mail->IsHTML=$config['smtp_html'];;

return $mail->Send();

} 

and dont work!!!

165 months ago
Roozbeh Jafari (@roozbeh)
Join date: Nov 4th 2010
Community posts: 92
View Profile
Send Message

[quote=falcone]probably a problem with copy and pasting the code

the ´ and ` (accents) have to be ' (single quote) [/quote]

I do not know where I'm wrong
Can you save the files, and upload hear for downlod?

165 months ago
Roozbeh Jafari (@roozbeh)
Join date: Nov 4th 2010
Community posts: 92
View Profile
Send Message

[quote=roozbeh]

I do not know where I'm wrong
Can you save the files, and upload hear for downlod? [/quote]

please man , because I nedd this!!!plzzzzzz (cryyyyy)

165 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

for example

[code]
$config['smtp_host']=’127.0.0.1′;
[/code]

has to be

[code]
$config['smtp_host']='127.0.0.1';

[/code]

165 months ago