error [message #3583] |
Tue, 02 July 2002 00:00 |
$how
Messages: 12 Registered: July 2002
Karma: 0
|
Junior Member |
|
|
Ran the full setup, but for some reason got an error when it went too go login
http://hellshenchmen.recongamer.com/hhsite/fudforum2/login.php?adm=1
Warning: Access denied for user: 'ODBC(at)66(dot)250(dot)66(dot)181' (Using password: YES) in c:\inetpub\hellshenchmen\hhsite\fudforum2\login.php on line 116
Warning: MySQL Connection Failed: Access denied for user: 'ODBC(at)66(dot)250(dot)66(dot)181' (Using password: YES) in c:\inetpub\hellshenchmen\hhsite\fudforum2\login.php on line 116
--------------------------------------
Error in function/script: db.inc
has caused the following error: unable to establish mysql connection on 12.218.131.91
while processing script name:
the error occured at: 02/07/2002 00:04:16
Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705)
User Ip: 12.218.131.91
Script Accessed: c:\\inetpub\\hellshenchmen\\hhsite\\fudforum2\\login.php
ANY HELP WOULD BE NICE
|
|
|
Re: error [message #3585 is a reply to message #3583] |
Tue, 02 July 2002 00:04 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
This looks nice an permissions error when connecting to mysql, see if you can manually login with the MySQL info you've provided during installation, which can be found inside GLOBALS.php file.
FUDforum Core Developer
|
|
|
|
Re: error [message #3589 is a reply to message #3586] |
Tue, 02 July 2002 01:55 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
That is just the way PHP reports connection failures. I presume ODBC is the user name for the account?
You should verify that MySQL permissions allow the ODBC user to access the MySQL database from the domain your site runs.
FUDforum Core Developer
|
|
|
Re: error [message #3592 is a reply to message #3589] |
Tue, 02 July 2002 04:52 |
$how
Messages: 12 Registered: July 2002
Karma: 0
|
Junior Member |
|
|
My setup is a little diffrent than most, are web server offers Mysql at an extra cost. So i just installed it on my home computer and left the database port open on my gateway. I have one forum installed, but it does not send mail out so trying diffrent froums see what i like better.
P.S.
I removed THe froum and going too try something a little diffrent on setup this time.
[Updated on: Tue, 02 July 2002 04:55] Report message to a moderator
|
|
|
|
|
|
|
Re: error [message #3612 is a reply to message #3611] |
Tue, 02 July 2002 14:39 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Once again a PHP problem.
Online 2174 the register script attempts to send an email to the user with either a confirmation email or just a welcome message.
It would appear that mail() PHP function does not work on your server, hence the error you are seeing.
Make sure you have correct mail setting specified in your php config (php.ini) file. If they are not change those settings, mail related settings can be changed from .htaccess file in Apache if you do not have access to the php.ini configuration file.
FUDforum Core Developer
|
|
|
|
Re: error [message #3621 is a reply to message #3620] |
Tue, 02 July 2002 15:51 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
It has STMP set as localhost, does you windows box have a working SMTP server setup that can be used to send email?
FUDforum Core Developer
|
|
|
|
Re: error [message #3623 is a reply to message #3622] |
Tue, 02 July 2002 16:21 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Did you specify that address in your config?
Here is a small text script that should work when you have correct info:
<?php
ini_set('SMTP', 'stmp_server');
mail('your_email_address', 'Test Message Subject', 'test message');
?>
FUDforum Core Developer
|
|
|
|
Re: error [message #3625 is a reply to message #3624] |
Tue, 02 July 2002 16:43 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
The problem is definately with SMTP server, which is either blocking you or not setup correctly. I suspect they should have some helpeful error messages in their mail log, but unfortunaly you have no access to those.
FUDforum Core Developer
|
|
|
|
|
Re: error [message #3630 is a reply to message #3628] |
Tue, 02 July 2002 17:26 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
phpbb2 developers decided to bypass php's mail() function and send emails themselves via SMTP directly. While in some cases such as yours it may solve the problem, the bottom line is that PHP's mail() function should work. It is there for a reason, on a properly configured server it will work.
FUDforum Core Developer
|
|
|
Re: error [message #3631 is a reply to message #3630] |
Tue, 02 July 2002 17:28 |
$how
Messages: 12 Registered: July 2002
Karma: 0
|
Junior Member |
|
|
Yep, true maybe they will fix the php.ini file on my web server thank for the help man.
|
|
|