Could not find driver while migrating on Laravel 4 using XAMPP Server Linux (Ubuntu)(使用 XAMPP Server Linux (Ubuntu) 在 Laravel 4 上迁移时找不到驱动程序)
问题描述
我已经安装了 Laravel 4.1,一切正常,但是当我尝试使用迁移时,它会抛出一个 PDO 异常:
<块引用><块引用>[PDO异常]找不到驱动程序
我在 StackOverFlow 上找到了很多答案,但不幸的是,没有一个能解决我的问题.
我尝试启用 pdo 扩展和 pdo_mysql 扩展,但它说 pdo 已经加载.我尝试重新安装 PDO 和 PDO MySQL,但没有任何效果.
我在 Ubuntu 64 位机器上使用 XAMPP 服务器.
提前谢谢你.
问题解决了!
步骤:
卸载 XAMPP
apt-get update &&apt-get install lamp-server^
apt-get autoremove apache2
apt-get remove --purge mysql-server mysql-client mysql-common
apt-get autoremove &&apt-get 更新 &&apt-get install php5-mysql &&apt-get install pdo-mysql
安装 XAMPP
但是,我在运行 php artisan
时遇到了一个新问题,然后我发现我必须运行 /opt/lampp/bin/php artisan
而不是 php工匠
I have installed Laravel 4.1 everything worked just fine, but when I try to use migration it throws a PDO Exception saying:
[PDOException] could not find driver
I found many answers on StackOverFlow, but none of them solved my problem, unfortunately.
I have tried to enable pdo extension and pdo_mysql extension, but it says that pdo is already loaded. I have tried to reinstall PDO and PDO MySQL but nothing worked.
I am using XAMPP Server on a Ubuntu 64bit machine.
Thank you in advance.
The problem is solved!
Steps:
Uninstall XAMPP
apt-get update && apt-get install lamp-server^
apt-get autoremove apache2
apt-get remove --purge mysql-server mysql-client mysql-common
apt-get autoremove && apt-get update && apt-get install php5-mysql && apt-get install pdo-mysql
Install XAMPP
However, I had a new problem with running php artisan
then I discovered that I had to run /opt/lampp/bin/php artisan
instead of php artisan
这篇关于使用 XAMPP Server Linux (Ubuntu) 在 Laravel 4 上迁移时找不到驱动程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 XAMPP Server Linux (Ubuntu) 在 Laravel 4 上迁移时找不到驱动程序
基础教程推荐
- 在多维数组中查找最大值 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01