xampp

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

我与影子孤独终老i 提交于 2019-12-18 09:59:00
问题 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

Laravel - Auth Session not expiring after browser close

帅比萌擦擦* 提交于 2019-12-18 08:21:13
问题 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

JOOMLA site too slow

◇◆丶佛笑我妖孽 提交于 2019-12-18 07:06:28
问题 my Joomla site is too slow. It approximately uses 8 to 10 s to load main page. I am using xampp. template protostar. PC core i7. OS windows. JOOMLA 3.15. Is it normal ?? OR any any one may please guide me how to debug this issue. 回答1: Oppz i solved it just right now. I disable Xdebug in php.ini and time reduces form 8s to 1s [XDebug] ;zend_extension= "C:\Users\arslan\Desktop\xampp-win32-1.8.1-VC9\xampp\php\ext\php_xdebug.dll" ;xdebug.remote_enable=on ;xdebug.remote_handler=dbgp ;xdebug.remote

XAMPP - Apache Error

僤鯓⒐⒋嵵緔 提交于 2019-12-18 05:21:26
问题 This is the error I get when I try to start Apache. The error logs are : [ssl:warn] [pid 7132:tid 392] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name [ssl:warn] [pid 7132:tid 392] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name [mpm_winnt:notice] [pid 7132:tid 392] AH00455: Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.5.15 configured -- resuming normal operations [mpm_winnt:notice]

XAMPP - Apache Error

陌路散爱 提交于 2019-12-18 05:21:06
问题 This is the error I get when I try to start Apache. The error logs are : [ssl:warn] [pid 7132:tid 392] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name [ssl:warn] [pid 7132:tid 392] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name [mpm_winnt:notice] [pid 7132:tid 392] AH00455: Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.5.15 configured -- resuming normal operations [mpm_winnt:notice]

Blank admin page on Magento 2.3.0 CE in localhost

点点圈 提交于 2019-12-18 04:50:15
问题 I have installed Magento 2.3 on my local-machine, installation goes fine. I can access my store at localhost/magento . I tried to access my admin page localhost/magento/admin_pogi but it gives me a blank page and redirected to the url http://localhost/magento/admin_pogi/admin/index/index/key/a062e79f617010c42b07d662103d5142cd9bbe86314fb54da3e4cb5542b11eee/ . What I have tried so far is to enable development mode, and I see this error on my admin page: 1 exception(s): Exception #0 (Magento

localhost blocked on Chrome with “Privacy Error”

醉酒当歌 提交于 2019-12-18 04:38:15
问题 Google Chrome is blocking localhost . I'm using XAMPP with Apache localhost , ports 80 and 443 . Google Chrome is up to date. I'm getting the following error: Your connection is not private Attackers might be trying to steal your information from localhost (for example, passwords, messages, or credit cards). NET::ERR_CERT_COMMON_NAME_INVALID 回答1: Try this: In Chrome, put in chrome://flags/#allow-insecure-localhost in the address bar. Enable the option that says "Allow invalid certificates for

XAMPP: Another web server daemon is already running?

懵懂的女人 提交于 2019-12-18 03:58:10
问题 I have painfully analyzed all of yesterday if I had another apache/web-server instance running, with all of these commands ps aux ps -e lsof netstat tunap I DO NOT have another instance of Apache or ANY OTHER server running at port 8080. Yet, XAMPP gives me this: XAMPP: Another web server daemon is already running What should I do? I also edited httpd.conf to LISTEN to port 9876, and still the same. 回答1: If: lsof -Pi |grep 8080 returns no results netstat -na |grep 8080 returns no results ps

How to downgrade php from 5.5 to 5.3

◇◆丶佛笑我妖孽 提交于 2019-12-18 03:12:46
问题 Is there a way to downgrade php 5.5 to 5.3 in xampp? I searched on google but every one just tell me to uninstall xampp and install an older version. Could I have php 5.5 downgrade to 5.3 without reinstall xampp? 回答1: Short answer is no. XAMPP is normally built around a specific PHP version to ensure plugins and modules are all compatible and working correctly. If your project specifically needs PHP 5.3 - the cleanest method is simply reinstalling an older version of XAMPP with PHP 5.3

Enabling XDebug in XAMPP slows down phpmyadmin

喜夏-厌秋 提交于 2019-12-18 02:48:58
问题 whenever i enable xdebug for debugging my php-projects with the following standard settings, it slows down phpmyadmin on every single action. just opening phpmyadmin takes nearly 10 seconds. zend_extension = "C:\xampp\php\ext\php_xdebug.dll" xdebug.profiler_append = 0 xdebug.profiler_enable = 1 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir = "C:\xampp\tmp" xdebug.profiler_output_name = "cachegrind.out.%t-%s" xdebug.remote_enable = on xdebug.remote_handler = "dbgp" xdebug