xampp

Cannot access to localhost/xampp/index.php

我们两清 提交于 2019-12-05 08:11:52
I just installed XAMPP for windows 7, control panel seems to work fine, I started MySql and Apache, the problem I have is, when I type localhost in my browser "Google Chrome" it sends me to " http://localhost/dashboard/ " when I change the url to "//localhost/xampp/index.php", it tells me: "Object not found! The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again. If you think this is a server error, please contact the webmaster. Error 404 localhost Apache/2.4.16 (Win32) OpenSSL/1.0.1p PHP/5.6.11" anyone can helps me out with

How do I change default directory and index file for Apache (installed via XAMPP) [closed]

江枫思渺然 提交于 2019-12-05 07:45:33
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . How do I change default Directory and index File for Apache (installed via XAMPP) so instead of looking for htdocs and index , it looks for myPath and myFile , respectively? The research link you pasted has the first part of the answer to your question, changing the path you want serve but the second part of your question, making it serve "myFile" as the Index is an additional step. See: http://httpd.apache.org

Can't install Xdebug on XAMPP and Windows XP

﹥>﹥吖頭↗ 提交于 2019-12-05 07:18:09
I know, this has been asked several times, but the answers did not solve my problem. I am running XAMPP 1.8.2 on Windows XP SP3 and am struggling in installing XDebug. I downloaded XDebug from the website. Unfortunately, the installation wizard did not work for me, my PHP Version is 5.4.16, so I chose the file for PHP 5.4 VC9 TS (32 bit) . I configured my php.ini according to different tutorials: [XDebug] zend_extension_ts = "D:\Stefan\xampp\php\ext\php_xdebug-2.2.3-5.4-vc9.dll" xdebug.remote_enable = On xdebug.remote_handler = "dbgp" xdebug.remote_host = "127.0.0.1" xdebug.remote_mode=req

Moved XAMPP folder to new computer, now getting “(XAMPPErrorDomain error 1.)” when trying to start up MySQL

核能气质少年 提交于 2019-12-05 07:07:17
I recently had to reinstall Lion from scratch on my MacBook. I saved my XAMPP folder and moved it into the applications folder in my new install. I can start up Apache, but not MySQL. I get this error: " The operation couldn’t be completed. (XAMPPErrorDomain error 1.) ". I tried setting permissions on the var/mysql to 775 and 777, neither worked. I tried running " sudo /Applications/XAMPP/xamppfiles/bin/mysql.server start " in terminal and I get this: " Starting MySQL . ERROR! Manager of pid-file quit without updating file. " When I checked the error file it generated, I see this: " 110820 14

xampp component status check failure [133278]?

邮差的信 提交于 2019-12-05 06:47:24
this errors pops up when executing xampp control panel, anyone what it means and how to resolve it? I moved the xampp directory to a different place and run setup_xampp.bat. That solved the problem for me. I installed from the ZIP file instead of the Windows Installer, and this resolved my issue. Appears to be a known bug with the Installer on Win 7 64 bit . DannyB I had the same problem on two different computers (XP and Win 7 32 bit), with varying error numbers. On my Windows XP the problem was due to something else listening on port 80 . On my Win 7, I renamed the folder to something else

Where is XAMPP's Shell?

心已入冬 提交于 2019-12-05 06:40:07
I am using the latest version of XAMPP with XAMPP control panel v2.5 (9 May 2007). I want to access the command line to run php -q htdocs\path\to\file.php . Problem: On my XAMPP control panel, I do not see the Shell button that will bring up the command line interface. How can I access the shell, or is there another way to run the PHP file? My XAMPP Control Panel What I am finding: If you have php.exe 's directory in your PATH environment variable, you can simply open a command line window (Start > Run > cmd), go in your PHP script directory and launch it with php yourscript.php . If You need

Access to XAMPP from Bluestacks

女生的网名这么多〃 提交于 2019-12-05 06:36:44
How can I open my localhost (in Windows 8 with XAMPP) webpage, from a browser installed in Bluestacks App Player? Thank you Type Win+R (To open Run) Open cmd type ipconfig You will get IP address in Ipv4 Address field. Note: The IP will reset on connection reset/restart OR You can access localhost from Bluestacks by 10.0.2.2 Follow the tutorial on this link: HOW TO ACCESS TO XAMPP FROM BLUESTACKS . It will guide you explicitly on how to install looback adapter on Windows and configure your IP. Step 1: Install Microsoft Loopback Adapter in Network Connection Manager To install the Loopback

Why is “<?” no longer working and instead only “<?php” works?

六眼飞鱼酱① 提交于 2019-12-05 06:11:40
I was using xampp to develop locally and then I installed the PHP from the direct installer. Now in some of my PHP code, only PHP code that starts with "<?php " is correctly parsed. Anything that starts with " <? " or " <?= " is completely ignored and just left as is. How can I adjust the configuration to parse either tokens? This is a php.ini setting named short_open_tag = 1 # (enabled) I recommend you to disable short_open_tag and only work with <?php . When short_open_tag is enabled, it can collide with the XML processing instruction <?xml as both the PHP open tag and XML PI start with a <?

require_once ignored

送分小仙女□ 提交于 2019-12-05 05:42:45
问题 strange problem with php on windows... my application loads a 'core' file that loads a settings file, registers autoloads, does initialization etc. at the top of the core file I have include_once("config.php"); this works fine for anything in the current directory, if I include the core file from a separate directory though it just silently ignores the include of the config file... has anyone seen this before? /webroot/core.php <?php require_once "config.php"; //register autoloads //do some

“RewriteEngine not allowed here” .htaccess error using XAMPP

混江龙づ霸主 提交于 2019-12-05 04:58:38
I am trying to configure Apache to allow .htaccess Rewrite rules. I am using XAMPP to run Apache locally. However, I keep getting 500 errors. I have been Googling for several hours about this and tried all the common solutions, so please read my entire post so as not to duplicate solutions I have already tried. When I check the apache error log the error reads: "C:/xampp/htdocs/xampp/websites/demo2/.htaccess: RewriteEngine not allowed here". Almost every other person I could find that was having this issue solved it by: Un-commenting the LoadModule rewrite_module modules/mod_rewrite.so command