xampp

Upgrading Xampp to run php 7

为君一笑 提交于 2019-12-02 17:45:18
After Reading a couple of question on how to upgrade xampp to newer versions of php. I started upgrading mine to version 7 as I wanted to learn strict type hinting I downloaded php 7 from officialsite .I copied the content of this downloaded folder to php folder of xampp.but it is not working.I renamed php.ini-development to php.ini.Is there any better way to do this because it is not working. Please help. Abayomi Israel I consider @camelCase good, but you can also consider trying this method. It may suite your need. Upgrade to PHP7 in XAMPP Before proceeding further I will recommend to take

XAMPP 7.2.10-0 macOS Mojave - No button label are visible

天大地大妈咪最大 提交于 2019-12-02 17:41:32
I installed the new version of XAMPP for Apple Mac OS, that is 7.2.10-0. When I open the manager-osx the label of button aren't visible. Below is a photo of my manager-osx. Can you help me? at the moment please turn on the services from terminal using this command : sudo /Applications/XAMPP/xamppfiles/xampp start Hussain Thajutheen The problem is with the button text not the functionality. You can still click on the buttons to function the features. You just need to know which button is meant for what. You can check the picture attached for the buttons with texts. Vincent Ting-Syuan Wang The

Using Domain name instead of localhost in with https in xampp

早过忘川 提交于 2019-12-02 16:46:06
My question may be stupid, But honestly I searched a lot and got success but not complete. I use xampp with windows 8. My host file looks as follows. 127.0.0.1 localhost 127.0.0.1 www.mysite.com My httpd-vhosts.config looks as follows. NameVirtualHost 127.0.0.1 <VirtualHost 127.0.0.1> DocumentRoot "C:/xampp/htdocs" ServerName localhost </VirtualHost> <VirtualHost 127.0.0.1> ServerName www.mysite.com ServerAlias mysite.com DocumentRoot "C:/xampp/htdocs/mysite" </VirtualHost> This works perfect for http. But I have enabled ssl. When I type http://localhost or https://localhost , Both work fine.

phpmyadmin “no data received to import” error, how to fix?

若如初见. 提交于 2019-12-02 16:12:28
I am using XAMPP on a pc atwork to host a database. I exported a backup ("bintra.sql") using phpmybackuppro . I use xampp on a mac at home, and when I try to import the sql file located on my desktop, I get this error. No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted by your PHP configuration. See FAQ 1.16. Now, the file size of bintra.sql is 922kb. The max size allowed indicated on the phpmyadmin screen is 3,072KiB, so I don't think it is the size that is preventing the import. I'm using phpmyadmin v2.11.7 Does anyone have

XAMPP installation on Win 8.1 with UAC Warning

白昼怎懂夜的黑 提交于 2019-12-02 16:11:22
I am trying to install Xampp win32-1.8.2 on Windows 8.1. I get a message saying" Because an activated user account User Account on your system some functions of XAMPP are possibly restricted." I've tried to change the user account control settings but still the warning is there. And the APACHE does not start. I've also disabled my IIS but still, its not working. What should I do? Thanks. There are two things you need to check: Ensure that your user account has administrator privilege. Disable UAC (User Account Control) as it restricts certain administrative function needed to run a web server.

Fatal error because an Error instance is being passed instead of an expected Exception instance

◇◆丶佛笑我妖孽 提交于 2019-12-02 16:01:08
问题 I just installed xampp with php 7.0.4 and a fresh cakephp 3.2.6. I did a lot of research and everything I found shows that they are compatible. However as soon as I go to open the application with a browser, cake replies with an Internal Error. The only pointer as to what to do is that xampp logs the following in apache error.log: PHP Fatal error: Uncaught TypeError: Argument 1 passed to Cake\Error\BaseErrorHandler::handleException() must be an instance of Exception, instance of Error given

Accessing virtual host from computer on same local network

断了今生、忘了曾经 提交于 2019-12-02 16:00:25
I am trying to make a setup so that I can access my website on a virtual host in computer A from computer B. Both A and B are on the same network. I am using xampp on Win 7. So here is as the problem goes computer A(server) has a virtual host configuration as follows in the httpd-vhosts.conf file. NameVirtualHost project:81 <VirtualHost project:81> DocumentRoot "D:/work/website" ServerName project:81 <Directory "D:/work/website"> Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order Allow,Deny Allow from all </Directory> </VirtualHost> (using port 81 as port 80 has IIS

run django with xampp on windows

馋奶兔 提交于 2019-12-02 15:19:00
can i run django (Python framework) site with xampp on windows? Please guide me. nosklo XAMPP for windows contains: Apache, MySQL, PHP + PEAR, Perl, mod_php , mod_perl , mod_ssl , OpenSSL, phpMyAdmin, Webalizer, Mercury Mail Transport System for Win32 and NetWare Systems v3.32, Ming, JpGraph, FileZilla FTP Server, mcrypt, eAccelerator, SQLite, and WEB-DAV + mod_auth_mysql . There are two requirements to run django missing: Python mod_wsgi So, NO , you can't run django with XAMPP alone. You need to install additional software. However running django is very easy. If you just want to develop an

How to enable GZip compression in XAMPP server

你。 提交于 2019-12-02 15:13:41
I am using xampp sever latest version to improve my web page performance. I have to enable Gzip in XAMPP. How can it be done? You do compression by setting appropriate directive in apache. It goes uncommenting the following lines in your apache conf file: C:\xampp\apache\conf\httpd.conf if your xampp installation folder is C:\xampp. and these are the lines to be uncommented first: LoadModule headers_module modules/mod_deflate.so LoadModule filter_module modules/mod_filter.so that is to say, if they have # before them, you should remove them! Then put this at the end of your httpd.conf file:

初探Python CGI:搭建CGI编程调试环境

社会主义新天地 提交于 2019-12-02 14:59:03
“CGI(Common Gateway Interface,通用网关接口) 是Web 服务器运行时外部程序的规范,按CGI 编写的程序可以扩展服务器功能。”(百度百科)Python语言自带CGI处理模块,可以通过编写python CGI脚本实现网页前端与Python程序的交互。从网页前端获取的数据往往又可以通过connector-python实现与MySQL等数据库的交互,从而从整个项目的角度来说,该环境的搭建和运行是实现Python CGI全栈的整个过程的第一个较为重要的步骤。本文旨在论述Python CGI开发运行环境的两个配置方法。 CGI编程环境配置方法一:搭建本地微服务器,以xampp为例 第一步:下载安装服务器xampp 编写好的python CGI脚本需要在主机(服务器)的特定配置下才能正常运行。本例选择xampp server为例。xampp server是Apache server的一种,可用于搭建本地小微型服务器,下载地址为: https://www.apachefriends.org/index.html 。xampp相关的周边产品详见链接: https://bitnami.com/stack/xampp?utm_source=bitnami&utm_medium=installer&utm_campaign=XAMPP%2BInstaller 安装完毕后