xampp

How to export/save ERD as PDF or as image in phpMyAdmin?

谁说我不能喝 提交于 2019-12-01 04:43:40
问题 I have generated an ERD using the Designer in phpMyAdmin. How do I save it as PDF or image? On possible duplicate: The "original" thread is referenced in the answer. This post is intended to be a visual tutorial thread with screenshots which the other thread does not have. 回答1: To save as PDF: 1) Select databse. 2) More > Designer 3) Import/Export coordinates for relational schema 4) Operations (scroll down) > Edit or export relational schema Click Go. 5) Choose your preferences. Click Go.

PhpMyAdmin Error: Mismatch Token

白昼怎懂夜的黑 提交于 2019-12-01 04:06:28
I've just recently been getting an error in my local installation on installed on apache on xampp. I'm running v4.0.5 of phpmyadmin. The error description is Error: Mismatch Token. Has anyone else experienced this an found a fix for it? You can try the following Find the XAMPP php.ini file and uncomment by removing the semi-colon: session.save_path ="/tmp" Then restart apache. Did you change anything in your apache server config files? if not, open browser, clear all history(ctrl+shift+del), and restart browser, go to phpmyadmin page. it works for me :) Roshan Padole I too came across a same

Why won't Apache start in XAMPP installation?

若如初见. 提交于 2019-12-01 04:06:12
I've taken the first steps to learning PHP - think it would be a good step in the right direction. I would like some help however on installing XAMPP. I have downloaded the file and all that through the Apache Friends site, but when I head to to control panel, I get numerous errors. This is what it says for me: **10:21:53 [Apache] Problem detected! 10:21:53 [Apache] Port 80 in use by "Unable to open process" with PID 4! 10:21:53 [Apache] Apache WILL NOT start without the configured ports free! 10:21:53 [Apache] You need to uninstall/disable/reconfigure the blocking application 10:21:53 [Apache

NodeJS HTTP - listen on other port than 80

大兔子大兔子 提交于 2019-12-01 03:54:35
I am running XAMPP on Windows to host an Apache server on port 80. Now I'm trying to have a NodeJS script running in the background but the problem is that it can only listen on port 80. If it does, everything works as it should but I can't have Apache running at the same time, because Apache takes priority and just serves my website. The NodeJS script doesn't even get to listen. My question is: how do I switch the listening port of the NodeJS script (the specific port really doesn't matter) so that Apache can still run on port 80 and I can reach the NodeJS script from all around the world.

Xampp: web browser won't show the localhost page

北城余情 提交于 2019-12-01 03:49:06
I have installed xampp on Windows7(64bit).I want to work with PHP, Apache and MySql. The server Apache and the MySql services are running properly on the Xampp control panel. But when I run the localhost on my web browser it just shows connecting. Nothing else. Compare to previous enviroment it runs well with IIS. Try doing a netstat -a on your cmd and see if there are any other services which are running on port 80.You can also use netstat -b to find the name of the service however this requires cmd to be run as administrator. The most likely culprit is that there are some other services

disable xampp redirect http to https

左心房为你撑大大i 提交于 2019-12-01 03:10:54
I created VirtualHost at my xampp in localhost for wordpress and add this code in httpd-vhosts.conf : <VirtualHost *:80> ServerAdmin webmaster@mysitefolder DocumentRoot "E:/xampp/htdocs/mysitefolder" ServerName mysitefolder ErrorLog "logs/mysitefolder-error.log" CustomLog "logs/mysitefolder-access.log" common </VirtualHost> but when enter http://mysitefolder in browser it's aout redirect to https://mysitefolder and not load my site. how can disable https and only using http ?thank you I don't have enough reputation to comment but if you are using Chrome and a .dev local server domain, have a

Can't start MySql, port 3306 busy

允我心安 提交于 2019-12-01 03:04:17
问题 I'm trying to start MySql from XAMPP (under Windows Vista), but it's saying that's port 3306 is busy. What would be the best way with check what application is using that port and how to free it? Thanks! 回答1: In a command shell, run: netstat -b -p TCP or netstat -an | grep -i listen | grep -E 3306 The first command will output a list that you will need to look through for the line that displays localhost:3306 in the second column. Below this is the application's name using the port. The

Windows, XAMPP, PHP 7 and opcache

浪子不回头ぞ 提交于 2019-12-01 02:57:34
I've installed latest XAMPP server with PHP 7 (update: checked also PHP 7.1) (on my Windows 10 system). Wanted to use opcache , so I enabled it in php.ini . [opcache] zend_extension=php_opcache.dll opcache.enable=1 opcache.enable_cli=0 opcache.memory_consumption=128 opcache.interned_strings_buffer=8 opcache.max_accelerated_files=4000 With that change now, and with almost every page refresh, I'm getting this error from Apache: AH00428: Parent: child process 3748 exited with status 3221226356 -- Restarting. So, page is loading, and loading... waiting to Apache start again. When I'm turning

NodeJS HTTP - listen on other port than 80

筅森魡賤 提交于 2019-12-01 00:38:03
问题 I am running XAMPP on Windows to host an Apache server on port 80. Now I'm trying to have a NodeJS script running in the background but the problem is that it can only listen on port 80. If it does, everything works as it should but I can't have Apache running at the same time, because Apache takes priority and just serves my website. The NodeJS script doesn't even get to listen. My question is: how do I switch the listening port of the NodeJS script (the specific port really doesn't matter)

Xampp: web browser won't show the localhost page

和自甴很熟 提交于 2019-12-01 00:20:01
问题 I have installed xampp on Windows7(64bit).I want to work with PHP, Apache and MySql. The server Apache and the MySql services are running properly on the Xampp control panel. But when I run the localhost on my web browser it just shows connecting. Nothing else. Compare to previous enviroment it runs well with IIS. 回答1: Try doing a netstat -a on your cmd and see if there are any other services which are running on port 80.You can also use netstat -b to find the name of the service however this