I can see what any people have the same problem, but y I can not the responses at the other e-mails
I am a spanish speaker but I can reed english
Please send me any solution for this problem
I am testing the PHPBug Trecker and I can not send any emails.
I am testing the PHPBB forum in the same machine but this program work and send correctly the emails
Another please send the response to alcu@montevideo.com.uy too
Thanks, jjbigass
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Are you using the latest phpBT RC? What is your OS and what version of PHP are you using? What does your system report to you in the error logs?
In bug.php search for $mail->send. You might have to add some more configurations right before that line.. You can, for instance, set the envelope from by using $mail->setReturnPath().
phpBT is using the htmlMimeMail package which either use mail() or a builtin smtp MTA. mail() seems "better" to me, but to try the built in smtp support simply change the $mail->send line to:
$mail->send($maillist, 'smtp');
Use setSMTPParams() to set it up!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, thanks for your response!!!
My phpbt version is a 0.9.1 (I have a problem to install the 1.0rc6.)
The OS is Win XP Prof
The PHP is the 5.0.4 version.
I have sought in bug.php, but I have no found any "$mail"
This it is my first experience with PHP, I thank if you can help me with more information
Thanks, JJBigass
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
What problems did you have with RC6? (please report them in a new thread, or send a mail to the phpbt-dev mailing list. if it's not fixed now it will also be a problem with the final 1.0 version)
phpBT 0.9.1 does not necessarily work with php5. You might have to update the pear version. Try to alter PEAR_PATH in include.php to see if you can use a more up-to-date system wide installed version. or simply copy a newer version from RC6.
See if you can send mail with the mail() command using any of the examples on those pages. If that's possible it should be easy to also send mail with phpBT. Note that mail() seems to work completely different on Windows compared to Unix..
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Excuse because I be donkey, but I do not be able! !!!
I revised function.php
I Tested the examples and does Not
show messages of error, returns "TRUE" but does not send anything
*----------------------.
RC6 responds "A database error has occurred"
I copied /inc/pear since the version 0.9.1
Help me please
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It looks as if the mail() function doesn't work on your system..
How do you send mail with phpBB? Maybe by using SMTP directly from PHP? Do you need to use authentication? username and password on the smtp server to send mail?
To debug the rc6 issues add
define('RAWERROR', true);
at the beginning of include.php. (just remember to remove that line when you are ready)
To test the mail package used by rc6 download htmlMimeMail: http://www.phpguru.org/static/mime.mail.html
phpBT uses the older 2.5.1 version. Try something like the example.4.php. Change the SMTPParams as needed:
$mail->setSMTPParams('localhost', 25, 'example.com', true, 'USERNAME', 'PASSWORD');
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i changed the path in the phpbt admin config - the value INSTALL_URL was still set to my old url - as i created a new forlder for this install there is a file that asks to include a file from this setting - require_once(dirname(__FILE__) . '/mimePart.php');
i just changed it to the new folder and i started getting my emails.
i would like phpbt to fix this config by using some server variables to decifer this path. hope this was your problem too.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I can see what any people have the same problem, but y I can not the responses at the other e-mails
I am a spanish speaker but I can reed english
Please send me any solution for this problem
I am testing the PHPBug Trecker and I can not send any emails.
I am testing the PHPBB forum in the same machine but this program work and send correctly the emails
Another please send the response to alcu@montevideo.com.uy too
Thanks, jjbigass
Are you using the latest phpBT RC? What is your OS and what version of PHP are you using? What does your system report to you in the error logs?
In bug.php search for $mail->send. You might have to add some more configurations right before that line.. You can, for instance, set the envelope from by using $mail->setReturnPath().
phpBT is using the htmlMimeMail package which either use mail() or a builtin smtp MTA. mail() seems "better" to me, but to try the built in smtp support simply change the $mail->send line to:
$mail->send($maillist, 'smtp');
Use setSMTPParams() to set it up!
Hi, thanks for your response!!!
My phpbt version is a 0.9.1 (I have a problem to install the 1.0rc6.)
The OS is Win XP Prof
The PHP is the 5.0.4 version.
I have sought in bug.php, but I have no found any "$mail"
This it is my first experience with PHP, I thank if you can help me with more information
Thanks, JJBigass
What problems did you have with RC6? (please report them in a new thread, or send a mail to the phpbt-dev mailing list. if it's not fixed now it will also be a problem with the final 1.0 version)
phpBT 0.9.1 does not necessarily work with php5. You might have to update the pear version. Try to alter PEAR_PATH in include.php to see if you can use a more up-to-date system wide installed version. or simply copy a newer version from RC6.
You are right about the "$mail". It is only in newer versions. 0.9.1 uses qp_mail, defined in inc/functions.php, which uses the normal mail() function. Take a look at:
http://www.php.net/manual/en/ref.mail.php
http://www.php.net/manual/en/function.mail.php
See if you can send mail with the mail() command using any of the examples on those pages. If that's possible it should be easy to also send mail with phpBT. Note that mail() seems to work completely different on Windows compared to Unix..
Excuse because I be donkey, but I do not be able! !!!
I revised function.php
I Tested the examples and does Not
show messages of error, returns "TRUE" but does not send anything
*----------------------.
RC6 responds "A database error has occurred"
I copied /inc/pear since the version 0.9.1
Help me please
It looks as if the mail() function doesn't work on your system..
How do you send mail with phpBB? Maybe by using SMTP directly from PHP? Do you need to use authentication? username and password on the smtp server to send mail?
To debug the rc6 issues add
define('RAWERROR', true);
at the beginning of include.php. (just remember to remove that line when you are ready)
To test the mail package used by rc6 download htmlMimeMail:
http://www.phpguru.org/static/mime.mail.html
phpBT uses the older 2.5.1 version. Try something like the example.4.php. Change the SMTPParams as needed:
$mail->setSMTPParams('localhost', 25, 'example.com', true, 'USERNAME', 'PASSWORD');
i changed the path in the phpbt admin config - the value INSTALL_URL was still set to my old url - as i created a new forlder for this install there is a file that asks to include a file from this setting - require_once(dirname(__FILE__) . '/mimePart.php');
i just changed it to the new folder and i started getting my emails.
i would like phpbt to fix this config by using some server variables to decifer this path. hope this was your problem too.