无法使用WAMP作为本地服务器

时间:2017-07-28 11:00:28

标签: php android wamp wampserver

我尝试创建一个简单的登录到我的Android应用程序,该应用程序将用户的输入与数据库中的数据进行比较:

我使用WAMP作为本地服务器只是为了测试我是否可以进行连接。 我有两个名为 config.inc.php login.inc.php 的PHP文件放在以下目录中: C:\ wamp64 \ www \ DUFT < / em>他们看起来像这样:

的config.inc.php

<?php $servername = "localhost:80"; 
  $username = "root";
  $password = "root";
  $dbname = "duft";

  try {
    $conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
    $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch(PDOException $e)
{
    die("OOPs something went wrong");
}

?>

login.inc.php

<?php

 include 'config.inc.php';

 // Check whether username or password is set from android  
 if(isset($_POST['username']) && isset($_POST['password']))
 {
      // Innitialize Variable
      $result='';
      $username = $_POST['username'];
      $password = $_POST['password'];

      // Query database for row exist or not
      $sql = 'SELECT * FROM tbl_login WHERE  email = :username AND adgangskode = :password';
      $stmt = $conn->prepare($sql);
      $stmt->bindParam(':username', $username, PDO::PARAM_STR);
      $stmt->bindParam(':password', $password, PDO::PARAM_STR);
      $stmt->execute();
      if($stmt->rowCount())
      {
         $result="true";    
      }  
      elseif(!$stmt->rowCount())
      {
            $result="false";
      }

      // send result back to android
      echo $result;
}?>

然后我有了我的LoginActivity类,我使用AsyncTask在后台建立与数据库的连接。在onPostExecute()方法中,如果用户输入与数据库中的内容匹配,我尝试启动新活动。但是我一直从PHP文件中得到这个错误:

  


(!)警告:   PDO :: __ construct():MySQL服务器已经消失了   C:\ wamp64 \ www \ DUFT \ login.inc.php在行 10 调用堆栈#TimeMemoryFunctionLocation10.0042244400 {main}()... \ login.inc.php 020.0043245592http://www.php.net/PDO.construct'目标=&#39; _new&#39;&GT; __构建体(   )... \ _login.inc.php 10(!)警告:   PDO :: __ construct():读取问候数据包时出错。 PID = 9636 in   C:\ wamp64 \ www \ DUFT \ login.inc.php在行 10 调用堆栈#TimeMemoryFunctionLocation10.0042244400 {main}()... \ login.inc.php 020.0043245592http://www.php.net/PDO.construct'目标=&#39; _new&#39;&GT; __构建体(   )... \ login.inc.php的 的10OOPs   出了点问题

这就是我的logcat所说的:

Logcat

我的LoginActivity Java类如下所示:

public class LoginActivity extends AppCompatActivity{

//NYT
// CONNECTION_TIMEOUT and READ_TIMEOUT are in milliseconds

public static final int CONNECTION_TIMEOUT=2000000000;
public static final int READ_TIMEOUT=2000000000;
private EditText etEmail;
private EditText etPassword;
//NYT

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_login);

    //NYT
    // Get Reference to variables
    etEmail = (EditText) findViewById(R.id.eMail);
    etPassword = (EditText) findViewById(R.id.password);
    //NYT


    TextView klikHer = (TextView) findViewById(R.id.klikHer);
    klikHer.setPaintFlags(klikHer.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);

    Button login = (Button) findViewById(R.id.signIn);
    login.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            //Intent intent = new Intent(LoginActivity.this, MenuScreen.class);
            //startActivity(intent);

            //NYT
            // Get text from email and passord field
            final String email = etEmail.getText().toString();
            final String password = etPassword.getText().toString();

            // Initialize  AsyncLogin() class with email and password
            new AsyncLogin().execute(email, password);
            //NYT
        }
    });
}


private class AsyncLogin extends AsyncTask<String, String, String> {
    ProgressDialog pdLoading = new ProgressDialog(LoginActivity.this);
    HttpURLConnection conn;
    URL url = null;

    @Override
    protected void onPreExecute() {
        super.onPreExecute();

        //this method will be running on UI thread
        pdLoading.setMessage("\tLoading...");
        pdLoading.setCancelable(false);
        pdLoading.show();

    }

    @Override
    protected String doInBackground(String... params) {
        try {

            // Enter URL address where your php file resides
            url = new URL("http://192.168.87.100/DUFT/login.inc.php");

        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            return "exception";
        }
        try {
            // Setup HttpURLConnection class to send and receive data from php and mysql
            conn = (HttpURLConnection) url.openConnection();
            //conn.setReadTimeout(READ_TIMEOUT);
            //conn.setConnectTimeout(CONNECTION_TIMEOUT);
            conn.setRequestMethod("POST");

            // setDoInput and setDoOutput method depict handling of both send and receive
            conn.setDoInput(true);
            conn.setDoOutput(true);

            // Append parameters to URL
            Uri.Builder builder = new Uri.Builder()
                    .appendQueryParameter("username", params[0])
                    .appendQueryParameter("password", params[1]);
            String query = builder.build().getEncodedQuery();

            // Open connection for sending data
            OutputStream os = conn.getOutputStream();
            BufferedWriter writer = new BufferedWriter(
                    new OutputStreamWriter(os, "UTF-8"));
            writer.write(query);
            writer.flush();
            writer.close();
            os.close();
            conn.connect();

        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
            return "exception";
        }

        try {

            int response_code = conn.getResponseCode();

            // Check if successful connection made
            if (response_code == HttpURLConnection.HTTP_OK) {

                // Read data sent from server
                InputStream input = conn.getInputStream();
                BufferedReader reader = new BufferedReader(new InputStreamReader(input));
                StringBuilder result = new StringBuilder();
                String line;

                while ((line = reader.readLine()) != null) {
                    result.append(line);
                }

                // Pass data to onPostExecute method
                return (result.toString());

            } else {

                return ("unsuccessful");
            }

        } catch (IOException e) {
            e.printStackTrace();
            return "exception";
        } finally {
            conn.disconnect();
        }


    }

    @Override
    protected void onPostExecute(String result) {

        //this method will be running on UI thread

        pdLoading.dismiss();

        if (result.equalsIgnoreCase("true")) {
            /* Here launching another activity when login successful. If you persist login state
            use sharedPreferences of Android. and logout button to clear sharedPreferences.
             */

            Intent intent = new Intent(LoginActivity.this, MenuScreen.class);
            startActivity(intent);
            LoginActivity.this.finish();

        } else if (result.equalsIgnoreCase("false")) {

            // If username and password does not match display a error message
            //Toast.makeText(LoginActivity.this, "Invalid email or password", Toast.LENGTH_LONG).Show();


        } else if (result.equalsIgnoreCase("exception") || result.equalsIgnoreCase("unsuccessful")) {

            //Toast.makeText(LoginActivity.this, "OOPs! Something went wrong. Connection Problem.", Toast.LENGTH_LONG).Show();

        }
    }
}}

我已按照教程中的所有步骤操作,并且我可以通过在手机浏览器中输入IPv4地址来使用手机访问本地服务器。这必须意味着我也能够访问本地服务器上的数据库,对吧?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案!问题在于这行代码

php $servername = "localhost:80"; 

这里我为Apache而不是MySQL定义端口,即3307.所以我只是把它改成了3307的正确端口:)

感谢您的帮助!