wamp

Upgraded to Windows 10 and now WAMP won't work

本秂侑毒 提交于 2019-11-27 00:03:51
问题 I had WAMP working happily on windows 7 as my local development server. Upgraded to Windows 10 today and had an orange WAMP icon on my taskbar. Turns out Windows had installed and ran IIS automatically (why?). I disabled IIS, restarted, started WAMP and the icon turned green. However, going to localhost results in a connection refused message. I used the 'Test Port 80' option on the WAMP menu and it says that yes, Server: Apache/2.2.21 (Win32) PHP/5.3.10 is listening on port 80. The Apache

WAMP - Your port 80 is actually used - Error

拟墨画扇 提交于 2019-11-26 23:05:02
问题 I installed Wamp server and when I open it, it never gets online. It always stays orange (offline). I read something about Skype, but I don't even have Skype installed and when I go to Apache > Service > Test port 80 it says: Your port 80 is actually used Any ideas how to make this work? 回答1: I've solved this today!! If you are on Windows, You go to "Control Panel" >> "System And Security" >> "Administrative Tools" >> "Component Services" >> "Services (LOCAL)" Now, since you are using WAMP

Where can I find the WAMP error log?

六眼飞鱼酱① 提交于 2019-11-26 23:02:31
问题 I am using WAMP2.2 on Windows. I need to set up SSL port on my server. My Apache, WAMP and site work well without SSL. But when I uncomment the line Include conf/extra/httpd-ssl.conf in my httpd.conf , the WAMP Server is not working anymore.(It remains orange when I restart). I assume that something is wrong with the configurations in httpd-ssl.conf . But I am wondering how I can find the error that doesn't let WAMP to start properly. Is there any error log file for WAMP? I found these errors

Call to undefined function curl_init() - with WAMP

偶尔善良 提交于 2019-11-26 22:51:00
问题 I'm trying to get cUrl to work, and I'm stumped. I've uncommented extension=php_curl.dll in the php.ini file and checked that php_curl.dll exists in the directory that extension_dir points to. I've also checked that the php.ini in the Apache directory is right. I've copied the libcurl.dll 's to Windows/System32, Windows/SysWOW64 and wamp\bin\php\php5.4.3 And I've restarted the services every time. And still I get the Fatal error: Call to undefined function curl_init() . Curl doesn't show up

How can i put my WAMP online for someone to access?

与世无争的帅哥 提交于 2019-11-26 22:22:31
问题 I would like to briefly open up my computer and allow my business partener to see what I've been developing on the my localhost. I understand there are probably some security issues with this but I only want to open up my computer for a few minutes... What do i need to setup on the following interfaces to do this? my wireless router windows7 WAMP 回答1: This works very easily for me on WinXP. Fire up the command prompt and enter ipconfig /all - get your local IP address Log into your router and

Run Cron Job on PHP Script, on localhost in Windows

送分小仙女□ 提交于 2019-11-26 22:13:58
问题 I have a php script and want to run it on an schedule. I am using local web server on windows (WAMP server) and need a way to run my_script.php every 10 min . How to run a cron job on a PHP script, on localhost in windows? 回答1: recently I had sort of problems to run a cron job on a php script on localhost (WAMP server) in windows 7, when I was on a test to chronically fetch some links from www out there. By the way I am sharing this for anyone that is on the same thing. You will need a

Use Google Drive Directory as Apache Virtual host

偶尔善良 提交于 2019-11-26 21:25:35
问题 I am trying to set up an Apache 2.4 server with my google drive folder. I already did it with Dropbox and it's working fine, but with google drive, Apache can't find the directory. After some research, I have discovered that the real path of google drive folder is in C:\Users\ME\AppData\Local\Google\Drive\sync_config.db but it's all compiled. Is there a way to get the path ? I have already tried with this KiXtart script : http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=204938

SOAP PHP fault parsing WSDL: failed to load external entity?

会有一股神秘感。 提交于 2019-11-26 20:55:41
I'm trying to run a web service using PHP & SOAP, but all I'm getting so far is this: (SoapFault)[2] message which states: 'SOAP-ERROR: Parsing WSDL: Couldn't load from ' http://localhost/MyRegistration/login.xml ' : failed to load external entity " http://localhost/MyRegistration/login.xml " I've tried changing localhost to 127.0.0.1, but that makes no difference. login is actually a wsdl file, but if I put login.wsdl in the SOAPClient constructor, it says "'looks like we got no XML document'" instead. Here is my code for the SOAP Client (register_client.php): <?php try { $sClient = new

How to access my Wamp Server on another Local Computer

限于喜欢 提交于 2019-11-26 20:40:20
问题 How can i access my local wamp server on another computer <Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Allow from all </Directory> i use this code in http.config file but not work 回答1: You could simply use the Put Online option of your WAMP Server and you can use this current system IP address and to directly access from the other computer. Do this on system tray Then, you could find your IP address using typing ipconfig or whatismyip.com website and then access it

How to set the env variable for PHP?

僤鯓⒐⒋嵵緔 提交于 2019-11-26 20:29:29
I am using WAMP. I want to use php from the command prompt. What is the entry in PATH env variable for this ? You need to put the directory that has php.exe in you WAMP installation into your PATH . It is usually something like C:\wamp\xampp\php Pekka 웃 You need to add the PHP directory to your path. On the command line (e.g. in a batch file), it would look like this: SET PATH=%PATH%;C:\your\wamp\path\php if in doubt, it's the directory containing the php.exe . You can also pre-set the path in Windows' control panel. See here on how to do this in Windows 7 for example. Be aware that if you