wamp

How to install PHP extension locally on WAMP?

假装没事ソ 提交于 2019-11-30 11:40:06
问题 I've never done this, so I'm looking for detailed guidance. I'm trying to use the Evernote API to create a PHP page. I've downloaded their SDK and it says I need to install OAuth extension for PHP. I have WAMPSERVER installed on my local machine (Windows 7). I've tried reading the manual but I can't even figure out what to download :S Is this a fairly straightforward process? http://php.net/manual/en/book.oauth.php 回答1: Get the precompiled dll from http://downloads.php.net/pierre/ Search the

Not able to launch WAMP - Aestan Tray Menu has stopped working

无人久伴 提交于 2019-11-30 11:29:05
I just downloaded and installed WAMP, when I open it I get a warning box that Aestan Tray Menu has stopped working -"A problem has caused program to stop working correctly. Windows will close program and notify you if a solution is found". I have tried the usual solutions : I checked the IIS and it is already disabled. And I also unchecked the "use port 80..." option in Skype. Can anyone help me out with this? Had the same problem. I had to install this to make it work properly : http://www.microsoft.com/download/en/confirmation.aspx?id=29 HTH Mathieu. Somnath Muluk I was having same problem

Wampserver 2.1 gives orange icon after install on Windows 7

▼魔方 西西 提交于 2019-11-30 11:11:55
I just installed Wampserver 2.1 on my windows 7 64bit computer and the icon that should turn green, turns orange, saying that the server is not ready. The result is that on opening the browser on http://localhost/ it just timed out. anybody an idea, I tried google on this, but without any correct result. The apache error log says this: [Fri Mar 11 14:40:58 2011] [notice] Apache/2.2.17 (Win32) PHP/5.3.4 configured -- resuming normal operations[Fri Mar 11 14:40:58 2011] [notice] Server built: Oct 24 2010 13:33:15 [Fri Mar 11 14:40:58 2011] [notice] Apache/2.2.17 (Win32) PHP/5.3.4 configured --

WAMP Server virtual hosts configuration

痞子三分冷 提交于 2019-11-30 10:37:26
OK, I have my wamp installed and simply can't setup my virtual hosts properly. Here's what I have: Wamp install dir: F:\wamp Projects dir: F:\www # F:\wamp\bin\apache\apache2.4.2\conf\extra\httpd-vhosts.conf <Directory "F:\www"> AllowOverride AuthConfig FileInfo Indexes Limit Options Order Deny,Allow AllowOverride All Allow from all </Directory> NameVirtualHost 127.0.0.1 <VirtualHost 127.0.0.1> ServerName localhost DocumentRoot "F:\wamp\www" </VirtualHost> # Yes, it's a symfony2 project <VirtualHost 127.0.0.1> DocumentRoot "F:\www\my_project\web" DirectoryIndex app_dev.php ServerName my

Create vhost in wamp 2.5 in different directory on win7 returns forbidden error

故事扮演 提交于 2019-11-30 07:58:44
I have installed wamp in C:\wamp and I want to make DocumentRoot folder in E:\zf2 as virtual host for a dummy domain www.skeltonapplicaiton-zf2.local. Uncommitted the line Include conf/extra/httpd-vhosts.conf in httpd.conf file. httpd-vhosts.conf code is <VirtualHost *:80> ServerName www.skeltonapplicaiton-zf2.local ServerAlias skeltonapplicaiton-zf2.local DocumentRoot "E:\zf2" <directory "E:\zf2"> Options Indexes FollowSymLinks AllowOverride all Order Deny,Allow Deny from all Allow from all </directory> </VirtualHost> Added its entry in hosts file as 127.0.0.1 www.skeltonapplicaiton-zf2.local

How can I connect to MySQL on a WAMP server?

社会主义新天地 提交于 2019-11-30 06:50:20
This might be ridiculously easy for you but I've been struggling with this for an hour... :( <?php $connect = mysql_connect("localhost:8080", "root", "mypassword"); echo($connect);?> This is the code that I'm trying to run - you can see that I'm using 8080 as my port number and, of course, I have HTML codes as well. However, it gives me the following error messages whenever I try to open the PHP file: Warning: mysql_connect() [function.mysql-connect]: MySQL server has gone away in C:\wamp\www\php_sandbox\index.php on line 2 Warning: mysql_connect() [function.mysql-connect]: Error while reading

Can't use WAMP , port 80 is used by IIS 7.5

我怕爱的太早我们不能终老 提交于 2019-11-30 06:13:16
问题 I am trying to use WAMP on Windows 7, my WAMP is online, but when I open localhost I get the welcome page of IIS 7.5, although I have uninstalled IIS 7.5 from my PC! Apache server test says that port 80 is used my Microsoft-HTTPAPI/2.0 MS Visual Studio 2010 was uninstalled a short while ago as well. 回答1: By default WampServer is installed to port 80 which is already used by IIS. To set WampServer to use an open port, left click on the WampServer icon in the system tray and go to Apache >

WAMP Virtualhost not working with Laravel instance

人走茶凉 提交于 2019-11-30 06:06:40
问题 I'm working on a Laravel project locally using WAMP 3.1.0 and everything was working correctly until there was a windows update today. When I go to my project I get an error page I followed this post WAMP Virtual Host not working but that didn't solve my problem. I've edited my C:\Windows\System32\drivers\etc\hosts file in admin mode which looks like this: 127.0.0.1 localhost ::1 localhost 127.0.0.1 test.dev ::1 test.dev 127.0.0.1 shoppingcart.dev ::1 shoppingcart.dev 127.0.0.1 gitproject.dev

Enable shell_exec() in wamp server

那年仲夏 提交于 2019-11-30 05:47:39
问题 Recently I have passed one issue on wamp server..I need to use the shell_exec() function in PHP for running some external shell script (some checksum file) . But in my wamp server the function is disabled by default. I searched in google but I cant find out the solution. So I try to put that code in live server. But there's also the same problem. I contacted the technical person for that server but he said we cant enable shell_script. It is security violence. So only way is trying in wamp

Update WAMP/Apache to use new cacert.pem

五迷三道 提交于 2019-11-30 04:42:27
问题 Updated CA Cert: http://curl.haxx.se/ca/cacert.pem I know I've done this on another machine but I can't find the resources that I found before when I had to perform this. I want to update WAMP to use the .pem above, but I can't for the life of me remember where to do that with what command. 回答1: If you're running at least php 5.3.7, you can put this in the ini at the end of your php.ini file: curl.cainfo=c:\path\to\cacert.pem You'll need to find the specific php.ini file for the version of