xampp

eclipse xdebug session never completes

我的未来我决定 提交于 2019-11-27 05:16:24
问题 I am trying to get xdebug working with eclipse (3.5) / php (on xampp windows 7). I have verified xdebug is enabled in php - I have the fancy output and my phpinfo shows all the xdebug stuff. I have remote debug on, and typed in the lan ip address on my eclipse machine. When I tell eclipse to debug, it launches the browser and passes the debug URL parameters. That looks OK. However, in eclipse debug perspective it shows 'launching myproject' 57% 'waiting for xdebug session'. It sits there

XAMPP Apache Webserver localhost not working on MAC OS

杀马特。学长 韩版系。学妹 提交于 2019-11-27 05:04:06
问题 I install XAMPP server on MAC OS 10.6 it was working fine. After a lot of days I checked it, but not working this time, localhost not opening this time. after some R&D I reinstall XAMPP server after uninstall When I start the apache after reinstall it giving port 80 running a another webserver Then I restart system, then apache start ok, but same local host not working Then I check Web Sharing in my System Preference then it was already Tuned Off ... Please anybody tell me where I am wrong?

changing php write permissions in XAMPP on Windows 7

ぃ、小莉子 提交于 2019-11-27 04:46:05
问题 I'm trying to install a file-based blog engine in XAMPP, but all of these projects require write permissions to be changed. I'm assuming they are not talking the Windows setting that can be accessed through 'properties'. Any idea where/how to change this? seems like an easy question but i'm coming up short. Thank you. 回答1: Windows is generally less restrictive about read/write-permissions. If you did not install XAMPP into C:\ProgramFiles chances are good, that setting file-permissions does

XAMPP Start automatically on Windows 7 startup

对着背影说爱祢 提交于 2019-11-27 04:30:00
问题 XAMPP Version 3.2.1 installed on Windows 7. It didn't get started automatically on Windows boot. Tried: looking in service , it shows neither Apache nor MySQL. 回答1: Try to run Your XAMPP Control Panel as Run as administrator , then install Apache and MySQL. When XAMPP opens, ensure that Apache and MySQL services are stopped. Now just check/tick on Apache and Mysql service module. Now Apache and MySQL will be added to window services. You can set these services to start when Windows boots. 回答2

XAMPP apache server is not starting after Skype installation

ε祈祈猫儿з 提交于 2019-11-27 04:21:12
I am getting following console logs: 1:14:33 PM [apache] Possible problem detected! 1:14:33 PM [apache] Port 80 in use by "c:\program files (x86)\skype\phone\skype.exe"! 1:14:33 PM [apache] Possible problem detected! 1:14:33 PM [apache] Port 443 in use by "c:\program files (x86)\skype\phone\skype.exe"! 1:14:33 PM [main] Starting Check-Timer 1:14:33 PM [main] Control Panel Ready 1:15:10 PM [apache] Starting apache app... 1:15:11 PM [apache] Status change detected: running 1:15:11 PM [apache] Status change detected: stopped It says 'Status change detected: running' to 'stopped' right away. I

Setting up SSL on a local xampp/apache server

本秂侑毒 提交于 2019-11-27 04:14:19
I'm trying to access a Active Directory from my local webserver. To do this I'm using the latest version of xampp and a PHP script called adLDAP . If I understand things right, I need to enable SSL to access https URLs. I've tried to google it but with no luck :( Could anyone link a tutorial or explain to me how to install SSL on xampp/apache for windows 7 64bit? Any help would be appreciated :) Apache part - enabling you to open https://localhost/xyz There is the config file xampp/apache/conf/extra/httpd-ssl.conf which contains all the ssl specific configuration. It's fairly well documented,

XAMPP on Windows - Apache not starting

淺唱寂寞╮ 提交于 2019-11-27 03:59:09
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 have tried start it, it always get stuck "Starting apache service..." Any advice on how I could resolve

Accesing XAMPP MySql Database from Another Computer

为君一笑 提交于 2019-11-27 03:36:21
问题 So a friend of mine and I are using both xampp on ubuntu, if that helps, to connect between each other's website, We both created the same php file to connect, so we use de IP of the other, but then it says an error Warning: mysql_connect() [function.mysql-connect]: Host 'coke-laptop.local' is not allowed to connect to this MySQL server in /opt/lampp/htdocs/connection.php on line 2 Could not connect: Host 'coke-laptop.local' is not allowed to connect to this MySQL server We have this code on

Xampp MS SQL server PHP 5.6

戏子无情 提交于 2019-11-27 03:35:06
问题 I have a xampp running with PHP 5.6. Normally I use mysql server, but for a script that already exists i need a MS SQL server. I searched on the net and installed SQL server 2012. But now I need the drivers for PHP. Unfornunately I can only find a version that supports 5.4, 5.5.. (http://msdn.microsoft.com/en-us/sqlserver/ff657782.aspx) Is there a way to let this work with 5.6? 回答1: Microsoft recently released a new version (3.2) of the SQL Drivers for PHP which includes compatibility with

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

痴心易碎 提交于 2019-11-27 03:32:37
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? 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 service From: http://webdev.issimplified.com/2010/03/02/mysql-on-windows-force-table-names-to-lowercase/ On