xampp

after XAMPP install on Mac Sierra - it works, but there is no XAMPP folder. Where is everything?

馋奶兔 提交于 2021-02-10 07:46:05
问题 I have installed XAMPP. It works. I'm trying to figure out the following: 1/ it appears there are now TWO apache servers on my mac. XAMPP just installed an additional server. One is already installed on the default Sierra OS. Is that correct? 2/ I can't find where XAMPP is reading files (document root). in the newly created directory: XAMPP.APP, the file structure is not as indicated in the FAQ's. For example, there is no xamppfiles or logs directory in the XAMPP.app directory. Many thanks in

禅道Bug管理工具环境搭建

独自空忆成欢 提交于 2021-02-10 04:30:57
下载地址: http://sourceforge.net/projects/zentao/files/8.2/ZenTaoPMS.8.2.stable.exe/download 1、解压ZenTaoPMS.8.1.3到根目录,比如“C:\ xampp”、“D:\ xampp 2、进入xampp,以管理员身份点击“启动禅道” 3、禅道集成运行环境1.2.6,点击启动 4、系统会自动启动禅道所需要的apache和mysql服务 5、点击“访问禅道”,即可打开禅道环境的首页,5秒钟之后,页面会自动调到禅道的页面,并点击“开源版” 6、禅道项目管理软件的登录账号:admin、密码:123456 7、配置禅道:修改mysql数据库的密码,输入数据库的访问网http://127.0.0.1/phpmyadmin,点击进入“用户”,勾选“root”用户,接着,点击编辑权限 8、在“修改密码”中,输入密码:12345,点击“执行” 9、修改“root”账号的数据库密码,需要在xampp/zentao/config/my.php 里面的数据库密码 10、继续在D:\xampp\phpmyadmin\config.inc.php修改数据库密码 11、在服务器apache:D:\xampp\apache\conf\httpd.conf 更改端口号:80 改为端口号:8088 12、查看数据库mysql:

How do I enable error reporting in Laravel?

自作多情 提交于 2021-02-08 15:02:07
问题 I'm using Laravel 5.2 and I'm trying to import an excel sheet which contains more than 18000 records. the error below appeared. The localhost page isn’t working localhost is currently unable to handle this request. HTTP ERROR 500 I tried to change php.ini max_execution_time from 30 seconds to 300 seconds but nothing has been changed EDIT the apache error log file says: [:error] [pid 3680:tid 1724] [client ::1:54491] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to

How do I enable error reporting in Laravel?

妖精的绣舞 提交于 2021-02-08 15:01:26
问题 I'm using Laravel 5.2 and I'm trying to import an excel sheet which contains more than 18000 records. the error below appeared. The localhost page isn’t working localhost is currently unable to handle this request. HTTP ERROR 500 I tried to change php.ini max_execution_time from 30 seconds to 300 seconds but nothing has been changed EDIT the apache error log file says: [:error] [pid 3680:tid 1724] [client ::1:54491] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to

Xampp mysql Error: MySQL shutdown unexpectedly

你离开我真会死。 提交于 2021-02-08 14:57:38
问题 when I starting mysql, giving the following error: 17:43:13 [mysql] Error: MySQL shutdown unexpectedly. 17:43:13 [mysql] This may be due to a blocked port, missing dependencies, 17:43:13 [mysql] improper privileges, a crash, or a shutdown by another method. 17:43:13 [mysql] Press the Logs button to view error logs and check 17:43:13 [mysql] the Windows Event Viewer for more clues 17:43:13 [mysql] If you need more help, copy and post this 17:43:13 [mysql] entire log window on the forums then,

测试管理工具--禅道

穿精又带淫゛_ 提交于 2021-02-08 14:42:08
测试管理工具--禅道 版本 8.2.5 一、软件测试相关工具   1 、测试管理工具     禅道 ( 开源 免费 )     QC(Quality Center)     Mantis( 螳螂 )     Bugzilla BugFree     Jira( 鸡爪子 )   2 、功能自动化工具     QTP-------UFT     (QuickTestProfessional) HP VBS     Selenium------Java   3 、性能自动化工具     LR(LoadRunner) HP     类 C     Jmeter   4 、白盒测试工具     JUnit JTest     C/C++Test 二、禅道简介   禅道是由青岛易软天创网络科技有限公司研发,是一款 B/S 结构,国产开源免费、可以跨平台 ( 操作系统 ) 、安装简单的项目管理软件,主要包括 : 组织管理、后台管理、产品管理、项目管理、测试管理于一体的项目管理工具。 三、禅道的搭建和调试   ZenTao P M S   禅道 项目 管理 系统   步骤 :     禅道官网,下载新版禅道安装包     将禅道软件安装包,拷贝到某个磁盘根目录下 (C:\ D:\)     双击进行安装 (XP 系统 ) ,如果是 Win7 及 win7 以上系统,右键单击,选择“以管理员身份运行

PHP XAMP session_status() is always 1?

邮差的信 提交于 2021-02-08 11:28:26
问题 session_status() keeps returning 1 (PHP_SESSION_NONE) every time I visit localhost page. I know storing variables, session_start() and session_destroy() work because of the files in c:\xamp\tmp (defined in php.ini) But why doesnt it register as session in code? if (session_status() === PHP_SESSION_NONE) { session_start(); echo session_status(); } else{ echo "active"; } Any help would be appreciated, thank you 回答1: we mostly use isset for condition on session variable if(isset($_SESSION['var']

How to set up local server for development?

心不动则不痛 提交于 2021-02-07 14:54:49
问题 I have a computer that's running Windows 7, that I do most of my development on. I have a spare laptop running Ubuntu. They are both connected to the same wifi, and I'm developing in Rails. Is there a way that I can use my spare laptop (Ubuntu) as a local server for development and testing that I would be able to connect to through my other computer (Windows 7)? If it's not possible, how would I use my computer (Windows 7) as a local server for testing in Rails? I have XAMPP installed, I just

How to set up local server for development?

给你一囗甜甜゛ 提交于 2021-02-07 14:53:11
问题 I have a computer that's running Windows 7, that I do most of my development on. I have a spare laptop running Ubuntu. They are both connected to the same wifi, and I'm developing in Rails. Is there a way that I can use my spare laptop (Ubuntu) as a local server for development and testing that I would be able to connect to through my other computer (Windows 7)? If it's not possible, how would I use my computer (Windows 7) as a local server for testing in Rails? I have XAMPP installed, I just

Xampp MySQL not starting - “MYSQL not starting on XAMPP 3.2.1 version…”

我是研究僧i 提交于 2021-02-07 07:33:10
问题 i installed xampp version 3.2.1 on my laptop and mysql was working fine on it before but suddenly mysql stopped working while apache and others were working. when i click on start mysql it displays this error i use windows 10 8:52:32 AM [mysql] Status change detected: running 8:52:40 AM [mysql] Status change detected: stopped 8:52:40 AM [mysql] Error: MySQL shutdown unexpectedly. 8:52:40 AM [mysql] This may be due to a blocked port, missing dependencies, 8:52:40 AM [mysql] improper privileges