xampp

xampp MySQL does not start

心已入冬 提交于 2019-11-26 11:48:16
I installed Xampp on Windows 7 32-bit. When I try to start MySql in XAMPP control panel (v3.2.1) I have the following message and MySql does not start. 23:02:03 [mysql] Problem detected! 23:02:03 [mysql] Port 3306 in use by ""C:\Program Files\MySQL\MySQL Server 5.1\bin\mysqld" --defaults-file="C:\Program Files\MySQL\MySQL Server 5.1\my.ini" MySQL"! 23:02:03 [mysql] MySQL WILL NOT start without the configured ports free! 23:02:03 [mysql] You need to uninstall/disable/reconfigure the blocking application 23:02:03 [mysql] or reconfigure MySQL and the Control Panel to listen on a different port 23

XAMPP on Windows - Apache not starting

﹥>﹥吖頭↗ 提交于 2019-11-26 10:59:02
问题 I have installed XAMPP on my windows 7 machine but can\'t get Apache to work. On start I get the following errors: 13:09:21 [apache] Apache Service Detected With Wrong Path 13:09:21 [apache] Uninstall the service manually first 13:09:21 [apache] Possible problem detected! 13:09:21 [apache] Port 80 in use by \"system\"! 13:09:21 [tomcat] Tomcat Service Detected With Wrong Path 13:09:21 [tomcat] Uninstall the service manually first After opening the XAMPP panel and installing Apache service: I

Apache is not running from XAMPP Control Panel ( Error: Apache shutdown unexpectedly. This may be due to a blocked port)

和自甴很熟 提交于 2019-11-26 10:21:40
问题 I have installed XAMPP (xampp-win32-1.8.2-0-VC9-installer.exe) on Windows 7 successfully. But unfortunately, the following error was found during running Apache from XAMPP Control Panel: 5:38:38 PM [Apache] Error: Apache shutdown unexpectedly. 5:38:38 PM [Apache] This may be due to a blocked port, missing dependencies, 5:38:38 PM [Apache] improper privileges, a crash, or a shutdown by another method. 5:38:38 PM [Apache] Press the Logs button to view error logs and check 5:38:38 PM [Apache]

Unable to find the wrapper “https” - did you forget to enable it when you configured PHP?

為{幸葍}努か 提交于 2019-11-26 10:17:51
The problem is in the question. I've done a thorough investigation for solutions in regards to this and I know there are topics to this and I've followed them too and nothing has worked. That being said I'll list out exactly everything I've done so far. I am running PHP 5.2.14 with Zend Debugging on the latest Eclipse version on my Windows XP computer. I have a 1 GB of RAM. I have XAMPP running with Apache, MySQL, and FileZilla installed. On XAMPP I've done the following (Apache was off during these changes): Clicked on Admin from the XAMPP Control Panel and went to https:// localhost/xampp/ .

Error when trying to access XAMPP from a network [closed]

风流意气都作罢 提交于 2019-11-26 10:09:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I get following error when trying to access Xampp from a network I\'ve tried but does not get any idea how to resolve it. Any help??I really confused Access Forbidden : Access to the requested Object is only available from the local network. This setting can be configured in the file \"httpd-xampp.conf\". 回答1:

Enabling SSL with XAMPP

ぃ、小莉子 提交于 2019-11-26 10:07:51
问题 I\'ve been following this guide as much as I could http://robsnotebook.com/xampp-ssl-encrypt-passwords . However whenever I browse to a page starting with https the apache server replies 404 Object Not Found. What setting I am missing? Thanks for any help. 回答1: Found the answer. In the file xampp\apache\conf\extra\httpd-ssl.conf , under the comment SSL Virtual Host Context pages on port 443 meaning https is looked up under different document root. Simply change the document root to the same

PHP script not working in HTML file

送分小仙女□ 提交于 2019-11-26 09:44:44
问题 I\'m new to PHP. I installed XAMPP and have Apache running. I created helloworld.php in XAMPP\'s htdocs and got PHP to display in my browser. My question is, why does my PHP script in my HTML file not display in my browser? Ive never installed PHP on its own. Should I also install it? Would it conflict with XAMPP. My code is below. Any assistance will be appreciated. Thanks in advance: <html> <body> <?php echo \"Hello PHP World\"; ?> </body> </html> 回答1: XAMPP already includes PHP, but unless

how to access the command line for xampp on windows

依然范特西╮ 提交于 2019-11-26 09:34:57
问题 I am running Xampp on my Windows 7 machine and was wondering if and how I could run commands for xampp via a command line. commands like php phpfile.php Any advice would be appreciated. 回答1: You can set environment variables as mentioned in the other answers (like here) or you can open Start > CMD as administrator and write C:\xampp\php phpfile.php 回答2: XAMPP does not have a pre build console to run php or mysql commands, so, you have to add to windows PATH environment variables , these 2: ;C

MySQL said: Documentation #1045 - Access denied for user &#39;root&#39;@&#39;localhost&#39; (using password: NO)

你。 提交于 2019-11-26 09:32:50
问题 I installed xampp,but when I tried to run it I got an error as thus: Error MySQL said: Documentation 1045 - Access denied for user \'root\'@\'localhost\' (using password: NO) Connection for controluser as defined in your configuration failed. phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL

Where to change the value of lower_case_table_names=2 on windows xampp

霸气de小男生 提交于 2019-11-26 09:28:17
问题 I am using windows 7 and xampp i am trying to export my database and while in the process the table names are converted to lower case . I have searched a lot, i know i have to change the value of lower_case_table_names from 0 to 2 but where i have to change this value, in which file? 回答1: Do these steps: open your MySQL configuration file: [drive]\xampp\mysql\bin\my.ini look up for: # The MySQL server [mysqld] add this right below it: lower_case_table_names = 2 save the file and restart MySQL