    1  exit
    2  ls
    3  pwd
    4  ls /
    5  ls /etc/httpd/conf.d/
    6  cd /etc/httpd/conf.d/
    7  ls
    8  cat userdir.conf 
    9  ls /home/
   10  cd /home/
   11  ls
   12  cd /etc/httpd/conf.d/
   13  cd ../
   14  ls
   15  cat conf
   16  cd conf
   17  ls
   18  cat httpd.conf 
   19  vi httpd.conf 
   20  ls /var/www/html/
   21  ls
   22  cd /var/www/html/
   23  ls
   24  cls
   25  clear
   26  ls
   27  vi index.html
   28  exit
   29  pwd
   30  ls /etc/httpd/conf
   31  cd /etc/httpd/conf
   32  vi httpd.conf 
   33  exit
   34  cd /etc
   35  ls
   36  cat /etc/httpd/conf/httpd.conf 
   37  cat /etc/httpd/conf/httpd.conf | grep DocumentRoot
   38  mkdir -p /var/www/shopforsoul
   39  cd /var/www/shopforsoul/
   40  cat /etc/php.ini 
   41  cat /etc/php.ini | grep _limit
   42  cp /etc/php.ini /etc/php.ini.bk.Sept-15-2024
   43  vi /etc/php.ini
   44  mysql -u root -p
   45  curl -sS https://getcomposer.org/installer | php
   46  mv composer.phar /usr/local/bin/composer
   47  wget https://github.com/magento/magento2/archive/2.3.zip
   48  unzip 2.3.zip
   49  mv magento2-2.3 magento2
   50  cd magento2
   51  composer update
   52  rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
   53  dnf install -y https://rpms.remirepo.net/enterprise/remi-release-8.rpm
   54  dnf module reset php
   55  dnf module install php:remi-7.4
   56  pwd
   57  composer update
   58  vi /etc/php.ini
   59   Root composer.json requires PHP extension ext-intl
   60  vi /etc/php.ini
   61  composer update
   62  vi /etc/php.ini
   63  composer update
   64  composer update --ignore-platform-reqs
   65  composer install
   66  composer install --ignore-platform-reqs
   67  cat /etc/passwd | grep apac
   68  chown -R apache:apache /var/www/shopforsoul/magento2
   69  chmod -R 755 /var/www/shopforsoul/magento2
   70  vi /etc/httpd/conf.d/magento.conf
   71  systemctl restart httpd
   72  history
   73  history > magentoinstallation_history_sept_15_2024.txt
