wamp

Enable local network users to access WAMP sites, but except localhost page

▼魔方 西西 提交于 2019-12-13 07:32:09
问题 I put my WAMP sites on a virtual server and from there I want everybody connected to a VPN to have access to it. If my server's IP address is 172.13.12.156, after choosing the option Put Online in WAMP, I can access one of the sites like this: http://172.13.12.156/mysite/ The problem is that I would want to remove access when someone types just: http://172.13.12.156 so that they won't be able to see the WAMP panel. Is this possible? ADDITIONAL INFO At this moment I have tried: <Directory "c:

How to assign / set specific php version to composer? [duplicate]

ε祈祈猫儿з 提交于 2019-12-13 07:20:02
问题 This question already has answers here : Change PHP version used by Composer on Windows (2 answers) Closed 7 months ago . I have multiple versions of php installed on my wamp . now I am running PHP 7.0.15 as you can see in screenshot, but the laravel I am using is still taking 5.5.12 and I am unable t use laravelcollective . OS : Windows 10 Pro How I can fix it ? Updated information E:\work\www\my-project>php --version PHP 5.4.45 (cli) (built: Sep 2 2015 23:48:00) Copyright (c) 1997-2014 The

How do I setup Zend Framework with WAMP?

笑着哭i 提交于 2019-12-13 06:32:56
问题 I read that to include the Zend framework, I must include this on the include path in php.ini. But I have a doubt. Where do I find the php.ini file in my WAMP with php 5.3.0? Please help me because I am new to this topic and also to PHP... 回答1: i see the info you are talkin about (koen) but i wrote a simple helloworld.php in zend and i am tryin to run it so it takes me to a browser or it uses its own browser... but when i click the "run as php web page", it tells me it cant find the localhost

PHP Server - CLI has stopped working

烈酒焚心 提交于 2019-12-13 06:07:27
问题 I ve just updated Wamp to PHP 5.4.3 from 5.3.8. Server runned from Wamp is running correctly but if I want to try run PHP new feature and server is Off - php artisan serve in laravel4 or php -S localhost:8888 from command Line I recieve CLI Has stopped working in Windows 7. Do you have some suggestions ? System event error log: Faulting application name: php.exe, version: 5.4.3.0, time stamp: 0x4fb15e42 Faulting module name: php5ts.dll, version: 5.4.3.0, time stamp: 0x4fb15f2c Exception code:

Magento 1.7 with Wamp 2.2

六月ゝ 毕业季﹏ 提交于 2019-12-13 04:58:46
问题 Just downloaded lastest wamp 2.2 and magento 1.7 I put the magento folder into the www folder I went to localhost/magento and says “The connection to localhost was interrupted.” also tried localhost/magento/install and tried http://127.0.0.1/magento gets error "Google Chrome's connection attempt to localhost was rejected." any ideas on why nothing shows up? because my other localhost files work fine. I posted this on the magento forums and 5 other people said they had the same problem with no

Missing MSCVR110.dll

我与影子孤独终老i 提交于 2019-12-13 04:56:03
问题 I've downloaded the newest version of WAMP for the first time for my machine. It came with the error (something along the lines of): "missing MSVCR110.dll. Try reinstalling." Problem is I've installed everything, both 32 bit and 64 bit, every file listed and tried every verseion of WAMP but nothing suffices. I've copied the dll files into system32, changed the PATH etc. but nothing, please could someone help! 回答1: For anyone who stumbles across this get Xampp 来源: https://stackoverflow.com

Strange behaviour, WAMP - Codeigniter

拈花ヽ惹草 提交于 2019-12-13 04:50:37
问题 Background : I migrated a Codeigniter project to Windows 10 from Windows 7, in Windows 7, I was working with manual installation of Apache, PHP, Mysql but in Windows 10 I installed WAMP. Point to be noted here is that the mysqli is not working in this new setup, I have tried many things and asked questions here but to no avail. So I am working with mysql at the moment. Problem : I started testing functioning of the website(migrated project) and found that the signup is not working which was

WAMP Mysqli not working whereas Mysql works

我怕爱的太早我们不能终老 提交于 2019-12-13 04:44:21
问题 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

Failing at Twilio, new user

房东的猫 提交于 2019-12-13 04:33:56
问题 I've recently taken on the task of making a quick and dirty static html page that will use php to access Twilio and reply with an SMS. I am new to Twilio, and was following this tutorial: http://www.twilio.com/docs/quickstart/php/sms/sending-via-rest When that failed I went back to check if I had skipped any steps after downloading the php zip and read over the content in the install page of the Twilio website, but even that didn't make sense, since I have never herd of PEAR and simply

Is it possible to see active sessions using php?

匆匆过客 提交于 2019-12-13 04:31:46
问题 I am developing a php application. Is it possible to get active sessions and session values on my server? And is it possible to end up a particular session? 回答1: If you want maximum flexibility with sessions you can save all your sessions in a database. Then it is very easy to get number of sessions, content of any session, kill them, etc... http://shiflett.org/articles/storing-sessions-in-a-database As a bonus you will increase the security! 回答2: Currently in PHP you cannot get the active