wamp

在windows+apache环境下安装ioncube

匿名 (未验证) 提交于 2019-12-03 00:04:02
最近由于使用了一些商业化的系统后发现都是加密的 与 xcache 类似的,ioncube是为数不多能够在windows+apache环境使用的php优化工具之一。其作用与大名鼎鼎的Zend Optimizer大抵相似,但是如之前 WAMP安装后对php提速优化 一文中介绍到的,Zend Optimizer只支持到php5.2.x,而新的Zend Guard Loader虽然支持php5.3.x,但是只能在windows+IIS中使用。 ioncube的优化效果相当好,如果是在windows+apache中使用的是php5.3版本的话,Robin极力推荐安装此插件。安装方法如下: 1. 下载 ioncube_loaders_win_vc9_x86.zip 2. 将压缩包内的ioncube_loader_win_5.3.dll拷贝至wamp\bin\php\php5.3.8\zend_ext目录下 3. 在wamp\bin\apache\Apache2.2.21\bin\php.ini中添加 zend_extension = “d:/dev/wamp/bin/php/php5.3.8/zend_ext/ioncube_loader_win_5.3.dll” 注意: 如果使用xdebug的话,ioncube_loader.dll的zend

Integration of postgreSQL on WAMP

柔情痞子 提交于 2019-12-02 23:57:44
I have just installed the postgreSQL on windows 7. I am trying to integrate postgreSQL with WAMP server. For this i have done the following changes in httpd.conf and php.ini file 1 LoadModule c:/path to libpq.dll in httpd.conf and then 2 extension=php_mod_pgsql.dll , extension=php_pgsql.dll -- enable(reemove ;) in php.ini If I do the above changes the localhost does not work. If I do the second changes the localhost work but does not load the libpq.dll . I checked the pgsql by php script by this <?php echo extension_loaded('pgsql') ? 'yes':'no'; ?> The script shows "yes", but apache is not

Is it dumb to develop for LAMP on WAMP?

雨燕双飞 提交于 2019-12-02 22:59:07
After becoming somewhat estranged open source, and spending some years developing web applications in ASP.Net, I'm going to start doing quite a lot of PHP / MySQL development. I've quite painlessly installed WampServer to get a development environment up and running on my Windows machine, but the platform I'll be targeting will most likely be Linux. So my question is, am I likely to run into problems due to developing on Windows while targeting Linux? Is it advisable to invest in getting a Linux environment setup in which to develop my LAMP apps? If you can I'd invest in some kind of linux, or

InnoDB working, still showing “Database server does not support InnoDB storage engine message”

ⅰ亾dé卋堺 提交于 2019-12-02 22:37:34
I'm trying to install Magento on a local server using WAMP. InnoDB is set as the default engine but it still shows me the message: Database server does not support InnoDB storage engine. I really don't know what to do. Can someone help? Go To Line 59 of the file app/code/core/Mage/Install/Model/Installer/Db/Mysql4.php Replace: public function supportEngine() { $variables = $this->_getConnection() ->fetchPairs('SHOW VARIABLES'); return (!isset($variables['have_innodb']) || $variables['have_innodb'] != 'YES') ? false : true; } With this: public function supportEngine() { $variables = $this->

phpstrom--------config php interpreter

匿名 (未验证) 提交于 2019-12-02 22:10:10
phpstrom是一款比较好用的php代码编辑器,使用phpstrom进行代码编辑时我可能会需要看一下在网页上的实际效果,但是PHPstrom本身只是一款编辑器,不具备运行功能,我们需要自己安装一个服务器,我选择的是WAMP集成环境。注意:1.需要提前安装好WAMP集成开发环境,   2.本文是没有配置直接写代码然后运行他会提示config php interpreter   3.配置好之后如果任然不可以,重启一下WAMP,或者phpstropm 没有配置之前在phpstrom里面运行写好的代码显示如下: 点击蓝色字体进行配置: 接下来如下:点击加号选择,Local Path to interpreter .之后在PHP executable哪里选择已安装好的WAMP里面的php.exe,如下: 配置完成,再次点击运行就可以正常运行      文章来源: phpstrom--------config php interpreter

WAMP server in green but only get 404

时光怂恿深爱的人放手 提交于 2019-12-02 22:09:33
Alright ladies and gents. I have quite the puzzling issue. I have WAMP server installed on my WIN7 machine at work, everything was working fine and dandy. Didn't use it for a few weeks because I got pulled into other things. The other day I tried to start it up... The icon was green and I figured we were good. Then I tried to open up localhost and just get a 404 error: HTTP Error 404. The requested resource is not found. I have no clue why it's doing this, we were working fine 2-3 weeks ago and now nothing. Have any of you had the green icon but couldn't get any pages to come up? Where in the

Upgrade WAMP to MySQL 5.5?

≡放荡痞女 提交于 2019-12-02 21:09:42
My dev team uses WAMP for the php/Mysql environment but i just learnt that uses MySQL 5.1 and MySQL is at 5.5 now. Can I get the mysql upgraded to 5.5 separately without any issue to make it work with WAMP or is there any patch for WAMP to get the latest mysql? I want to ensure they work with the latest build of MySQL but i am not sure if it is as simple as download mySQL 5.5 and it gets auto-added to the WAMP server, or if there are compatible? I assume since WAMP never updated their MySQL something is not compatible? Found this for you: STEP1: (x represents a number) Download the latest

How to hide information_schema database from phpmyadmin

寵の児 提交于 2019-12-02 20:37:30
I am able to hide the database from writing this line $cfg['Servers'][$i]['hide_db'] = 'information_schema'; in config.inc.php file pf phpmyadmin. It is possible to access content of this database through url like http://www.test.com/phpmyadmin/index.php?db=information_schema&token=3ba37ae1e41f6a10e4afc7c69b934bba How is it possible to remove complete access of information_schema database ? CatholicForEver You can even hide multiple DBs using pipe separator $cfg['Servers'][$i]['hide_db'] = 'information_schema|performance_schema|mysql'; I installed phpmyadmin in outside directory but and these