wamp

Strange problem with Wampserver 2.0 - rollback change of file

老子叫甜甜 提交于 2019-12-25 02:34:08
问题 I have running Wampserver 2.0 on Windows 7, I get some php files, insert them on www folder... and when I tried edit any with running server, its rollback for few seconds (in notepad++ I get alert with massage: "some other program modified that file, do you want to reload it?") when I reload file I got old version of file. With server turned off, I can edit files, but when it goes on again files rollback again. Please help. 回答1: Probably the cause may not related to Wampserver. It does not

Unable to connect to remote SQL database from WAMP Server using PHP 7.1

穿精又带淫゛_ 提交于 2019-12-25 00:15:20
问题 I have tried scouring the internet about this, but cannot seem to find a resolution, so I apologise in advance if this is a duplicate as I cannot seem to find anything that helps my situation. I have setup a new WAMP 3.1.3 Server installation and I'm trying to run a Laravel 5.6 application. The application connects to a remote MSSQL database on the network and I have this running successfully on my Homestead test environment using the same PHP version (but Ubuntu). On my WAMP Server

how to use NetBeans integration with WAMP 2.2.21?

十年热恋 提交于 2019-12-24 23:28:56
问题 I try to work with NetBeans IDE 7.1.2 and I have some problem with the setting. I can not successfully run the debugger. I don't want to use to Xdebug I have a WAMP and it works OK with eclipse since I have some error from eclipse related to OOP and form. I decide to install additional debugger the NetBeans. I read some tutorial on the web and it has not helped me allot. 1.I Don't know how to define in NetBeans the file php.ini . 2.I Don't know what line to add to php.ini. any help are

WAMP server stays yellow, though server is functioning normally?

橙三吉。 提交于 2019-12-24 23:17:49
问题 I turned on my computer today and it performed three unexpected updates (I had updates disabled, yet for some reason it continues to update). Now, my wampserver will launch and will run essentially normally but the icon refuses to change to green. I don't know why it's doing this and am worried that it may have a negative impact in someway. Couldn't find much about it elsewhere. Sorry for the lack of details, I really don't know what the issue could even be. Edit: I cleared my apache error

file_puts_content permission denied on Windows 7 WAMP

元气小坏坏 提交于 2019-12-24 19:48:34
问题 I am trying to use file_put_contents on my local website to download some images from a website and save them to the C:\ drive. However when running the script I get an error file_put_contents(C:\product_images\A): failed to open stream: Permission denied I have full permission for the product_images folder and also the A folder inside. I know I could just chmod in ubuntu but not sure what I could do with Windows. I just right clicked and selected properties and made sure all the users had

Localhost not displaying same components as in the server

你说的曾经没有我的故事 提交于 2019-12-24 19:05:56
问题 Okay so a few days ago I had my localhost running off of Wamp to where the files I was working on were connected to my server (through bitbucket to where I can use git in aptana) and everything was working fine (whatever displayed on my localhost off of Wamp server displayed on my bluehost server of course when everything was up to date). I had to re-install Wamp and I cloned my project again from bitbuckit into my www directory (through aptana) to where my localhost would be connected to my

running php command with Symfony

早过忘川 提交于 2019-12-24 15:27:18
问题 Until recently, I've used Symfony 1 and NetBeans IDE. In Netbeans, I could use Symfony commands by clicking. Now I would like start learning Symfony 2. http://symfony.com/doc/current/quick_tour/the_big_picture.html I open cmd.exe and go to c:/wamp/www/Symfony and: php bin/vendors install But this doesn't work. It tells me it doesn't not recognize the name "php". I use Windows 7, Wamp Server 2.1 (with PHP 5.3.5) and Symfony 2.0.5 How can i start with this? 回答1: Have you added php to your

tp3.2源码解析——入口文件

会有一股神秘感。 提交于 2019-12-24 12:01:15
  如果有人读这篇文章并跟着做的话,希望你能使用支持函数跳转的编辑器,还要善用var_dump和exit,对着源码去调试着看。跟着入口文件读,执行到哪里你看到哪里,对于那些不能一眼看出来的配置,则要记录下来,可能一个比较简单的功能会写出很长的代码,这个时候难免会看到后面忘了前面。   那么进入正题,从index.php文件可以看到入口文件只定义了几项常量作为配置,紧接着就引入了require './ThinkPHP/ThinkPHP.php';    1 // 检测PHP环境 2 if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !'); 3 4 // 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false 5 define('APP_DEBUG',True); 6 7 // 定义应用目录 8 define('APP_PATH','./Application/'); 9 10 // 引入ThinkPHP入口文件 11 require './ThinkPHP/ThinkPHP.php';   在ThinkpPHP文件依然比较简单,tp定义了一些常量配置项(defined函数的写法让之前在index入口文件里定义的配置项不会被重置)记录了运行时间和内存使用信息,进行了php版本的判断

Php Script not working on Wamp Localhost but working fine on remote server

 ̄綄美尐妖づ 提交于 2019-12-24 11:49:58
问题 When I open index.php on localhost - the page showing full or php errors such as (unidentified variable, etc) and the web page is not working at all. However exact same php files works on remote server (Godaddy for example) the index.php file starts with <? require_once ('templates/header.php'); ?> <div class='grid_12'> <table> <div id="form" > and son on.... the header.php files starts with: <?php session_start(); include('classes/secure.class.php'); // include the class $secure = new secure

Wamp环境搭建

隐身守侯 提交于 2019-12-24 10:53:14
1.环境:win2008R2 64(32位的同理,但所有软件必须都得是64位) Apache:httpd-2.4.27-win64-VC11 Mysql:mysql-5.6.31-winx64 PHP:php-5.6.31-Win32-VC11-x64 2.下载地址: Apache:http://www.apachelounge.com/download/VC11/binaries/httpd-2.4.27-win64-VC11.zip Mysql:https://cdn.mysql.com//archives/mysql-5.6/mysql-5.6.31-winx64.zip PHP:http://59.109.99.35/IXCe5caf7f45dd46730b6a72c93a376a08e/downloads/releases/php-5.6.31-Win32-VC11-x64.zip 3.安装前准备: 安装apache前必须先安装VC11,网址为http://www.microsoft.com/en-us/download/details.aspx?id=30679,64位选择下载64位,32位同理。 4.安装: 1)VC11 双击打开,一直下一步 2)Apache 将zip包解压到合适位置,这里我们解压到E:/wamp/Apache下; 3)PHP