0

Sorry for my english i did those steps

1) Dowmload de file :

xampp-linux-x64-1.8.3-2-installer.run

2) Open terminal...

   JonasJhy@Ububtu:~/Downloads$

3) Write this

   JonasJhy@Ububtu:~/Downloads$ chmod 755 xampp-linux-x64-1.8.3-2-installer.run

4) And write this

   JonasJhy@Ububtu:~/Downloads$ sudo ./xampp-linux-x64-1.8.3-2-installer.run

...and then the computer show me this

./xampp-linux-x64-1.8.3-2-installer.run: 2: ./xampp-linux-x64-1.8.3-2-installer.run: Syntax error : Unterminated quoted string

whats the problem,

Can you help me

Maythux
  • 84,289
user243029
  • 1
  • 1
  • 1
  • 1
  • please list the output of the command uname -m – Maythux Feb 03 '14 at 06:28
  • Sounds like a source code bug to me. Write to the xampp guys. They have been quick to fix bugs i have found in the past. unterminated quote is probably the exact problem in the .run source. – j0h Feb 03 '14 at 09:04
  • Thanks it was helpful for installing xampp on my ubuntu 12.04 laptop.......... – Sanket Patel Mar 11 '14 at 09:38
  • I too had the same problem You probably have a 32 bit operating system. The file xampp-linux-x64-1.8.3-2-installer.run is for 64 bit OS. Try using the other version. Worked for me!! –  Mar 26 '14 at 11:03

1 Answers1

1

You can install it using the ppa

Add the ppa:

sudo add-apt-repository ppa:upubuntu-com/xampp

Update:

sudo apt-get update

Install XAMPP:

sudo apt-get install xampp
Maythux
  • 84,289