Download the file on https://get.typo3.org/version/8.7.32 (Typo3 Version 8.7.32). I downloaded the .tar.gz file
Uncompress the downloaded file then move to the web root and rename to ‘typo3-8.7.32’
CREATE LOCAL SETUP
CREATE A CONF
|
1 |
sudo gedit /etc/apache2/sites-available/typo3-8.7.32.test.conf |
CONTENT
|
1 2 3 4 5 6 7 8 9 10 11 12 |
<VirtualHost typo3-8.7.32.test:80> ServerName www.typo3-8.7.32.test DocumentRoot "/home/satria/Documents/projects/typo3-8.7.32" DirectoryIndex index.php <Directory "/home/satria/Documents/projects/typo3-8.7.32"> AllowOverride All Allow from All Require all granted </Directory> ErrorLog /var/log/apache2/typo3-8.7.32error.log CustomLog /var/log/apache2/typo3-8.7.32.access.log combined </VirtualHost> |
ENABLE THE VIRTUALHOST
|
1 |
sudo a2ensite typo3-8.7.32.test.conf |
RELOAD APACHE2
|
1 |
sudo systemctl reload apache2 |
CREATE THE HOST
|
1 2 3 |
sudo gedit /etc/hosts 127.0.0.1 typo3-8.7.32.test |
RELOAD APACHE2 AGAIN
SET THE FILE PERMISSION
|
1 |
satria@teddy:~/Documents/projects/typo3-8.7.32$ sudo chmod -R 777 . |
ALSO MODIFY FILE _.htaccess TO .htaccess
OPEN: http://typo3-8.7.32.test/
INSTALL
FOR THE FIRST INSTALL, CREATE A NEW FILE WITH NAME ‘FIRST_INSTALL’ IN THE TYPO3 ROOT. SO THE FILE PATH WOULD BE LIKE THIS: ~/Documents/projects/typo3-8.7.32/FIRST_INSTALL
CREATE A NEW DATABASE ‘typo3_8_7_32’
http://typo3-8.7.32.test/typo3
ADMIN
user: admin
pass: Teddy@123
FIRST OPEN http://typo3-8.7.32.test/, I GOT THIS ERROR
|
1 |
Oops, an error occurred! |
ALSO ON THE ADMIN PAGE (LOG)
SOLUTION:
THAT’S BECAUSE I HAVEN’T INSTALLED ANY DISTRIBUTION PACKAGES. ON THE INSTALLATION, I CHOOSE EMPTY PACKAGE!
READ: https://hostarmada.com/tutorials/blog-cms/typo3/how-to-troubleshoot-the-no-pages-are-found-on-the-rootlevel-error-after-initial-typo3-installation/
SO I NEED TO INSTALL THE OFFICIAL DISTRIBUTION PACKAGE JUST TO SHOW ANY DATA ON THE WEBSITE
OPEN AGAIN: http://typo3-8.7.32.test/
NOW SHOULD BE NO ERROR