jesse_pinuelas_jr Posted May 9, 2006 Share Posted May 9, 2006 Hello everyone I have been successful at adding users to my database and table with php but when I try to log in I get an error message. I am trying to build the the URL or FTP address with variables can anyone help!!//////// error message //////////Warning: ftp_connect(): php_network_getaddresses: getaddrinfo failed: No address associated with hostname in /home/loraxbiz/public_html/do_authuser.php on line 32Couldn't connect to [a href=\"ftp://lorax.biz\" target=\"_blank\"]ftp://lorax.biz[/a]//////// end of error message //////////[code]<?// jesse check for required fields if ((!$_POST[username]) || (!$_POST[password])) { header("Location:clients.htm"); exit;}// jesse note to self, set up names of databases and table to use$db_name ="loraxbiz_authuser";$table_name = "clients";//now connect to server and select database$connection = @mysql_connect("localhost", "private", "privatee") or die(mysql_error());$db = @mysql_select_db($db_name, $connection) or die(mysql_error());//build and issue the query$sql = "SELECT * FROM $table_name WHERE username ='$_POST[usernname]'AND password = password('$_POST[password]')";$result = @mysql_query($sql,$connection) or die(mysql_error());// get the number of rows in the result set$num = mysql_num_rows($result);// print message or redirect elsewhere, based on result setif ($num != 0) { $msg = "<p> Welcome to LORAX Environmental,Inc</p>";} else { // try to log in to freaking ftp $ftp_server = "ftp://lorax.biz"; $ftp_user = '$_POST[usernname]'; $ftp_pass = '$_POST[password]'; // set up a connection or die$conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server"); // try to loginif (@ftp_login($conn_id, $ftp_user, $ftp_pass)) { echo "Connected as $ftp_user@$ftp_server\n";} else { echo "Couldn't connect as $ftp_user\n";}}?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/9409-customized-ftp-login/ Share on other sites More sharing options...
johnwayne77 Posted February 3, 2007 Share Posted February 3, 2007 you have a mistake in your script:$ftp_server = "ftp://lorax.biz"; <-- wrongreplace with $ftp_server = "lorax.biz"; <-- or ftp.lorax.biz or whatever is your ftp host (just don't add the 'ftp://' which is used for direct browsing Quote Link to comment https://forums.phpfreaks.com/topic/9409-customized-ftp-login/#findComment-176195 Share on other sites More sharing options...
NoDoze Posted June 19, 2007 Share Posted June 19, 2007 I tried this script above with the MySQL database setup with my user login and password info, but when logging in I get:Couldn't connect as $_POST[usernname] Any ideas?Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/9409-customized-ftp-login/#findComment-278020 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.