I am trying to install xampp on linux mint 32 bit OS. I downloaded xampp from here. And I got a xampp-linux-1.8.3-5-installer.run file. I tried to run that file but its showing me error. Can anyone help me to install xampp in my linux mint.
I am a noob in linux and I'm using it for the first time. I found some linux commands to install xampp. But it didn't help me well.
Without knowing the exact error, you will find a guide Here on how to install Apache, Mysql and PHP on Ubuntu which uses the same install commands as Linux Mint.
Related
I using macOS High Sierra version 10.13.1
I want to install two xampp in my Mac (xampp 7.0.27 and xampp 7.1.13)
First, I had install xampp 7.0.27 in my Mac and it works. It's stored in /Applications/XAMPP
Second, I try to install xampp 7.1.13 in my Mac. Seems it's failed. Because it's stored in /Applications/XAMPP too. Does not seem to be custom the path
How can I solve this problem?
A not-so-pretty solution that works:
Install the first XAMPP version and then rename
/Applications/XAMPP to something like /Applications/XAMPP-7.0.27.
After that, install the second XAMPP version and then rename
/Applications/XAMPP to something like
/Applications/XAMPP-7.1.13.
In order to run the preferred version just rename it back to /Applications/XAMPP and run the manager-osx.
I am currently working in PHP in my localhost. I have php version 5.5.9-1, apache2 version 2.4.7, and Mysql Ver 14.14 in my Ubuntu 14.04.
But how to check whether I am using LAMP or XAMPP?
I tried typing "lamp" and "xampp" in terminal. But it shows "command not found". Should I come to the conclusion that these things(apache, mysql and php) were installed seperately?
In my case I have installed XAMPP for Linux (LAMPP) in Ubuntu 18.10
How can you know it?
Try to go to /opt/lampp
If you can, it means Xampp for Linux it's installed, but if you want to know the version, in the same path of step 1, put in your command line ./xampp status
You will know XAMPP for Linux version and Apache, MySQL and ProFTPD status (running or not).
Know PHP version
cd /opt/lampp/bin
./php -v
Know MySQL (MariaDB) version
cd /opt/lampp/bin
./mysql --version
Know Apache version
cd /opt/lampp/bin
./apachectl -v
I hope helps somebody
./xampp status image
You have to understand this :
1) LAMP
For LAMP setup, you have to install PHP, Apache and Mysql packages separately. In LAMP you don't get anything to manage your server in GUI way.
For Ex: To start apache server you have to type command in terminal.
To start apache : sudo service apache2 start
For installing LAMP refer :
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu
2) XAMPP
It is a complete package which comes bundled with PHP,Apache, Mysql etc in a single installation. It gives you a control panel from which you can manage your server and configuration files.It is something of this sort.
For XAMPP : https://www.apachefriends.org/download.html
If you don't find xampp control panel in your system, this means you have a LAMP setup. i.e : first option.
The lamp package installs apache, mysql and php separately.
In ubuntu you should have the apache installed on /etc/apache2
the mysql installed on /etc/mysql
and the php installed on /usr/share/php
If you are developing you can use PHP's built-in server.
Try:
xampp -v
If xampp is installed it will display the version else its not installed.
did anyone know why lampp stop(can't auto run on boot) after update and install rpm-gpg-key-centos-7? normally after install centos and install bitnami xampp for linux and set it run on boot, the web server should active. and it does.
but after update and install key (rpm-gpg-key-centos-7) the apache and mysql can't run on boot time.
it never happend before. thanks for advice.
OS centos 7 64 bit (server with GUI)
lampp bitnami 5.6.8 64 bit
I just installed the Windows 10 Technical Preview, and now I'm trying to install Wamp in order to install Composer on my machine. Yet when I go to use the PHP.exe file from Wamp for Composer, I get the following error:
The PHP exe file you specified did not execute correctly: C:\wamp\bin\php\php5.5.12\php.exe
I've checked the OpenSSL and it's enabled in all three files for Wamp. I've tried installing the 32-bit and 64-bit versions of Wamp, but neither work.
When I try to run PHP from command line, it tells me that the php.exe file is missing from my computer.
Has anyone else run into this problem? If so, have you found a solution for it?
Please and thank you.
I have just installed the Windows 10 Tech Preview myself. I see that it does not come with the Microsoft Visual C/C++ runtimes installed by default.
If you did not install the MSVC 2012, 2010 and 2008 runtimes, then I suggest you do that.
Having those runtimes installed and by entering
C:\wamp\bin\php\php5.5.12\php.exe -v
The PHP CLI runs.
If you are still using the 64bit WAMPServer please remember that you need to install the 32bit AND 64bit MSVC runtimes. The wampmanager.exe program is still a 32bit App regardless and therefore needs the 32bit MSVC runtimes. I think it actually only need the MSVC 2008, but it is safer to install all 3 version for both 32 and 64 bit.
Has anyone had success installing phpsh on Windows?
I have Php 5.2 and Python 2.7 on my Windows 7 machine. When I try to run setup.py, I get a NameError: name '__init__' is not defined. I found someone had forked the project here, but I ran into the same error.
Any idea what I can do?
The only solution for phpsh on Windows is to run CoLinux. Then you have a full Linux and Windows running together without having to run a virtual machine. The only other choice is to run a virtual machine with Linux, but if you system is slow this would not be fun.