wamp

Installing PEAR and PHPUnit on WAMP

丶灬走出姿态 提交于 2020-02-14 03:23:29
1.安装wamp 2.安装PEAR Step: 打开 C:\wamp\bin\php\php5.3.5\php.ini 修改: ;phar.require_hash = On phar.require_hash = Off 运行C:\wamp\bin\php\php5.3.5\ go-pear.bat 选择local,默认 YES 添加环境变量: variable ‘PHP_PEAR_PHP_BIN’ 为C:\wamp\bin\php\php5.3.5\php.exe 修改path,添加: C:\wamp\bin\php\php5.3.5\ 重启apache 3安装PHPUnit 先下载 Structures_Graph http://pear.php.net/package/Structures_Graph/download/ 解压 Structures 放在C:\wamp\bin\php\php5.3.5\PEAR 然后运行: pear install Structures_Graph-1.0.4 pear upgrade pear pear channel-discover components.ez.no pear channel-discover pear.phpunit.de pear channel-discover pear.symfony-project.com

Windows 搭建WAMP+Mantis

巧了我就是萌 提交于 2020-02-12 12:22:01
下载WAMP http://www.wampserver.com/ 安装直接下一步就行 安装完启动后,显示下面的logo 在浏览器输入 127.0.0.1/phpmyadmin 设置数据库 ( 默认用户 root ,没有密码 ) 设置密码 下载Mantis https://www.mantisbt.org/download.php 选择zip适合Windows 解压后放到WAMP安装目录下www文件夹下 浏览器登陆地址 http://127.0.0.1/admin/install.php 安装 mantis 数据库用户密码,密码是设置数据库的密码 后台管理用户默认不设置 install安装 提示安装完成 黄色提示可以不管 登陆 默认用户 administrator 默认密码 root 成功登陆 来源: https://www.cnblogs.com/MOMING95/p/12298323.html

WAMP Apache rewrite issue in .htaccess

落爺英雄遲暮 提交于 2020-02-06 03:36:14
问题 I am working in a WAMP environment trying to create a bare bones front controller and have started with creating an .htaccess file in my project root (i.e. www/molecule/ The .htaccess contains: Options +FollowSymLinks IndexIgnore */* # Turn on the RewriteEngine RewriteEngine On # Rules RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php Apache rewrite_module is enabled in my WAMP settings, and also uncommented in the httpd.conf, but getting an

wamp 3.0.6(apache 2.4.23) 403 forbidden 解决办法

我的未来我决定 提交于 2020-01-27 03:58:12
最近为了使用laraval框架,将wamp 升级到了比较高的版本,相应的apache也升级到了 2.4.23. larval是使用的挺好的,原来的apache倒是出现了问题:同一个局域网内,别人机器不能访问我的站点。 研究了半天,终于找到方法: 1.防火墙关闭 2.修改 apache 的 httpd.con f文件,将其中的 Require local 修改成 Require all granted .这个是2.4之后新的处理方法,之前的方法不管用了。如图: 3.修改 httpd-vhosts.conf. 找到 <VirtualHost *:80>节点上的所有虚拟站点,将其中的 Require local 都改成 Require all granted 。如图: 最后重启服务。 来源: https://www.cnblogs.com/airbreak/p/6369764.html

PHPMailer on remote host does't work

和自甴很熟 提交于 2020-01-25 18:01:44
问题 I'm working on a little e-cards project. I have to send emails from my remote server with PHPMailer. localy I'm using this configuration (with my own Gmail email adress) and it works perfectly. /ssi/mail.config.php <?php $mail = new PHPMailer(true); $mail->CharSet = 'utf-8'; $mail->SMTPDebug = 2; $mail->isSMTP(); $mail->Host = 'smtp.gmail.com'; $mail->Port = '587'; $mail->SMTPSecure = 'tls'; $mail->SMTPAuth = true; $mail->Username = 'private@gmail.com'; $mail->Password = '***secret***'; $mail

I cant install a Specific version of Symfony using Composer

隐身守侯 提交于 2020-01-25 10:13:36
问题 I want to install Symfony 4.0.6 version! using composer with cmd when I write composer create-project Symfony/framework-standard-edition Stage_App "4.0.*" also tried composer create-project Symfony/skeleton Stage_App "4.0.*" and both install Symfony 5.0.2 note: I don't want to work with the last version! i just want to work with 4.0.6 how can I install that version? 回答1: since the 4.0.* of symfony version is deprecated, the symfony/skeleton creates a project on the 5.0 version. Since 4.4.*

PhpStorm和WAMP配置调试参数,问题描述Error. Interpreter is not specified or invalid. Press “Fix” to edit your pro

三世轮回 提交于 2020-01-21 21:16:27
Error. Interpreter is not specified or invalid. Press “Fix” to edit your project configuration. 解决方法: 打开File->Settings 浏览到Languages & Frameworks->PHP Include Path添加D:\WAMP64\apps\phpsysinfo3.2.3\sample\distrotest\Pear 点击CLI Interpreter右边的…按钮,打开如下窗口 点击左上角的绿色加号按钮 选择Other Local… 配置如下: 假设WAMP安装路径为D:\WAMP64\,版本号可能会有差异,根据实际情况进行浏览选择。 PHP executable设置为D:\WAMP64\bin\php\php5.6.16\php.exe(点击…按钮浏览) Debugger extension设置为D:\WAMP64\bin\php\php5.6.16\zend_ext\php_xdebug-2.4.0rc2-5.6-vc11-x86_64.dll(点击…按钮浏览) 设置结果如下: 点击OK按钮保存设置。 最终设置结果如下: 点击OK按钮保存设置。 来源: CSDN 作者: 独立的精神信徒 链接: https://blog.csdn.net/x1037490413

Error 1045 using password yes and restore data from wampserver

前提是你 提交于 2020-01-17 14:09:26
问题 I have wamp running locally on my computer and was working just fine. I have a web application based on PHP and MySQL. I am using a password for the connection. Suddenly, I got the following error: MySQL ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) I tried to follow the answers of this post on stack. But nothing worked. Ounce I open the mysql cmd and write down the password, it will close immediately. I even used MySQL workbench, and I was successful to

Where is the ini file for wamp server for MYSQL Workbench integration?

回眸只為那壹抹淺笑 提交于 2020-01-17 08:27:58
问题 I need the ini file, but I don't know which one I need to use. 回答1: On WAMP Server the my.ini file can be found here, assuming you installed wamp on c: c:\wamp\bin\mysql\mysqlx.y.z\my.ini Remember to specify the section called [wampmysqld] when integrating with MySQL Workbench. 来源: https://stackoverflow.com/questions/18538045/where-is-the-ini-file-for-wamp-server-for-mysql-workbench-integration

Fastest way to get XAMPP or WAMP up on Win7 64-bit?

别来无恙 提交于 2020-01-16 19:37:07
问题 I recently upgraded to a 64-bit machine, (I know I'm behind but everything was running and I'm cheap). I use XAMPP on my older machines to stand up local web dev and want to do the same on my new machine. However I'm having significant trouble getting XAMPP or WAMP to run properly under the 64-bit install. WAMP simply won't install saying that the setup files are corrupted and XAMPP installs but throws an error about running from the XAMPP directory on control panel launch and Apache will not