Questions tagged [lamp]

LAMP refers to a stack of web technologies based on Linux, Apache, MySQL, and PHP/Perl/Python.

LAMP, (Linux, Apache, MySQL and PHP/Perl/Python), is an acronym for a solution stack of free, open source software, referring to the first letters of: Linux (operating system), Apache HTTP Server, MySQL (database software) and PHP (or sometimes Perl or Python), principal components to build a viable general purpose web server.

2162 questions
0
votes
1 answer

Docker LAMP stack - lstat apache_default: no such file or directory?

I tried to installed a LAMP stack with a DockerFile in a directory on my desktop /home/username/Desktop/docker/lamp/: FROM ubuntu:16.04 VOLUME ["/var/www"] RUN apt-get update && \ apt-get dist-upgrade -y && \ apt-get install -y \ …
Run
  • 54,938
  • 169
  • 450
  • 748
0
votes
0 answers

Setting up HTTPS for a Google Cloud instance?

I recently purchased a domain with Google Domains and linked it with Google Cloud - specifically Compute Engine. My website is up and running but I noticed that the connection is not secure, and I'm not sure why. Another domain that I set up with…
needhelpwithR
  • 283
  • 1
  • 4
  • 15
0
votes
1 answer

windows curl command line won't accept an array of files

I'm trying to upload a set of 3 files simultaneously to a LAMP server using the command line version of curl on Windows. The following command (referenced here) works perfectly on the linux version but doesn't send any files on when I try it on…
UltrasoundJelly
  • 1,845
  • 2
  • 18
  • 32
0
votes
1 answer

Cannot download pip packages on LAMP/Bitnami server

I was developing an application on my machine using XAMPP and wanted to host the application. I followed the instructions on apachefriends and set up a server with Bitnami and the LAMP stack. I have some python scripts that I need to run with cron…
needhelpwithR
  • 283
  • 1
  • 4
  • 15
0
votes
1 answer

How do I update phpMyAdmin on EC2 LAMP Server?

I have a LAMP server on an EC2 instance. I downloaded phpMyAdmin using Amazon's guide here: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/install-LAMP.html. On the phpMyAdmin page it says that: "A newer version of phpMyAdmin is available and…
kha96
  • 43
  • 6
0
votes
1 answer

How to use a variable to assign a database to each user in Laravel 5.3 in LAMP?

i have a little application for stock control in a shop wich is running in my online homemade server (lamp), i made my web app with laravel, now i have to use it to control more shops, so my idea is that when a user login in the app, he only can…
matQ
  • 597
  • 2
  • 13
  • 27
0
votes
0 answers

How to troubleshoot an AMP Stack

I am trying to establish a stable AMP stack that will support multiple localhosts in a single physical environment. In my case it is a MAMP stack because I am using a Macbook pro (Sierra). I have tried both MAMP and MAMP Pro. My problem is in…
doug5solas
  • 77
  • 10
0
votes
0 answers

Magento 1.8 Fatal Error Call to Member Function toHTML() In Admin Panel

I am trying to edit one of the attributes in the Magento admin panel. When I click on any of them from Catalog -> Attributes -> Manage Attributes, I get the following error: Fatal error: Call to a member function toHtml() on a non-object in…
Hubk
  • 3
  • 1
0
votes
0 answers

MySQL: SQL Syntax and other errors only in Linux server

Please have a look in below SQL code DROP TABLE IF EXISTS `xxx`.`reminder` ; CREATE TABLE IF NOT EXISTS `xxx`.`reminder` ( `idreminder` INT NOT NULL AUTO_INCREMENT, `patient_idpatient` INT NOT NULL, `remind_about` TEXT NOT NULL, …
PeakGen
  • 21,894
  • 86
  • 261
  • 463
0
votes
1 answer

Migrate XAMPP databases to LAMP

I'd like to migrate databases I have created using XAMPP to the the LAMP stack. I've installed php, apache and mariadb following this: Arch Wiki Apache The databases, which are to be imported are not sql-files, but rather ibd and rfm-files located…
Alex
  • 751
  • 1
  • 6
  • 34
0
votes
1 answer

Identify server CPU process

Is there a Server-Side language or something under a LAMP server that may help to identify why is a certain -repetitive and huge CPU load- process running in my cPanel managed host that is not caused by visits nor cron jobs??? (The process being run…
DavidTaubmann
  • 3,223
  • 2
  • 34
  • 43
0
votes
1 answer

Application Environment is not set correctly LAMP Azure Cloud

I have installed my PHP based application on a lamp server in azure cloud. I used the codes getenv('something'); to use environment variables for the application. I tried it on my local host and on heroku and both place it seems to work fine. I have…
XAF
  • 1,462
  • 1
  • 11
  • 22
0
votes
0 answers

LAMP shows index.php in var/www/html instead of project

i have installed LAMP on Ubuntu-16.04. Now in my var/www/html I have created a file called index.php which shows info about my PHP. Also i have a folder called FMS which is my Codeigniter Project Folder. When I fire localhost/FMS it shows the url to…
Rajan
  • 2,427
  • 10
  • 51
  • 111
0
votes
2 answers

Lamp server not showing file without extension

I am getting a weird issue i created a vhost in lamp stack. The problem is that when I open the vhost site www.domain.com the home page loads without any issue. But when I use the nav bar to open another page I get a "404 NOT FOUND" i.e…
Rajendran Nadar
  • 4,962
  • 3
  • 30
  • 51
0
votes
1 answer

Designing a service for scale. Number of servers needed

Suppose that I need to design a web service. To keep it simple, assume that I use LAMP (Linux-Apache-MySQL-PHP). I know that I will serve exactly N user requests per second. The requests are basically simple CRUD operations to the database, no file…
user1256821
  • 1,158
  • 3
  • 15
  • 35