xampp

How to stop VMware port error of 443 on XAMPP Control Panel v3.2.1

天大地大妈咪最大 提交于 2019-11-29 19:51:17
When I run XAMPP Control Panel v3.2.1 I get this error: 07:37:24 [Apache] Problem detected! 07:37:24 [Apache] Port 443 in use by ""C:\Program Files (x86)\VMware\VMware Workstation\vmware-hostd.exe" -u "C:\ProgramData\VMware\hostd\config.xml"" with PID 2148! 07:37:24 [Apache] Apache WILL NOT start without the configured ports free! 07:37:24 [Apache] You need to uninstall/disable/reconfigure the blocking application 07:37:24 [Apache] or reconfigure Apache and the Control Panel to listen on a different port I could not fix it myself. Getting help soon will be thankful. EniGma Here is the solution

InnoDB: Attempted to open a previously opened tablespace

旧街凉风 提交于 2019-11-29 19:37:15
I have been working on a problem for a few days now. Our local mediawiki page that sits on our box account, destroyed itself and we've been working to get it online. Using XAMPP Control Panel v3.2.1, the errors were numerous so we decided to update XAMPP (v3.2.2) and move the 'htdocs' and 'mysql/data' files over to the new data base. First error: 9:50:21 AM [mysql] Attempting to start MySQL app... 9:50:22 AM [mysql] Status change detected: running 9:50:22 AM [mysql] Status change detected: stopped 9:50:22 AM [mysql] Error: MySQL shutdown unexpectedly. 9:50:22 AM [mysql] This may be due to a

xampp phpmyadmin access denied error(#2002)

孤街醉人 提交于 2019-11-29 18:48:55
问题 Hi everyone i had mysql server running on 3306. I uninstalled that completely and installed XAMPP. Mysql was not running at the beginning, then I changed the port to 3307 in my.ini as well as configuration of CP. It is showing status as running now but phpmyadmin is giving error as access denied. I tried so many solutions but didnt help. Someone please help me. Thanks in advance. 回答1: Try this. Go to the directory where Xampp is installed. Lets call it xampp. Now open the file xampp

XAMPP - Apache could not start - Attempting to start Apache service

我的梦境 提交于 2019-11-29 18:42:15
问题 While trying to start Apache using XAMPP, I was receiving - "Attempting to start Apache service..." message in XAMPP UI. No further details were available. Where can I see the logs (I was running XAMPP as Admin) ? 回答1: IF PORT 80 IS NOT THE ISSUE! Check to see if the port 80 is in use first as this can be an issue. You can do this by typing "netstat -an" into cmd. The look for 0.0.0.0:80 under Local Address, if you find this is in use then follow the solution from @Karthik. However, I had a

How to turn off magic quotes in PHP configuration file? I am using XAMPP

…衆ロ難τιáo~ 提交于 2019-11-29 17:46:32
What is the file? I have php.ini and php.ini-dist on my computer. php.ini-dist is the sample config file that comes with PHP, php.ini is the live config so you will need to set in this file magic_quotes_gpc = off magic_quotes_runtime = off magic_quotes_sybase = off 来源: https://stackoverflow.com/questions/1748001/how-to-turn-off-magic-quotes-in-php-configuration-file-i-am-using-xampp

XAMPP mail not working with PHP mail() function

风流意气都作罢 提交于 2019-11-29 15:48:23
问题 I just installed XAMPP, Apache is running, so is MySQL and Mercury. In Dreamweaver I created a php file with a mail($to,$subject,$msg,'From:'.$email); function, but when I ran the file from localhost it showed an error. After playing around with xampp control panel, turning mercury on and off, it's not showing any errors, yet is not send the email either... any ideas? the 'admin' button on the cp for mercury does nothing. Thanks! R 回答1: You would have to configure the mercury server bundled

How to solve “Call to undefined function dbase_open() ” error in windows

做~自己de王妃 提交于 2019-11-29 15:21:16
Hi i want to load DBF file to mysql, am using xampp,php version 5.5.6 i had write the below code, But am getting Error --- Fatal error: Call to undefined function dbase_open() in C:\xampp\htdocs\imports\import_geo.php on line 47 $dbf = dbase_open('OUTLETS/regions.dbf', 0); $num_records = dbase_numrecords($dbf); for($i=1;$i<=$num_records;$i++) { $record = dbase_get_record_with_names($dbf, $i); $stmt_bricks->execute(array( ':id' => $next_brick_id, ':type' => 'Region', ':code' => $record['REG_CODE'], ':descr' => $record['REG_DESC'], )); $regions_code_to_id[$record['REG_CODE']] = $next_brick_id++;

PHP Curl on 81 port

二次信任 提交于 2019-11-29 14:37:44
I have locally set 2 Apache Server on Port 80 and port 81 using XAMPP. Iam successfully able to access them through my browser. Currently the URL can be accessed at http://27.4.198.225/ncmsl/check.php and http://27.4.198.225:81/ncmsl/check.php. When I try to write a simple curl code for them $ch=curl_init(); $url = "http://27.4.198.225/ncmsl/check.php"; curl_setopt($ch, CURLOPT_TIMEOUT, 60); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_URL, $url); curl_exec($ch); curl_close($ch); It works perfectly fine for server at port 80 but doesn't work for server at port 81, i.e

Laravel - Auth Session not expiring after browser close

南笙酒味 提交于 2019-11-29 13:43:02
I am having a problem about sessions, or cookies, I didn't understand the reason. I log on to my site with Auth::attempt($userdata, false) , which means Laravel should not remember my login, but it remembers whether I use true or false in attempt function. in app/config/session.php , variables are determined as 'lifetime' => 120, 'expire_on_close' => true, Also, when I log in with Auth::attempt($userdata, true) , 'Auth::viaRemember()' function returns false . Edit: Question solved. Cause of the problem is Chrome. See my answer for detailed information. It is a desired behavior to be logged in

XAMPP localhost returns object not found after installing Laravel

半世苍凉 提交于 2019-11-29 13:12:58
问题 After much faffing about I got laravel to work with XAMPP. However, I can't seem to access directories in the htdocs folder via localhost now. Attempt to access a file returns Object not found! along with The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again. The changes I made to get laravel working seems like a blur now. The only thing I remember doing is editing the hosts file to enable the virtual host to work by adding