easyphp

How to install PEAR with EasyPHP 5.3.8?

我的梦境 提交于 2019-12-03 16:57:26
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 PEAR with EasyPHP 5.3.8? Regards, Nam ps. I'm using: Netbeans PHP 7.0.1 as IDE for PHP. EasyPHP 5.3

EasyPHP-DevServer 13.1 “Unexpected end of mysql”

拈花ヽ惹草 提交于 2019-12-03 13:59:10
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 opened tablespace. Previous tablespace mysql/innodb_index_stats uses space ID: 2 at filepath: .\mysql

EasyPHP Devserver 16.1 Curl Win 10

余生长醉 提交于 2019-12-02 09:50:28
EasyPHP don't start. When clicking on start server or start DB nothing happens. No error logs whatsoever.... 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 to activate Curl. Follow all instructions I could find here. Copied libeay32.dll, libsasl.dll, ssleay32.dll

Access localhost from another computer not on network

大城市里の小女人 提交于 2019-12-01 18:30:20
Before you say that it is a dupe, this is not the same as this , this , this or this . My question is how do you do it globally. For instance, consider this. I have EasyPHP running in my computer. At present my ip address (global) is 223.231.178.118 Now, let's say there is someone else (maybe in a different country altogether) who wants to access my ip (223.231.178.118). I do know how to access 192.168.x.x from the same network. I just want to know how you can do this globally, if possible. P.S 1 : The computer running EasyPHP is behind a router. P.S 2 : My IP (local IP is, but global one is

phpMyAdmin reports 'No Privileges'

北战南征 提交于 2019-12-01 14:38:06
问题 Long story short, I ended up deleting the root user from PHPMyAdmin in EasyPHP. After some researching, I used skip-grant-tables to regain database access. Now, however, I cannot do anything as the root user has ' No Privileges .' That stated, when logged in as 'root,' I do, indeed, have the ability to create a database via SQL. I've tried the following, and similar: GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost'; FLUSH PRIVILEGES; Still, I can't do anything. Additionally, I have this

Unable to access MySQL from phpMyAdmin after setting root password in EasyPHP{WAMP}

余生长醉 提交于 2019-12-01 02:20:09
After successful setup on initial launch of MySQL, the page prompted me to set up ROOT password for security reasons. On setting the password, am no longer able to access MySQL. The error is: 1045 - Access denied for user 'root'@'localhost' (using password: NO) Looked up on the net and tried the following options in the config.inc.php from the phpmyadmin foler: Set the authentication to "http" so that it prompts to enter the username and password /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = 'http'; Set up the correct password in the config file $cfg['Servers'][$i]['password'] =

How to access site running apache server over lan without internet connection

隐身守侯 提交于 2019-11-29 20:20:55
I am running a server on Windows XP SP2 computer using EasyPhp. Lets call it computer_1. The ip address of computer is 192.168.1.2 Now I have another computer ( computer_2) on the lan with ip address 192.168.1.3 I want to access the site on computer_1 from computer_2. comupter_2 can ping computer_1 (ping 192.168.1.2 works) But when I type http://192.168.1.2 in the browser of computer_2, nothing happens. I want to access the site on comupter_1 from computer_2. In your httpd.conf make sure you have: Listen *:80 And if you are using VirtualHosts then set them as given below: NameVirtualHost *

Activation Curl on EasyPHP

做~自己de王妃 提交于 2019-11-29 02:36:30
After uncommenting the curl-modul in the php.ini i get the following error: PHP Warning: PHP Startup: Unable to load dynamic library 'C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-binaries\php\php5617x160120145639\ext\php_curl.dll' - Das angegebene Modul wurde nicht gefunden.\r\n in Unknown on line 0 Matthew Lee This as, Anar Hariyev states, works: 100% working solution, I won this problem! 1) Copy libssh2.dll from php directory to Windows/system directory 2) In php.ini #zend_extension remove (;) front row ;extension=php_curl.dll 3) Restart Apache server. However, you can copy libssh2.dll

Importing sql file using phpmyadmin in EasyPHP

女生的网名这么多〃 提交于 2019-11-28 19:15:21
I have a website written in php and mysql (written by someone else) and I need to alter it- just for your interest it is bridgetjonesart.co.uk. So I thought I would download it to my desktop pc and use easy php and mysql locally to make changes then upload it again. I have the sql database as a file 'runningc_bjart.sql' in the root directory. I first use php admin to create a database of the same name as the orginal and then use import ... one table appears to be created but then getting an error... Error SQL query: DocumentationEdit Edit SELECT `comment` FROM `phpmyadmin`.`pma_column_info`

How to access site running apache server over lan without internet connection

北城以北 提交于 2019-11-28 15:47:33
问题 I am running a server on Windows XP SP2 computer using EasyPhp. Lets call it computer_1. The ip address of computer is 192.168.1.2 Now I have another computer ( computer_2) on the lan with ip address 192.168.1.3 I want to access the site on computer_1 from computer_2. comupter_2 can ping computer_1 (ping 192.168.1.2 works) But when I type http://192.168.1.2 in the browser of computer_2, nothing happens. I want to access the site on comupter_1 from computer_2. 回答1: In your httpd.conf make sure