xampp

System or local when installing PEAR for PHPUnit

社会主义新天地 提交于 2019-12-04 18:40:16
I am using XAMPP 1.8.1. I need to write code with PHPUnit. When I try to install PEAR using command prompt, I get the message below: Are you installing a system-wide PEAR or a local copy? Could some one suggest which option I should use? Thanks in advance. PEAR is usually installed system-wide. The benefit of this is that the various packages can be reused between different projects. One reason why you might install a local copy of PEAR is that the administrator[s] of the server you are installing on might be reluctant to install additional packages or upgrade existing ones. By performing a

Xampp 1.8.3.3 with phpmyadmin 4.1.8 phpMyAdmin configuration storage is not completely configured

眉间皱痕 提交于 2019-12-04 18:33:26
and installed the xampp phpmyadmin and when I entered the following jump The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click here. and click show and here is errors $cfg['Servers'][$i]['users'] ... not OK [ Documentation ] $cfg['Servers'][$i]['usergroups'] ... not OK [ Documentation ] Configurable menus: Disabled $cfg['Servers'][$i]['navigationhiding'] ... not OK [ Documentation ] Hide/show navigation items: Disabled How can fix it? Run the following query in the phpmyadmin database: CREATE TABLE IF NOT EXISTS

Why the Apache is not starting on XAMPP [closed]

孤人 提交于 2019-12-04 17:37:40
Until yesterday everything was fine to my localhost, but starting yesterday, localhost is not opening. It's saying "Unable to connect". I tried number of times to start the Apache on XAMPP , but it is saying message that busy. The port 80 is busy, I hope. I have tried every possible way to free the port 80. For example, Disabled option that "Use port 80" in Skype and Teamviewer . I don't know which program is using the Port 80. How can I determine that which program is using the Port 80 and then stop it permanently and use port 80 as my localhost? Xfile Have you messed up with httpd.conf or

Setting Python Path in Windows XAMPP using WSGI

三世轮回 提交于 2019-12-04 16:53:24
I'm setting up a development version of a live server on Webfaction, running Django apps in a virtual Apache server environment (running without any errors) on my local machine - XP, running XAMPP Lite with Python 2.6 - which I can commit changes from via Git. XAMPP is up and running OK with Python, and the server starts perfectly with WSGI module loaded. The problem is when I set my Python paths, they are set half in 'nix format (with /), and half in Windows (with backslashes). Here's the local machine Apache error, showing the corrupted python paths: [Fri Oct 08 14:52:53 2010] [error]

Create a Virtual Host in Xamp Windows 10

梦想与她 提交于 2019-12-04 16:02:47
Last night I have updated my windows 7 to windows 10. The result is struggle trying to run my local apache server in windows 10 that is running on windows 7.I have tried uninstalling and installing another versions of xampp then I came up that I have to change the apache's default port just to make it run. I changed httpd.conf from Listen 80 to Listen 1234 AND ServerName localhost:80 to ServerName localhost:1234 and in xampp control panel Config->Service and Port Settings . I also change the Main Port Now I can access phpmyadmin using localhost:1234/phpmyadmin . And now my problem is creating

Installing Solr in a XAMPP server in a LINUX server

冷暖自知 提交于 2019-12-04 15:52:49
I try to install Solr PHP extension to my webserver. I already have an XAMPP server and I'm using PECL to install solr $ cd /opt/lampp/bin $ sudo ./pecl install solr-1.0.1 But I got the following error: checking libxml2 install dir... /usr/lib checking for xml2-config path... configure: error: xml2-config not found. Please check your libxml2 installation. ERROR: `/tmp/pear/temp/solr/configure --enable-solr=yes --enable-solr-debug=no --with-curl= /usr --with-libxml-dir=/usr/lib' failed During the installation it prompts me to input a path: libxml2 install prefix [/usr] : I have tried with enter

在 Windows 中安装 Laravel 5.1.X

爷,独闯天下 提交于 2019-12-04 15:40:49
1、准备工作 1.1 PHP集成环境 这里我们使用的是XAMPP,最新版下载地址: PHP 5.5.27 版(32位) | PHP 5.6.11 版(32位) 。这两个版本的XAMPP都不再支持Windows XP操作系统,这意味着你需要更高版本的Windows操作系统。 注意:由于Laravel 5.1要求PHP 5.5.9+(含)版本,所以要针对该PHP版本要求选择合适的XAMPP。 1.2 安装Composer Windows下最新版本Composer下载: Composer-Setup.exe 。 安装完成后,如果Composer安装包安装/更新缓慢,可以配置使用国内镜像进行包依赖的安装和升级,具体可参考这篇文章《 Composer中国全量镜像 》。 PS:想当年Composer安装慢如牛,一个更新需要几个小时,不过现在明显感觉速度快了好多,不需要设置国内镜像,也可以顺利进行操作。 1.3 配置系统路径 要在控制台中使用 composer 命令,需要将Composer及PHP的可执行文件(.exe/.bat)所在目录配置到系统环境变量Path中。PHP对应的 php.exe 在XAMPP安装目录中找,Composer对应的 composer.bat 文件所在目录默认为 C:\ProgramData\ComposerSetup\bin 。这里不再赘述。 1.4 其他要求

VScode - PHP - xdebug环境安装

六眼飞鱼酱① 提交于 2019-12-04 15:40:31
需求 VScode - PHP - xdebug环境安装 环境:xampp+php7.3.9 步骤 xampp的php目录加入环境变量,这样的话在cmd可以随时调用 命令行下使用PHP -i 输出 phpinfo()内容 xDebug 下载 链接: https://xdebug.org/download.php 如果你不知道如何下载对应的xdebug版本 复制你的phpinfo()内容到这个网页中,自动帮你分析如何下载以及安装 https://xdebug.org/wizard 例如我的,然后跟着这个向导安装即可 最后在你的php.ini 文件中加入配置文件即可 [xdebug] zend_extension = "D:\xampp\php\ext\php_xdebug-2.8.0-7.3-vc15-x86_64.dll" xdebug.remote_enable = 1 xdebug.remote_autostart = 1 xdebug.remote_handler = "dbgp" xdebug.remote_host = "localhost" xdebug.remote_port = "9001" 来源: https://www.cnblogs.com/QinTO/p/11871782.html

I can't access XAMPP phpMyAdmin; it says: Error MySQL said: Documentation Cannot connect: invalid settings

删除回忆录丶 提交于 2019-12-04 14:40:58
问题 Full error message: Error MySQL said: Documentation Cannot connect: invalid settings. 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 server. I have been using a web hosting site sever so far; this may have messed up my

How to resolve moodle fresh installation issue mysql_full_unicode_support#File_format and mysql_full_unicode_support#Large_prefix

巧了我就是萌 提交于 2019-12-04 14:29:17
问题 I am very new to Moodle. When i am trying to install this i got this issue(Please ref screenshot). Can any one help me regarding this? Thank you in advance. Omkar 回答1: This is very common problem, people often face, even i did face too. When installing moodle latest 3.2+ it checks for enabled support for utf8mb4 charset in MySQL database. This doesn't come by default in MySQL. You need to set few parameters in mysql conf. On Linux based systems you will want to alter my.cnf. This may be