Ubuntu 安装Magento

Magento 是一个开源 CMS(内容管理系统)。它被广泛用作创建电子商务网站的电子商务平台。

在这里,在本教程中,我们将在 Ubuntu 操作系统中安装此 CMS。在安装之前,我们必须满足以下所有先决条件。

 

先决条件

  • Ubuntu 16.04
  • LAMP(Linux Apache MySQL PHP)

 

关注 PHP 扩展

  • PHP 扩展 dom。
  • PHP 扩展卷曲。
  • PHP 扩展 mcrypt。
  • PHP 扩展 simplexml。
  • PHP 扩展程序
  • PHP 扩展 xsl。
  • PHP 扩展国际。
  • PHP 扩展 mbstring。
  • PHP 扩展 ctype。
  • PHP 扩展哈希。
  • PHP 扩展 openssl。
  • PHP 扩展 zip。
  • PHP 扩展 xmlwriter。
  • PHP 扩展 gd。
  • PHP 扩展图标。

 

在终端以root用户身份登录

 

安装 Magento

1) 下载并解压

从官方网站下载最新的 magento 版本 下载Magento.

下载后解压到/var/www/html/ 目录。

2) 在本地主机上运行

首先,我们需要为项目设置权限以通过浏览器访问它。

$ chmod-R 655 magento

现在,通过指定 localhost/megento 从本地主机访问文件夹。浏览器将产生以下输出。

Software Magento 1

3) 设置 Magento

Software Magento 2

 

开始准备检查

在这个阶段,magento安装程序验证并检查本地主机中可用的所有必需插件。

之后它会生成一个报告并显示如下。

软件 Magento 3

 

设置数据库

使用以下命令在 MySQL 中创建数据库。

$ create database magento

提供数据库信息和凭据以使用数据库设置 magento。

Software Magento 4

 

Web 配置

设置主页 url 和 magento 管理地址。

Software Magento 5

设置日期时间和语言

Software Magento 6

创建管理员帐户

Software Magento 7

开始安装

Software Magento 8

安装进度

Software Magento 9

安装成功

Software Magento 10

使用localhost/magento

访问主页 Software Magento 11

管理页面

通过usin访问g localhost/magento/admin.

Software Magento 12

CodeIgniter 是一个强大的 PHP 框架。它用于开发 Web 应用程序。对于需要简单而优雅的工具包来创建功能齐全的 Web 应用程序的开发人员来说,它非常有用。它提供了卓越的性能和强大的安 ...