xampp

PHP startup mongo: Unable to initialize module

拈花ヽ惹草 提交于 2020-01-02 02:38:38
问题 I am currently Using xampp for PHP . I installed *mongo_db(1.8.5)* in my system and also installed xampp-1.8.1-VC9 in my system. In order to configure PHP for mongoDB , I have downloaded *php_mongo.dll*(tried both VC9 thread safe and non-thread safe ) and pasted the .dll file in the '../php/ext' directory and also added extension=php_mongo.dll in the php.ini file. Now when I try to start the apache in xampp it shows the following display eventhough apache is getting started. PHP startup mongo

Installing XDebug for PHP with XAMPP on Mac

旧街凉风 提交于 2020-01-02 02:34:06
问题 I have a Mac with a fresh OSX Mojave install. I downloaded XAMPP (7.3) and installed. The local Apache web server works and the PHPInfo() I get from the dashboard shows all the correct information for the php.ini file being the /Applications/XAMPP/xamppfiles/etc/php.ini. I have taken a copy of the PHPInfo and put it in the wizard at: https://xdebug.org/wizard.php The instructions look simple. I did have to use homebrew to install autoconf first. But then I was able to download and unpack the

how to expand a category list imported from MySQL

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-01 19:22:34
问题 I have imported a set of different values from two different tables in phpMyAdmin, one from Category table (where cat_id is a PK) and another from Item table; where (cat_id is a FK). <?php require ('config.php'); $que = "SELECT * FROM category"; $run = mysql_query($que); $j = 0; while($row = mysql_fetch_array($run)) { $cat_idd[$j] = $row['cat_id']; $cat_namee[$j] = $row['cat_name']; $j++; } for($i = 0; $i < count($cat_idd); $i++) { $que2 = "SELECT * FROM item WHERE cat_id = '$cat_idd[$i]' ";

testlink安装

醉酒当歌 提交于 2020-01-01 17:24:03
1.下载testlink和xampp 具体文件可以网上下载 2.安装xampp---- 失误:tomcat一直起不来 你可以把自己的tomcat打开,再打开xampp这时tomcat就是打开的状态的 3.安装testlink a:将testlink放到xampp的htdocs b:打开:http://localhost/testlink c:进行下一步安装 问题: Checking if /var/testlink/logs/ directory exists [S] </B<< td> Failed! Checking if /var/testlink/upload_area/ directory exists [S] </B<< td> Failed! 修改: 修改testlink下的config.inc.php文件: 注释:$tlCfg->log_path = '/var/testlink/logs/'; /* unix example 添加:$tlCfg->log_path = 'C:\xampp\htdocs\testlink/logs/'; 注释:$g_repositoryPath = '/var/testlink/upload_area/'; /* unix example 添加:$g_repositoryPath = 'C:\xampp\htdocs

testlink安装

[亡魂溺海] 提交于 2020-01-01 17:23:38
今天安装了一下testlink,完全按照高峻博客里的做法,最后安装成功了 遇到的问题: 问题表现:   新安装TestLink,登录Testlink后,新建一个项目后,会出现如下提示:   There are security warnings for your consideration. See details on file: C:/xampp/htdocs/testlink/logs/config_check.txt. To disable any reference to these checkings, set $tlCfg->config_check_warning_mode = ‘SILENT’;   解决方法:   打开Testlink安装文件夹下的config.inc.php文件,将$tlCfg->config_check_warning_mode = ‘FILE’;   改为tlCfg->config_check_warning_mode = ‘SILENT’; 保存!再刷新页面,已无提示! 转自:领测软件测试网[http://www.ltesting.net] 原文链接:http://www.ltesting.net/ceshi/open/kycsglgj/testlink/2012/0202/203993.html testlink安装全攻略 安装前准备

Xampp Won't Startup MySQL server on Mac OSX?

北战南征 提交于 2019-12-31 22:20:15
问题 I'm on a Mac OSX Mountain Lion. Xampp won't let me start MySQL server. I have set the permissions to Read/Write for everyone and every file in the XAMPP folder. The error message shows "The operation couldn't be completed. (XAMPPErrorDomain error 1.)" Any ideas on how to stop other MySQL processes. I have tried following this Lynda.com Tutorial on fixing port conflicts. I tried typing in this command "sudo lsof -i -P | grep 3306" in Terminal. However it didn't work, I wanted to test to see if

Configure firewall to enable XAMPP working over LAN

旧巷老猫 提交于 2019-12-31 21:30:25
问题 When I turn off the firewall, I can access my XAMPP website through other LAN computers. When I turn on firewall then I cannot connect to the machine anymore. Could someone tell me what's happening? my os is windows xp. thanks. 回答1: Go to Control panel - > go to Windows Firewall -> then Advance Settings -> Click Inbound Rules right Click the inbound rules and select "New Rule..." select option port and click next select all local ports or your port number for apache server. and click next

Where to find htdocs in XAMPP Mac

≡放荡痞女 提交于 2019-12-31 08:12:49
问题 I cannot find the htdocs directory anywhere on XAMPP for Mac. Many videos on YouTube show people just clicking a button that says "Go to application folder" but on my user interface, it reads: "Go to application" which just opens the localhost page at http://localhost. Where can I locate the htdocs directory? 回答1: Ok I just found the solution. In the "volumes" tab, you have to mount it first. Then it appears on the desktop as if were an external USB. All the data is inside it. :D 回答2: At

Where to find htdocs in XAMPP Mac

心不动则不痛 提交于 2019-12-31 08:12:09
问题 I cannot find the htdocs directory anywhere on XAMPP for Mac. Many videos on YouTube show people just clicking a button that says "Go to application folder" but on my user interface, it reads: "Go to application" which just opens the localhost page at http://localhost. Where can I locate the htdocs directory? 回答1: Ok I just found the solution. In the "volumes" tab, you have to mount it first. Then it appears on the desktop as if were an external USB. All the data is inside it. :D 回答2: At

Virtual Host cannot create with XAMPP server

最后都变了- 提交于 2019-12-31 06:56:07
问题 I add the following codes in httpd-vhost.conf file. <VirtualHost *:80> DocumentRoot "C:/xampp/htdocs/mmcast" ServerName mmcast.dev <Directory "C:/xampp/htdocs/mmcast"> AllowOverride All Require all granted </Directory> Although I can run the Apache and MySQL in XAMPP but I cannot call my vhost. I got "Unable to connect" error in when I call mmcast.dev in browser. Do I need to change <VirtualHost *:80> into 81 ? Because I change Listen 81 in httpd file. But, I tried to change 80 to 81 but it