Install i@nseo
Preparation of the installation
i@nseo runs as a web site, so a so-called AMP stack (Apache, Mysql, Php) needs to be installed first.
Windows
To install i@nseo on a Windows operating system, follow these steps:
- Download the software from ianseo.net. The preferred method is to download the full installer that will install XAMPP.
- Extract the file in the wished folder. The preferred method is extracting the file in C:\ and ianseo will be found in C:\ianseo
- Run the setup xampp.bat file, available in the folder. A terminal window will open: in case there is some setup to tweek the system will display 2 pre-compiled questions: just press "Enter"; otherwise a message saying "Nothing to do" will be displayed. Then close the terminal window.
Post Installation
In Windows 11 Windows Defender apparently interferes with XAMPP and sometimes crashes i@nseo.
To avoid interferences between Windows Defender and XAMPP follow these steps[1]
Step 1: Open Windows Security and go in "Protection against virus and malware"
Step 2: At the bottom of the page click on Manage Exclusion
Step 3: Insert which elements to exclude from the scan paying attention to upper and lower case:
- Select folder to exclude:
- C:\ianseo
- File Types to exclude:
- .mysql
- .php
- Processes to exclude (type exactly as written):
- Apache HTTP Server
- mysqld
- xampp-control
Run XAMPP
After setting up the archives, activate XAMPP by clicking on the Xampp-control icon, then, in the new window, click on ‘Start’ to both Apache and MySql.
WARNING
If a warning appears stating that VCRUNTIME140.dll was not found, please install the Latest Microsoft Visual C++ Redistributable Version We reccomend the x86 version. If in doubt install both!
N.B.: the XAMPP control panel can be closed (minimised) and the services will keep running.
Verify the C:\ianseo\htdocs
folder is world-writeable: right click on the folder, select properties and change the permissions so that everybody can have read and write access to the folder and subsequent files and folders.
MacOs
We do not have an installer for Mac, so the AMP stack needs to be installed separately.
Download of XAMPP/MAMP
Download XAMPP ([1]) or MAMP ([2]) and follow the instructions to install.
Download of i@nseo
From ianseo.net download the zip file and extract it in the folder htdocs
of XAMPP/MAMP (under /Application
)
Linux
The native way of installing the AMP stack is called LAMP: be aware that i@nseo will run on php 8 or later. Install with your package manager (you will need administrative privileges):
- apache2
- mysql-server
- mysql-client
- php
- php-mysql
- php-gd
- php-curl
- imagemagick
- php-imagick
- php-xml
- php-zip
- php-intl
- php-mbstring
Create a user for ianseo in the mysql server. This can be done in modern debian derived distribution with (copy and paste the following line in a terminal):
sudo mysql -e "create user ianseo@localhost identified by 'ianseo';grant all privileges on ianseo.* to ianseo@localhost;create database ianseo;"
If you have an error of missing password, you need to add the password switch. Be aware that you will not see the password as you type, so don't forget to hit "enter" when done.
sudo mysql -p -e "create user ianseo@localhost identified by 'ianseo';grant all privileges on ianseo.* to ianseo@localhost;create database ianseo;"
Create the folder /opt/ianseo
and assign the folder to your user.
Download the zip file from ianseo.net and extract in /opt/ianseo.
Assign world writeable permissions to the folder and files with the following command.
sudo chmod -R a+rwX /opt/ianseo
Copy the apache configuration file located in /opt/ianseo/Install/apache-ianseo.conf
in /etc/apache2/conf-available
and enable the change in apache
sudo cp /opt/ianseo/Install/apache-ianseo.conf /etc/apache2/conf-available sudo a2enconf apache-ianseo sudo service apache2 reload
Final Setup of i@nseo
Check there is no file in Common
called config.inc.php
Open an Internet browser and navigate to http://localhost/ianseo
Follow the on-screen instructions given by the software.
Credits
- ↑ Arnaud Chalmel, Archers de Saint Loup