Framadate is a free and open-source online service that helps users to organize polls or schedule events. In this tutorial, we will guide you on how to install Framadate on Kali Linux Latest.
sudo apt-get update
sudo apt-get install apache2 php mysql-server php-mysql
Login to MySQL as root
sudo mysql
Create a database and user for Framadate
CREATE DATABASE <database_name>;
CREATE USER '<db_user>'@'localhost' IDENTIFIED BY '<db_password>';
GRANT ALL PRIVILEGES ON <database_name>.* TO '<db_user>'@'localhost';
FLUSH PRIVILEGES;
cd /var/www/html/
sudo wget https://framadate.org/files/framadate-latest.tar.gz
sudo tar -xvzf framadate-latest.tar.gz
sudo mv framadate-2.x.x /var/www/html/framadate
sudo chown -R www-data:www-data /var/www/html/framadate/
Create a virtual host file for Framadate
sudo nano /etc/apache2/sites-available/framadate.conf
Add the following lines:
<VirtualHost *:80>
ServerAdmin webmaster@example.com
ServerName framadatedomain.com
DocumentRoot /var/www/html/framadate/
<Directory /var/www/html/framadate/>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/framadate_error.log
CustomLog ${APACHE_LOG_DIR}/framadate_access.log combined
</VirtualHost>
Replace the ServerName
value with your desired domain name.
Enable the Framadate virtual host and restart Apache
sudo a2ensite framadate.conf
sudo systemctl restart apache2
Open your web browser and go to the configured domain name.
Congratulations! You have successfully installed Framadate on Kali Linux Latest.
If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!
Alternatively, for the best virtual desktop, try Shells!