Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial 大神求救php连接Mysql , php.ini配置问题

大神求救php连接Mysql , php.ini配置问题

Jun 23, 2016 pm 02:09 PM

跟很多人一样,出现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下面 ,更好管理。嘿嘿。

终于搞出来了,哎真难搞,谢谢各位了

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

11 Best PHP URL Shortener Scripts (Free and Premium) 11 Best PHP URL Shortener Scripts (Free and Premium) Mar 03, 2025 am 10:49 AM

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

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

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-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

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

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

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

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

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.

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

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

Announcement of 2025 PHP Situation Survey Announcement of 2025 PHP Situation Survey Mar 03, 2025 pm 04:20 PM

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

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

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

See all articles