大神求救php连接Mysql , php.ini配置问题
跟很多人一样,出现php连接不上,在网上搜了很多,都没有解决
首先我的配置:apache2.2.22 + php5.4.14 + mysql 5.0
错误信息:
Fatal error: Call to undefined function mysql_connect() in C:\Program Files\apache\htdocs\index.php on line 6
在windows下有php.ini 并且配置了
extension=php_mysql.dll
extension=php_mysqli.dll 前面的;去掉了
我的安装路径是这样的:
extension_dir = "C:/myenv/php-5.3.5/ext"
路径都是没问题的
把 ../mysql/bin/libmySQL.dll 拷贝到 php5.0 下面,还有拷贝到 php5.0/ext 目录下
windows/System32中导入了libmySQL.dll php5ts.dll 两个文件
在apache中的http.conf中 配置了
#载入apache处理PHP模块,用于PHP文件配置
LoadModule php5_module C:/myenv/php-5.3.5/php5apache2_2.dll
#PHPIniDir用于指定PHP的ini文件
PHPIniDir "C:/myenv/php-5.3.5"
AddType application/x-httpd-php .php .phtml
我已经尽力了,搞了半天没搞出来 ,郁闷,求高手解救!!!
回复讨论(解决方案)
对上面的补充:
mysql能打开 ,在index.php中的代码如下:
$conn=mysql_connect("localhost","root","123456");
if($conn){
echo "连接mysql数据库成功";
}else{
echo "连接数据库失败";
}
?>
LZ的PHP\ext目录下php_mysql.dll和php_mysqli.dll都没问题吧
是的 ,没问题 ,下载下来安装 我都没动过的。 phpinfo()没问题
怎么没人回答了???
1.建议LZ 每次更改配置的时候都重启一下apache。
2.LZ看看windows里是否有MySQL56(我的是这个名字,LZ的可能版本号不一样)这个服务,是否已经启动。
其他真的想不到什么了。
每次都有重启了,电脑都重启几次了,还是没效
windows里是否有MySQL56 这个是什么服务?
不懂.
我只有Mysql这个服务,这个服务没问题的。
这么费劲,还不如直接装个wamp基础环境
wamp太死板,版本升级不灵活。 单个安装也不麻烦 ,只是遇到了问题而已,遇到了就要解决咯。
PHPIniDir "C:/myenv/php-5.3.5"
LoadFile "C:/myenv/php-5.3.5/php5ts.dll"
LoadModule php5_module "C:/myenv/php-5.3.5/php5apache2_2.dll"
还没解决,哎 ,都不行啊 ,奔溃了额
我的神 ,还是被我解决了代码如下:
LoadModule php5_module "D:/MyBlog/php/php5apache2_2.dll"
LoadFile "D:/MyBlog/php/php5ts.dll"
AddType application/x-httpd-php .php .phtml
PHPIniDir "D:/MyBlog/php/php.ini"
这样设置 都不用把php.ini放到windows下面了,直接就在D:/MyBlog/php/php.ini 就ok啦!
关键是这个 PHPIniDir "D:/MyBlog/php /php.ini"[/b]
同时我还把apache + php + mysql放在同一文件夹MyBlog下面 ,更好管理。嘿嘿。
终于搞出来了,哎真难搞,谢谢各位了

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

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

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-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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' =>

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.

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

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov
