xampp

Cannot get Http on git to work

廉价感情. 提交于 2019-12-17 07:41:12
问题 I am using gitbash for git on my thumbdrive. I have a firewall blocking me and would like to set up my git for http access. I use github and I have seen all kinds of infomation on how to do so but I do not understand enough to make it work for my self. I have curl enabled in the php.ini file and that is about as far as I have been able to get done. Before you attempt to assist me please understand that I am not a command line guru so with any command line instructions please be detailed as if

XAMPP apache server is not starting after Skype installation

喜夏-厌秋 提交于 2019-12-17 07:25:39
问题 I am getting following console logs: 1:14:33 PM [apache] Possible problem detected! 1:14:33 PM [apache] Port 80 in use by "c:\program files (x86)\skype\phone\skype.exe"! 1:14:33 PM [apache] Possible problem detected! 1:14:33 PM [apache] Port 443 in use by "c:\program files (x86)\skype\phone\skype.exe"! 1:14:33 PM [main] Starting Check-Timer 1:14:33 PM [main] Control Panel Ready 1:15:10 PM [apache] Starting apache app... 1:15:11 PM [apache] Status change detected: running 1:15:11 PM [apache]

GMail fsockopen(): SSL operation failed error with Codeigniter and XAMPP

放肆的年华 提交于 2019-12-17 05:14:05
问题 Error message 1: Message: fsockopen(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed Filename: libraries/Email.php Line Number: 1962 Error message 2: Message: fsockopen(): Failed to enable crypto Error message 3: Message: fsockopen(): unable to connect to >ssl://smtp.gmail.com:465 (Unknown error) php.ini: extension=php_openssl.dll -> uncommented I have tried with: openssl.cafile= C:\xampp\perl\vendor

Why does Microsoft Edge open some local websites, but not others, where the domain name is routed to 127.0.0.1 in hosts file

半世苍凉 提交于 2019-12-17 04:45:23
问题 Like a lot of programmers, I test sites locally. I use the hosts file to map domain names to my local ip (127.0.0.1). I use qualified domain names, usually with a "d" subdomain (for "development"). For example: d.somewebsite.com d.anotherwebsite.com and so on... In Microsoft edge, most of the web sites work. However, a couple of them do not. There is nothing special or weird about the domain names that won't work. Just a simple d.someletters.com . They work fine in Chrome, IE, and Firefox. In

How to locate the php.ini file (xampp)

自古美人都是妖i 提交于 2019-12-17 03:03:42
问题 I am using xampp server for PHP development and want to edit the php.ini file; where can I locate it? 回答1: For Windows , you can find the file in the C:\xampp\php\php.ini -Folder (Windows) or in the etc -Folder ( within the xampp-Folder). Under Linux , most distributions put lampp under /opt/lampp , so the file can be found under /opt/lampp/etc/php.ini . It can be edited using a normal Text-Editor. Clarification : Xampp ( X (for "some OS"), A pache, M ySQL, P erl, P HP) Lampp ( L inux, A

How to locate the php.ini file (xampp)

喜夏-厌秋 提交于 2019-12-17 03:03:24
问题 I am using xampp server for PHP development and want to edit the php.ini file; where can I locate it? 回答1: For Windows , you can find the file in the C:\xampp\php\php.ini -Folder (Windows) or in the etc -Folder ( within the xampp-Folder). Under Linux , most distributions put lampp under /opt/lampp , so the file can be found under /opt/lampp/etc/php.ini . It can be edited using a normal Text-Editor. Clarification : Xampp ( X (for "some OS"), A pache, M ySQL, P erl, P HP) Lampp ( L inux, A

XAMPP Sendmail using Gmail account

纵然是瞬间 提交于 2019-12-17 02:21:36
问题 I'm trying to configure Sendmail through XAMPP to send email. In my sendmail.ini I have these settings: # Set default values for all following accounts. logfile "C:\xampp\sendmail\sendmail.log account Gmail tls on port 587 tls_certcheck off host smtp.gmail.com from myemail@gmail.com auth on user myemail06@gmail.com password mypassword account default : Gmail I've created a test script like this: $to = "testemail@btinternet.com"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; $headers =

Where does PHP's error log reside in XAMPP?

依然范特西╮ 提交于 2019-12-16 22:22:45
问题 I've been using XAMPP for Windows. Where does PHP's error log reside in XAMPP? 回答1: \xampp\apache\logs\error.log , where xampp is your installation folder. If you haven't changed the error_log setting in PHP (check with phpinfo() ), it will be logged to the Apache log. 回答2: I found it in: \xampp\php\logs\php_error_log 回答3: You can also open the xampp control panel and click on the Button "logs": 回答4: For mac users XAMPP Version 1.7.3 /Applications/XAMPP/xamppfiles/logs/error_log 回答5: For any

Error 500: .htaccess RewriteCond: bad flag delimiters

混江龙づ霸主 提交于 2019-12-14 04:01:44
问题 I've noticed many questions about that problem, but in my case the htaccess is very simple: <IfModule mod_rewrite.c> RewriteEngine on #somecomment RewriteBase /restAPI/ #continue if condition is true: RewriteCond %{REQUEST_FILENAME} !-f # somecomment RewriteCond %{REQUEST_FILENAME} !-d # somecomment RewriteRule ^(.+)$ index.php?url=$1 [QSA,L] #somecomment #somecomment </IfModule> 4-5 weeks about now I haven't problem with that rewritebase, but now I can't start my simple RestAPI :/ Any

Server data accessing from non local network without port forwarding

Deadly 提交于 2019-12-14 03:36:45
问题 I'm using XAMPP server and I have my files in htdocs folder of XAMPP. I had connected to my laptop using my mobile hotspot. Can I access my files in XAMPP folder from another system which is not in same network i.e., can I access the files present in XAMPP folder from another another computer via internet without router only by mobile hotspot? 回答1: Yes, it's possible to access the web server from an external network, depending on your current network configuration. There are two simple