xampp

Update PHP within XAMPP on MAC OSX [closed]

北慕城南 提交于 2019-12-04 09:12:09
I've searched a few forums already and I haven't found a definitve answer. I'm aware that the XAMPP development for MAC OSX has been suspended, however I was hoping someone could outline the steps involved or point me to some other resources. I'm currently using OSX 10.6.8, XAMPP 1.7.3, and PHP 5.3.1. I guess this question should also expand to the updating of other components like phpmyadmin and mysql. Thank you in advance! I use MAMP and Apache/MySQL/PHP which works perfect on my mac Maybe one of these will be easier to figure out since they are built for mac? Otherwise, sorry can't help! 来源

XAMPP keeps showing Dashboard/Welcome Page instead of the Configuration Page

ぃ、小莉子 提交于 2019-12-04 08:24:19
问题 I've just downloaded and installed XAMPP 5.6.11 and started all the tools from the control panel. I've seen that one of it's new features is that it has a Welcome/Dashboard page. Previously, going to 127.0.0.1 would take me to a language selection page and then to a orange-yellow page where I could configure XAMPP. Now, going to 127.0.0.1 or hitting Apache's "Admin" button in the XAMPP Control Panel takes me to the dashboard/welcome page no matter what. One curious thing: attempting to go to

how to set environment variables in apache xampp ?

∥☆過路亽.° 提交于 2019-12-04 08:08:58
I would like to add some environment variables in apache xampp in windows. I already tried the following : adding this in httpd.conf SetEnv ENVIRONMENT "setting" or, run this script putenv("ENVIRONMENT='setting'"); but that doesn't seem to work when I echo phpinfo(), there isn't ENVIRONMENT variable in the environment section Kami Yang I know this is an old post and the OP already may has solved this by himself but for others: SetEnv ENVIRONMENT setting This would be the correct Syntax inside of the httpd.conf file. Also, this code should be put at the end of the file. After saving httpd.conf

windows信息收集

为君一笑 提交于 2019-12-04 08:07:07
导语:介绍 特权升级总是被归结为适当的枚举。但要完成适当的枚举,你需要知道要检查和查找的内容。这通常需要伴随着经验的丰富而对系统非常熟悉。起初特权升级看起来像是一项艰巨的任务,但过了一段时间,你就开始过滤哪些是正常的东西,而哪些不是正常的东西。最终变得更容易,因为你知道要寻找什么了,而不是挖掘希望在干草堆中找到那根针的所有东西。希望本指南能为你的入门提供良好的基础知识。 本指南受到了g0tm1lk发表的基本的Linux提权姿势的文章的影响,在 介绍 特权升级总是被归结为适当的枚举。但要完成适当的枚举,你需要知道要检查和查找的内容。这通常需要伴随着经验的丰富而对系统非常熟悉。起初特权升级看起来像是一项艰巨的任务,但过了一段时间,你就开始过滤哪些是正常的东西,而哪些不是正常的东西。最终变得更容易,因为你知道要寻找什么了,而不是挖掘希望在干草堆中找到那根针的所有东西。希望本指南能为你的入门提供良好的基础知识。 本指南受到了g0tm1lk发表的 基本的Linux提权姿势 的文章的影响,在某些时候,你应该已经看到并使用了该指南。我想试图反映他的指导,除了Windows。所以本指南主要集中在枚举方面。 注:我不是专家,仍然在学习当中。 指南概述 在每个部分中,我首先提供老的可靠的CMD命令,然后是一个Powershell实现的的等价命令。同时拥有这两种工具是非常好的

Connecting to mysql in xampp without password

做~自己de王妃 提交于 2019-12-04 07:11:51
问题 I want to configure the mysql xampp password to no password. I opened the my.ini and I saw the following line: # password = password I I don't use password what should I type? And that's the error I get when I try to connect to mysql through php: mysqli_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: YES) in C:\xampp\htdocs\spikes\functions.php on line 53 Failed to connect to MySQL: Access denied for user 'root'@'localhost' (using password: YES) Warning:

PHPMyAdmin Windows XAMPP Missing MySQL Extension Issue

て烟熏妆下的殇ゞ 提交于 2019-12-04 07:10:47
I've tried install Apache, PHP, MySQL, and PHPMyAdmin manually and got the error. Then tried XAMPP and still got the error this error with PHPMyAdmin: The mysql extension is missing. Please check your PHP configuration. <a href="Documentation.html#faqmysql" target="documentation"><img class="icon" src="./themes/pmahomme/img/b_help.png" width="11" height="11" alt="Documentation" title="Documentation" /></a> I'm clueless of what the issue is. I've tried solutions on the web and none worked so far. This is a new Windows installation and I installed XAMPP on C:. Fairly simple fix. Find your PHP

PHP proc_open won't work - gives me “Missing handle qualifier in array”

微笑、不失礼 提交于 2019-12-04 06:38:05
Warning: proc_open(): Missing handle qualifier in array in C:\...\updatedots.php on line 102 I'm trying to open notepad the close it after 2 seconds. This is my code: $descriptorspec = array( 0 => array("pipe" => "r"), 1 => array("pipe" => "w"), 2 => array("file" => "logs/errors.txt") ); // Create child and start process $child = array("process" => null, "pipes" => array()); $child["process"] = proc_open("notepad.exe > nul 2>&1", $descriptorspec, $child["pipes"]); Any idea what this error means and what causes it? It is not 0 => array("pipe" => "r") but 0 => array("pipe", "r") ^^ Additionally,

Error Installing PG Gem on Windows

笑着哭i 提交于 2019-12-04 06:01:02
问题 I'm using XAMPP as my installation folder for PostgreSQL 9.3. C:\xampp\pgsql\9.3 And now I'm trying to install PostgreSQL gem using that directory as a reference: gem install pg -- --with-pg-include="C:\xampp\pgsql\9.3\include" --with-pg-lib="C:\xampp\pgsql\9.3\lib" --with-pg-config="C:\xampp\pgsql\9.3\bin\pg_config" But this command failed with errors listed below: ERROR: Error installing pg: ERROR: Failed to build gem native extension. C:/Ruby/Ruby200/bin/ruby.exe extconf.rb --with-pg

How to run an php application without installing xampp on client system?

人走茶凉 提交于 2019-12-04 05:55:10
In my application i have to deploy my application on client system. So is there any way to run my php application without installing xampp... Because the client should access it as a readymade app without installing anything... This is the description of my project... We have to develop an application where the client will have our application he will connect to remote server Then he will download the data from remote server... Then he uses that downloaded data using that app Here my requirement is the user may not have the knowledge of installing the xampp... So is there any way to run the

how to send mail using phpmailer on xampp

邮差的信 提交于 2019-12-04 05:51:16
问题 I have been trying to send a mail using php mailer on xampp and i do get this error saying Message could not be sent. Mailer Error: The following From address failed: xxxx2@gmail.com : Called Mail() without being connected please, i need help on how to fix this. Here is my code; <?php require( 'class.phpmailer.php' ); $mail = new PHPMailer; $mail->IsSMTP(); $mail->SMTPAuth = true; $mail->Host = "tls://smtp.gmail.com"; $mail->Port = 25; $mail->Username = "xxxx@gmail.com"; $mail->Password =