PDA

View Full Version : Does F2S allow vB?



<|R0cKm@nX|>
June 11th, 2001, 07:34
Does F2S allow mi to install vB and get it connected to freesql.org's mySQL database?
its very strange becoz everytime i reach step 3 during the vB installation, it will just show mi a page will only the vB logo and nothing else!

lucifer
June 11th, 2001, 07:47
go in the code remove the @
from @mysql_connect(...) or @mysql_pconnect()

then you'll get to see the error

if it's something like undefined function mysql_connect() you don't have support on your server

else put up page

info.php3

<?
phpinfo();
?>

and open it in a browser there should be a section about MySQL if not it's not supported

then kill the page as you don't want others to see that info

<|R0cKm@nX|>
June 11th, 2001, 08:11
in info.php3, it says mysql is enabled but the problem still not cure!
heres the infor.php3:
http://www.rockmanx2.f2s.com/info.php3

<|R0cKm@nX|>
June 11th, 2001, 09:00
if i were to connect it to F2S mySQL database, i will get this error msg:
Attempting to attach to database...


Warning: MySQL Connection Failed: Access denied for user: 'rockmanx2@server0042.freedom2surf.net' (Using password: YES) in /web/sites/94/rockmanx2/www.rockmanx2.f2s.com/admin/db_mysql.php on line 38

Warning: Supplied argument is not a valid MySQL-Link resource in /web/sites/94/rockmanx2/www.rockmanx2.f2s.com/admin/db_mysql.php on line 47

The database has failed to connect because you do not have permission to connect to the server. Please go back to the last step and ensure that you have entered all your login details correctly.

lucifer
June 11th, 2001, 12:19
hmmm and you get nothing using freesql.org ?

have you got the http:// bit and everything?

try


<?
if (mysql_connect("http://freesql.org",username,password)){
echo "all seems OK";
} else {
echo "something is wrong";
}
?>