wamp

Regaining access to lost MySQL password for PHPMyAdmin on WAMP

余生颓废 提交于 2019-11-27 08:09:09
I changed the password for my 'root'@'localhost' account in PHPMyAdmin and like ( this person asking here ) and locked myself out of PHPMyAdmin on my browser. I am using WAMP 2.5. The solutions offered on that question don’t work for me because unfortunately I have lost the password that I reassigned root to. Some solutions ask one to reset the password via command line ( including this source ), and I have tried that through the Windows command line without success because I now have no privileges: mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('mynewpassword'); ERROR 1044 (42000):

PhpStorm $_POST always empty

别等时光非礼了梦想. 提交于 2019-11-27 07:42:50
问题 $_POST seems that does not work. I've installed PhpStorm 10.0.3, and using the WAMP server default php interpreter. in the index.php: <form method='post' action='a.php'> <input type='text' name='user_f'> <input type='submit' name='send' value='Send'> </form> In the a.php: var_dump($GLOBALS); when I type "asdf" in the form: array (size=9) 'HTTP_RAW_POST_DATA' => string 'user_f=asdf&send=Send' (length=22) '_GET' => array (size=0) empty '_POST' => array (size=0) empty '_COOKIE' => array (size=0)

How can I access localhost from another computer in the same network? [duplicate]

情到浓时终转凉″ 提交于 2019-11-27 07:35:52
This question already has an answer here: Accessing localhost (xampp) from another computer over LAN network - how to? 22 answers I just recently downloaded WAMP Server to view and edit php webpages but now I would also like other people in my network (connected to the same wifi) to be able to access localhost and all the files that I have saved. I have already tried to access localhost and my WAMP server was already online, however that didn't work. Can someone help me out? Thanks in advance! Tri Hoang You need to find what your local network's IP of that computer is. Then other people can

Fatal error: Call to undefined function: ldap_connect()

感情迁移 提交于 2019-11-27 07:14:52
I get this error when using WAMP. Fatal error: Call to undefined function: ldap_connect() I have already edited the php.ini folder and enabled php_ldap.dll For some reason only some of the extensions show up in phpinfo() when I turn them on. I have restarted apache and restarted my computer. If you are a Windows user, this is a common error when you use XAMPP since LDAP is not enabled by default. You can follow this steps to make sure LDAP works in your XAMPP : [Your Drive]:\xampp\php\php.ini : In this file uncomment the following line: extension=php_ldap.dll Move the file: libsasl.dll , from

How to solve WAMP and Skype conflict on Windows 7? [closed]

时光毁灭记忆、已成空白 提交于 2019-11-27 06:56:30
I have Windows 7 (32-bit) installed on laptop. I downloaded WAMP server and installed it with it's default options. However, I noticed that Apache does not work (while MySQL does work!). I tried to install it via Apache → Service → Install Service and got a message saying that port 80 is taken by Skype. I turned off Skype, and then Apache started to work. How can I avoid this conflict and allow WAMP and Skype to work simultaneously? Should I configure Apache to work with other port? Where? marines In Skype: Go to Tools → Options → Advanced → Connections and uncheck the box use port 80 and 443

Unable to load dynamic library 'c:/wamp/bin/php/php5.5.12/ext/php_intl.dll'

天大地大妈咪最大 提交于 2019-11-27 06:55:20
问题 I am attempting to connect from an android app to mySQL database within the WAMP server. I am getting this error consistently throughout my php_error log: PHP Startup: Unable to load dynamic library 'c:/wamp/bin/php/php5.5.12/ext/php_intl.dll' The specified module could not be found. in Unknown on line 0 When I click on the Apache>Version>2.4.9 I get the 2 following errors as pop ups: The program cant start because icuuc51.dll is missing from your computer. Try reinstalling the program to fix

Fatal error: Call to undefined function pg_connect

蓝咒 提交于 2019-11-27 06:54:28
问题 I am using Windows 7, php 5.3.5 and WAMP server. I have two php files: trigger.php and background.php. I want to run background.php as a background process. I have to call this file from trigger.php. To accomplish this I used below method. I included following code in trigger.php to make background.php to process in background. $handle = popen('start /b C:\wamp\bin\php\php5.3.5\php.exe C:\wamp\www\email3.php','r'); in background.php I have the follwing code to connect to database. $conn

Is it possible to have WAMP run httpd.exe as user [myself] instead of local SYSTEM?

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-27 06:52:06
问题 I run a django application over apache with mod_wsgi , using WAMP. A certain URL allows me to stream the content of image files, the paths of which are stored in database. The files can be located whether on local machine or under network drive ( \\my\network\folder ). With the development server (manage.py runserver), I have no trouble at all reading and streaming the files. With WAMP, and with network drive files, I get a IOError : obviously because the httpd instance does not have read

php.ini - command line PHP and WAMP server access different files

余生颓废 提交于 2019-11-27 06:32:57
问题 I don't know if this is default behavior or not, but it seems weird to me. I installed WAMP server v2.2e from scratch, with PHP 5.4.3, on a windows 7 machine. I get these minor bugs that i don't really care about (when I activate an extension I sometimes need to exit WAMP and start it again to see the changes), but that's not why I'm here. When I click on the WAMP icon -> PHP -> php.ini, the file I open is the one in the apache directory ( <WAMP dir>\apache\apache2.4.2\bin\php.ini ) The

where does MySQL store database files?

送分小仙女□ 提交于 2019-11-27 06:24:51
I have uninstall wamp server and now I need my database to restore. How can I do this process? In any case you can know it: mysql> select @@datadir; +----------------------------------------------------------------+ | @@datadir | +----------------------------------------------------------------+ | D:\Documents and Settings\b394382\My Documents\MySQL_5_1\data\ | +----------------------------------------------------------------+ 1 row in set (0.00 sec) Thanks Barry Galbraith from the MySql Forum http://forums.mysql.com/read.php?10,379153,379167#msg-379167 Cryophallion WAMP stores the db data