wamp

Magento on PHP 7.2 wamp server

时光怂恿深爱的人放手 提交于 2019-12-11 12:49:08
问题 i am configuring an existing magento project on local system with WAMP server php version 7.2, while installing magento i get error "PHP extension "mcrypt" must be loaded." Problem is mycrypt is no longer supported in php 7.2, can anyone suggest how can i resolve it? 回答1: mcrypt has been moved from php to pecl since 7.2 You still can install it. Install dependencies gcc make autoconf libc-dev pkg-config install the lib itself libmcrypt-dev I assume php7.2 and pecl are installed so you just

Wamp server is unable to access using public ip address

こ雲淡風輕ζ 提交于 2019-12-11 12:42:16
问题 I have trying to connect my phone with the wampserver I created and is looking forward for an OTP based application. I aim to have a different network for both the PC and mobile and look forward to use public IP for accessing. To enable port forwarding I have changed the port in httpd.conf to Listen 8080 and in my router settings I have added separate entries: one for TCP and one for UDP packets. Lastly, I have also enabled # onlineoffline tag - don't remove Require all granted in the httpd

Moving WAMP and Wordpress to another drive

牧云@^-^@ 提交于 2019-12-11 12:12:17
问题 I have WAMP installed in my C Drive and a Wordpress website too. I now need to move everything to the D Drive. What is the easiest way to do this please? Thanks 回答1: if you have everything set up correctly, it's a matter of telling WAMP what directory is your wordpress installation. you can change it manually going to httpd.conf or default-server.conf and edit the DocumentRoot on my machine, the file is in C:\wamp\bin\apache\Apache2.2.17\conf\httpd.conf change DocumentRoot "c:/wamp/www/" to

WAMP and mysqli::real_connect(): (HY000/2002)?

只谈情不闲聊 提交于 2019-12-11 12:09:58
问题 I upgraded from Windows 7 to Windows 10 recently, and installed WAMP . This is my first time working with WAMP. I am getting following error message in one of my Codeigniter project I was working in windows 7 setup and I don't know what to make of it. The page keeps on loading and loading and then fails with the error message. Message: mysqli::real_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established

WAMP is not running

╄→尐↘猪︶ㄣ 提交于 2019-12-11 11:51:59
问题 I had installed WAMP in E: drive. I re-installed fresh copy of windows. Since then, WAMP only comes in red shade , not coming in green mode. Please help what should I do? 回答1: port 80 might be used by other services. test that using apache>services>test port 80. and disable that service. 回答2: When Windows is re-install or upgraded in-place, sometimes both the Apache and MySQL services are cleared out and the PATH environmental variable is reset. Update the Path with the "bin" folders of

WAMP Re-install causes error: Could not execute… The service has not been started

ぐ巨炮叔叔 提交于 2019-12-11 11:16:57
问题 Full error reads: Could not execute menu item (internal error) [Exception] Could not perform service action: The service has not been started After doing a bit of googling, this problem should be caused by another service/process that's using the port I'm trying to use (80). When I go to Wamp->Apache->Services->Test port 80 , it appears some OTHER apache program is using that port. I'm not sure where it is or how it got there, but I can't find it installed anywhere. Additionally, attempts to

Forbidden error when accessing wamp from local network

て烟熏妆下的殇ゞ 提交于 2019-12-11 10:27:42
问题 Okay now, this problem has been driving me crazy for a week! I hope we will find a solution together. I am trying to configure my wamp server to run on a local network (be accessable from a local network). Specifically, I want to access a project saved in the /www folder from another computer using a local area connection. I am using Windows 7 for my wamp server. However, when I run "192.168.178.3:8080" from the other computer I get the following error: Forbidden: You don't have permissions

403 Forbidden Error. Hosting a website on my PC with WAMP?

扶醉桌前 提交于 2019-12-11 09:57:44
问题 I'm running Windows 7 Ultimate 64-Bit and have WAMP installed, nothing configured though. I'm using dynamic IP address. I have some web files that i want to host temporarily on my PC so that others can access it. After turning all the services on and putting the server online, i get "Forbidden You don't have permission to access / on this server" when i type the external IP address of my machine. though it works with "localhost" and "127.0.0.1" rightly points to the www folder. Port 80 is

ftp_get() corrupt large file download

梦想的初衷 提交于 2019-12-11 09:04:29
问题 I have to download a large file(approx~-9mb) in .gz format from the server using ftp. I have written a function which downloads the file completely and correctly but when i put this code online , the file is downloaded but the file gets corrupt. Here is my code: function downloadFile($ftp_server, $username, $password, $server_file, $local_file) { // download server file $ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server"); $login = ftp_login($ftp_conn, $username,

Reverse proxy authentication using LDAP in WAMP is failing

蹲街弑〆低调 提交于 2019-12-11 08:37:07
问题 Using reverse proxy I have redirected My PHP application hosted in WAMP to Grafana. Now I am trying to authenticate the reverse proxy user using LDAP. It is giving me an error as auth_ldap authenticate: user yajana authentication failed; URI /grafana/ [LDAP: ldap_simple_bind() failed][Invalid DN Syntax] and denied (no authenticated user yet) . How to resolve this error? Here is my httpd.conf file: LoadModule auth_digest_module modules/mod_auth_digest.so LoadModule authn_file_module modules