linux下类无法实例化
自定义的LoginHandle无法实例化,测试mysql可以链接...不知道为什么...
LoginHanlde.php
<?php ini_set ( "error_reporting", "E_ALL & ~E_NOTICE" );include '../bld_controller/LoginHandle.class.php';$username = $_POST['username'];$password = $_POST['password'];$login = new LoginHandle();//运行到这一步就停止了$flag = $login->check_psw($username, $password);if($flag){ session_start(); $_SESSION['username'] = $username; echo "<script language='javascript'>location.href='main.php'</script>";}else{ echo "<script language='javascript'>location.href='login.php'</script>";}?>
<?php include '../bld_model/DBhelper.class.php';class LoginHandle{ var $db = ""; var $flag =""; function __construct() { $this->db = new DBhelper("yaoinger", "123456", "108.163.234.83:2082", "banklinksdisbution"); $this->flag = $this->db->connect(); } function check_psw($username,$password) { $SQL = "SELECT u_password FROM bld_users WHERE u_name ='$username'"; $result =""; if($this->flag) { $result = $this->db->select($SQL); } $psw = ""; if($result){ $value= mysql_fetch_assoc($result); } $psw = $value['u_password']; return $psw == $password; } }
回复讨论(解决方案)
打开 php 的错误显示功能
多半是嵌入文件的路径不对
打开 php 的错误显示功能
多半是嵌入文件的路径不对
打开了
显示
Warning: mysql_connect(): Access denied for user 'doinahtc_huiyao'@'108.163.234.83' (using password: YES) in /home/doinahtc/public_html/bld_model/DBhelper.class.php on line 21
Unable to connect to the MySQL!
我重设密码,后来又新建了用户,还是报这个错,怎么都连不上,是虚拟服务器,不知道为什么、
你难道是远程连接数据库?
你难道是远程连接数据库?
是的,是接到linux的虚拟服务器上
那你在 mysql 中授权了没有?
那你在 mysql 中授权了没有?
是授权远程服务么....这个不知道怎么设啊在虚拟服务器上,不过这个服务器上还有一个网站是zencart模版的,是正常的,我自己写的就不行
那你在 mysql 中授权了没有?
谢谢,已经解决了,授权问题。。。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:
