easyphp

Modifying httpd.conf to serve over the internet in EasyPHP

余生颓废 提交于 2019-12-21 20:25:52
问题 I'm running EasyPHP on Windows. The default install just opens port 80 on the loopback interface, 127.0.0.1. I want my sites to be accessible over the local network too. There are no simple EasyPHP settings for enabling my other interface, like the one that's connected to the internet (let's say 192.168.1.3). What do I add/modify in Apache httpd.conf? 回答1: Use this code in your httpd.conf ServerName localdomain # env SetEnv TMP "/tmp" ServerAdmin admin@devserver DocumentRoot "/var/www"

How to change the location of `web root` folder of EasyPHP?

眉间皱痕 提交于 2019-12-21 07:37:41
问题 Currently on my Windows 7 machine, it is C:\Program Files (x86)\EasyPHP-5.3.8.1\www I want to point it into another location on drive D, says D:\code How would I do that? 回答1: You need to right click on the icon on the Easyphp icon on the taskbar and select configuration->Apache. This will open httpd.conf in a notepad window. You need to modify it as follows: DocumentRoot "D:/code" (...) # DocumentRootDirectory <Directory "D:\code"> Options Indexes FollowSymLinks AllowOverride All Order allow

EasyPHP Devserver 16.1 Curl Win 10

一曲冷凌霜 提交于 2019-12-20 07:20:59
问题 EasyPHP don't start. When clicking on start server or start DB nothing happens. No error logs whatsoever.... 回答1: I had a lot of trouble to make this all work. First I had to get rid of all old Easyphp versions! Make sure you have the right runtimes installed, both x86 & x64 if you have a 64bit system! I had to shutdown Malwarebytes Anti-Malware, EasyPHP wont start if this is running, you even can get a Riskware message from it! After all this I could get EasyPHP 16.1 to start, now I needed

PHP to EasyPHP MySQL server 1 second connection delay

做~自己de王妃 提交于 2019-12-17 16:19:34
问题 I'm asking this here because I think it applies to more than just EasyPHP itself. I currently use EasyPHP as my WAMP development server so I can create web applications. The problem is, when I get the mysqli object to connect to the database it takes 1 second. Running the same query on shared hosting results in speeds over 200 times faster. Should this be something I should be worried about? In terms of scalability or moving my application to another server would it be smart to spend a while

PHP to EasyPHP MySQL server 1 second connection delay

十年热恋 提交于 2019-12-17 16:18:12
问题 I'm asking this here because I think it applies to more than just EasyPHP itself. I currently use EasyPHP as my WAMP development server so I can create web applications. The problem is, when I get the mysqli object to connect to the database it takes 1 second. Running the same query on shared hosting results in speeds over 200 times faster. Should this be something I should be worried about? In terms of scalability or moving my application to another server would it be smart to spend a while

How to install PEAR with EasyPHP 5.3.8?

倖福魔咒の 提交于 2019-12-12 08:14:52
问题 I'm learning Yii and following ebook written by Jeffrey Winesett, the application is built upon TDD. So I need to install PHPUnit to write unit test, which leads me to posts help installing PEAR for my Windows 7 (ref. link 1, link 2). And in those above sites, the author keep telling to use go-pear.bat which doesn't exists in my EasyPHP 5.3.8 which also be the latest version at the time of speaking. Even in this EasyPHP forum post we cannot find the answer. So the question is: How to install

EasyPHP-DevServer 13.1 “Unexpected end of mysql”

一曲冷凌霜 提交于 2019-12-12 08:06:08
问题 Every time I install EasyPHP 13.1VC9 it works for a few days and then at random points when I go to turn it on I get this error and I am unable to start MySQL. I have tried running as Admin, and I have tried editing the permissions. Also, when I go to access MYSQL through PHPadmin I get the following error: #2002 - No connection could be made because the target machine actively refused it. This is what the log files say: 2013-06-12 23:47:18 4148 [ERROR] InnoDB: Attempted to open a previously

PHP PDO extension not available is command line

扶醉桌前 提交于 2019-12-10 14:57:15
问题 I've moved from WAMP to EasyPHP and now there are problems using PDO. PDO works fine when I view the site in the browser, but doesn't work in cmd or when I run the test file via Netbeans. I get: "PDOException: could not find driver" In phpinfo() for Configure Command I have cscript /nologo configure.js " --enable-snapshot-build" " --disable-isapi" " --enable-debug-pack" " --disable-isapi" " --without-mssql" " --without-pdo-mssql" " --without-pi3web" " --with-pdo-oci=D:\php-sdk\oracle

http://localhost/ not working with EasyPHP

匆匆过客 提交于 2019-12-10 04:30:15
问题 I've verified my host file in windows/system32/drivers/etc/ has an entry for localhost in it, but it's not going anywhere. I have to have a port number in the URL: http://127.0.0.1:8888/ Is there anything I can do to get localhost working without the need for a port number? 回答1: Your EasyPHP is probably configured to listen on port 8888. You must configure EasyPHP to listen on port 80 as well. For your information, the default port for HTTP is the port 80, so when you don't give any port

Codeigniter : Showing error as ' Unable to select the specified database: project' in Windows XP

僤鯓⒐⒋嵵緔 提交于 2019-12-10 04:22:44
问题 I am using Windows XP and using EasyPHP as a server. I have integrated Codeigniter with TankAuth. But, when I try to open my assignment folder, it shows error as follows: Unable to select the specified database: project Filename: C:\Program Files\EasyPHP-12.1\www\assignment\system\database\DB_driver.php Line Number: 140 The code inside my database .php is as follows" $active_group = 'default'; $active_record = TRUE; $db['default']['hostname'] = 'localhost'; $db['default']['username'] = 'root'