easyphp

Plugin 'FEDERATED' is disabled

岁酱吖の 提交于 2019-12-08 14:32:12
问题 Im trying to start MySQL using easyPHP: the response is an alert window to a log file. The main error is <-- Plugin 'FEDERATED' is disabled --> . Through research online I found that the solution is to add the federated option to the my.ini file. I did this, but it is still not working. Here is an extract from the log file for more information: 2013-05-03 14:12:57 3776 [Note] Plugin 'FEDERATED' is disabled. 2013-05-03 14:12:57 1b4c InnoDB: Warning: Using innodb_additional_mem_pool_size is

Trying to install MSSQL drivers with EasyPHP 12

情到浓时终转凉″ 提交于 2019-12-08 13:49:31
Recently I formatted my laptop and installed a fresh copy of Windows 7 Home Basic 64bit, EasyPHP 12.1 (upgraded PHP to version 5.4.6), Microsoft SQL Server 2012 and the SQL Native Client Interface 64bit version as specified in the requirements on Microsoft's website. I have downloaded the Microsoft SQL drivers for PHP (a file SQLSRV30.exe) and copied files php_pdo_sqlsrv_54_ts.dll and php_sqlsrv_54_ts.dll to ext folder. http://postimage.org/image/mv4dcc3aj/ Also added entries to php.ini http://postimage.org/image/ruwxxeknj/ I am using the thread safe version according to the snapshot file of

phpMyAdmin issue with specific table cannot edit rows errors with blank where statement

有些话、适合烂在心里 提交于 2019-12-08 09:35:03
问题 Subject pretty much says it all. I have as specific table that PMA just will absolutely not let me edit the rows. I cannot use the inline table editor and and I cannot click the "edit" link for any row. PMA barfs with a bad query error due to the fact that for one, the "where_clause" parameter is empty in the link code, thus causing it to run some query that looks like this: SELECT * FROM database . table WHERE .... WHERE WHAT? I have no clue why PMA does not create the edit links correctly.

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

强颜欢笑 提交于 2019-12-05 06:03:38
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'; $db['default']['password'] = 'root123'; $db['default']['database'] = 'project'; $db['default'][

easyphp and .htaccess

删除回忆录丶 提交于 2019-12-05 02:29:46
问题 I need help with EasyPHP and .htaccess . The .htaccess file isn't working, I think its because I didn't setup something with EasyPHP. My EasyPHP version is 5.3.8.1 Maybe anyone knows how to fix this problem ? .htaccess file : Options +FollowSymlinks RewriteEngine on RewriteRule ^get/([^/]+) /func/get.php?link=$1 [NC] 回答1: Default installation of Apache in EasyPHP don't have activated the option to use .htaccess files to modify server configuration in folders. You have to tell Apache what

Getting VHosts working with EasyPHP

眉间皱痕 提交于 2019-12-04 21:33:53
问题 So I've been trying to setup vhosts on my new Windows 10 Installation with EasyPHP Devserver 16.1. I've modified etc/vhosts to include my new domain (mysite.local), which works, but still points to the default easyphp directory. So I modified httpd-vhosts.conf to point that domain to my new directory: <VirtualHost *:80> DocumentRoot "C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www" ServerName localhost </VirtualHost> <VirtualHost *:80> DocumentRoot "C:\Users\Chris\Documents\Web

Modifying httpd.conf to serve over the internet in EasyPHP

▼魔方 西西 提交于 2019-12-04 12:03:16
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? Use this code in your httpd.conf ServerName localdomain # env SetEnv TMP "/tmp" ServerAdmin admin@devserver DocumentRoot "/var/www" #NameVirtualHost *:80 #Listen 80 ################################################################## # default

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

ぃ、小莉子 提交于 2019-12-04 01:47:04
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? 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,deny Allow from all </Directory> (...) NameVirtualHost 127.0.0.1 <VirtualHost 127.0.0.1> DocumentRoot "D:

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

↘锁芯ラ 提交于 2019-12-03 22:55:59
问题 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][

easyphp and .htaccess

孤者浪人 提交于 2019-12-03 20:19:07
I need help with EasyPHP and .htaccess . The .htaccess file isn't working, I think its because I didn't setup something with EasyPHP. My EasyPHP version is 5.3.8.1 Maybe anyone knows how to fix this problem ? .htaccess file : Options +FollowSymlinks RewriteEngine on RewriteRule ^get/([^/]+) /func/get.php?link=$1 [NC] Default installation of Apache in EasyPHP don't have activated the option to use .htaccess files to modify server configuration in folders. You have to tell Apache what configuration can be changed with .htaccess files, and in which folder. To enable all config changes on main web