XAMPP apache server is not starting after Skype installation
go in skype->tools->options->advanced and UN-check use ports 80 & 443.
go in skype->tools->options->advanced and UN-check use ports 80 & 443.
In your xampppath\apache\conf\extra open file httpd-xampp.conf and find the below tag: # Close XAMPP sites here <LocationMatch “^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))”> Order deny,allow Deny from all Allow from ::1 127.0.0.0/8 ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var </LocationMatch> and add “Allow from all” after Allow from ::1 127.0.0.0/8 {line} Restart xampp, and you are done. In later versions of Xampp …you can … Read more
->STRICT_TRANS_TABLES is responsible for setting MySQL strict mode. ->To check whether strict mode is enabled or not run the below sql: SHOW VARIABLES LIKE ‘sql_mode’; If one of the value is STRICT_TRANS_TABLES, then strict mode is enabled, else not. In my case it gave +————–+——————————————+ |Variable_name |Value | +————–+——————————————+ |sql_mode |STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION| +————–+——————————————+ Hence strict mode … Read more
There are many possible answers for this problem. The most common and most likely is that you’re running another program which is blocking port 80 or 443. If you’ve installed Skype, then you’ve found your problem! Change apache’s port settings to 81 and apache will work. There’s a good tutorial on that To check this … Read more
Installation of PHP Driver for SQL Server (sqlsrv and/or pdo_sqlsrv PHP extensions) can be done following the next steps: Based on Microsoft PHP Drivers for SQL Server Support Matrix download appropriate version of this driver. In your case – version 5.2 or 5.3 (32-bit or 64-bit also depends on PHP version). Download and install an … Read more
I found the problem was Xdebug in xampp\php\php.ini. Here’re the results of trying many solutions found around the web: Run XAMPP as adminisrator and restart server: 3617 ms In xampp/apache/conf/httpd.conf, replace localhost with 127.0.0.1 and restart server: 3639 ms In Windows/System32/drivers/etc/hosts, add “127.0.0.1 127.0.0.1” & “127.0.0.1 localhost” and restart Windows: 3960 ms In Windows/System32/drivers/etc/hosts, un-comment … Read more
Apache part – enabling you to open https://localhost/xyz There is the config file xampp/apache/conf/extra/httpd-ssl.conf which contains all the ssl specific configuration. It’s fairly well documented, so have a read of the comments and take look at http://httpd.apache.org/docs/2.2/ssl/. The files starts with <IfModule ssl_module>, so it only has an effect if the apache has been started … Read more
Do these steps: open your MySQL configuration file: [drive]\xampp\mysql\bin\my.ini look up for: # The MySQL server [mysqld] add this right below it: lower_case_table_names = 2 save the file and restart MySQL service From: http://webdev.issimplified.com/2010/03/02/mysql-on-windows-force-table-names-to-lowercase/
Try this: Adding users to MySQL You need grant privileges to the user if you want external acess to database(ie. web pages).