xampp

Two different languages PHP and Java on same application with PHP on Apache and Java on Tomcat

谁都会走 提交于 2019-12-03 09:05:53
I am also finding tough to categorize this question. So please bear with me to explain the issue. We have two different applications: PHP on XAMPP and Java on Tomcat Now we have a business case to merge both the products. ie., PHP product should be looking no different from the Java application and also it should be part of Java app. (appears in the one of the tab in Java app) The CSS part can be taken care. But the complex part is how to collate these two application? Also we are using Tomcat for Java and Apache for PHP, in such case how do we bundle the product as one. I tried googling, but

XAMPP on Debian7 starting Apache fails

混江龙づ霸主 提交于 2019-12-03 09:00:20
I install xampp on my debian 7,and when I try to start it, I have gotten an error message start apache fail , I use the ps -A to show if I had run another web service ,but I failed. How to solve this issue? /opt/lampp/lampp start Starting XAMPP for Linux 1.8.2-2... XAMPP: Starting Apache...fail. XAMPP: Another web server is already running. XAMPP: Starting MySQL...ok. XAMPP: Starting ProFTPD...ok. when debian7 start,it will start apache2. so you should stop it first,than try to start lampp. /etc/init.d/apache2 stop /opt/lampp/lampp restart that maybe work.try it. Another Way .Just press Ctrl

XAMPP PORT 80 is Busy / EasyPHP error in Apache configuration file:

匿名 (未验证) 提交于 2019-12-03 08:59:04
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: This problem has completely shot my entire day. I reformatted my old windows XP comp and tried installing XAMPP only to find that when i try to start Apache xampp claims port 80 is busy....WHAT DOES THAT EVEN MEAN? So I tried just uninstalling and moving to EasyPHP instead and when I installed that I get the error "error in Apache configuration file: the system cannot execute the specified program" No, I do not have Skype or any other programs really for that matter at this point, like I said I JUST REFORMATTED so idk whats going on. I would

Restore MYSQL Dump File with Command Line

亡梦爱人 提交于 2019-12-03 08:58:23
问题 I have file.sql, and I want to restore it. I found this command: mysql -u username -p database_name < file.sql Where should I put 'file.sql' in file system? I'm using Windows and XAMPP. Thank you. *) The dump file is 3GB++ 回答1: You can put it anywhere, where there is enough diskspace available of course. A good place for this would be either /tmp (on linux or similar) or c:\temp (on windows or similar) But assuming you use that exact line you need to change your working directory to that

Imagick on Windows 8 xampp

匿名 (未验证) 提交于 2019-12-03 08:56:10
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to install imagick on windows 8 64bit, xampp. I have tried all methods in internet how to solve this problem, but none helped me ( have tried more than 10 methods ). In all results i get error while launching apache. Apache 2.2.21 PHP 5.3.8 Windows 8 64 Latest method i have tried: http://w3facility.info/question/how-to-install-imagemagick-for-php5-35-4-on-windows-8-x64/ In case i change to extension=php_imagick_nts.dll error looks like: The program can't start because php5.dll is missing... In case i change to The program can't start

when I try to open an HTML file through `http://localhost/xampp/htdocs/index.html` it says unable to connect to localhost

匿名 (未验证) 提交于 2019-12-03 08:54:24
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I have installed XAMPP , there is a htdocs folder and inside it index.html file , when I try to open it in my browser through http://localhost/xampp/htdocs/index.html it says unable to connect to localhost . what is wrong ? 回答1: instead of http : //localhost/xampp/htdocs/index.html try just http : //localhost/index.html or if index.html is saved in a folder in htdocs then http : //localhost/<folder-name>/index.html 回答2: htdocs is your default document-root directory, so you have to use localhost/index.html to see that html file. In

MySQL won&#039;t start on XAMPP server

匿名 (未验证) 提交于 2019-12-03 08:50:26
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have a problem with my XAMPP server. I can start Apache, FileZilla, and every thing else without problems, but when I try to start MySQL, it just says Attempting to start MySQL service... and it stays like that forever, like if it was frozen or something. Any ideas how to fix it? 回答1: Check the log files for MySQL. You will find them in this directory: C:\xampp\mysql\data (assuming standard install location of xampp) Also check if no other program or service uses the default MySql port. You can do this by using this command: netstat -an |

notfound.html is not found

匿名 (未验证) 提交于 2019-12-03 08:48:34
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Pretty sure based on various examples (like the one here ) I set things up correctly: 1) I created a file 'notfound.html' in the root directory of my site 2) I'm running xampp, ie. Apache web server, so based on the stuff I've read, Apache looks for a notfound.html in the root directory of a site when a non-existent page is typed in the browser, such as www.mysite.com/NotAValidPage.html and uses that notfound.html for the 404 error message Here's what I've tried and the result of each attempt: 1test) I put my own notfound.html in my site's

How to Install PHP MongoDB Driver for XAMPP on OSX?

て烟熏妆下的殇ゞ 提交于 2019-12-03 08:47:02
I entered the following commands on my command terminal in order to use the 'MongoClient' with PHP on XAMPP on my Macbook Pro: brew install wget brew install autoconf sudo /Applications/XAMPP/xamppfiles/bin/pecl install mongo Added extension=mongo.so to php.ini /Applications/XAMPP/xamppfiles/etc Restarted Apache However, I have had no luck. I keep getting this error: Fatal error: Class 'MongoClient' not found in /Applications/XAMPP/xamppfiles/htdocs/xampp/index.php on line 5 I'm getting kind of frustrated because I don't really know what else to try. Any advice? You need to start mongod brew

How to update mysql version in xampp (error with innodb_additional_mem_pool_size)

匿名 (未验证) 提交于 2019-12-03 08:46:08
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm trying to upgrade mysql in xamp . I'm using laravel which requires mariaDB v10.2.2 . So I downloaded the latest msi package from the mariaDB website . Now I followed following points to install the same: Install MySQL to C:\TEMP. Make old installation folder to mysql_old. copy the following folders "bin, include, lib, share, support-files" to xamp\mysql\ folder. I didn't copied the data folder Copied the my.ini file from old installation to new installation in xamp\mysql\bin\ folder Copied the old data folder to new mysql folder Now