Anonymous and private chat
Go to file
2024-07-23 21:08:10 +02:00
admin_login.php Subir archivos a "/" 2024-07-12 23:10:59 +02:00
admin_logout.php Subir archivos a "/" 2024-07-12 23:13:44 +02:00
admin.php Actualizar admin.php 2024-07-23 20:57:33 +02:00
announcements.php Actualizar announcements.php 2024-07-23 20:58:20 +02:00
chat.php Subir archivos a "/" 2024-07-14 14:03:11 +02:00
config.php Actualizar config.php 2024-07-14 15:12:39 +02:00
edit_announcement.php Subir archivos a "/" 2024-07-14 14:03:11 +02:00
fetch_messages.php Subir archivos a "/" 2024-07-14 14:03:11 +02:00
index.php Subir archivos a "/" 2024-07-14 14:03:11 +02:00
invitations.php Actualizar invitations.php 2024-07-23 20:58:49 +02:00
login.php Subir archivos a "/" 2024-07-14 14:03:54 +02:00
logout.php Subir archivos a "/" 2024-07-12 23:10:59 +02:00
manage_accounts.php Añadir manage_accounts.php 2024-07-23 20:50:36 +02:00
news.php Actualizar news.php 2024-07-14 15:19:15 +02:00
README.md Actualizar README.md 2024-07-23 21:08:10 +02:00
register.php Subir archivos a "/" 2024-07-12 23:10:59 +02:00
style.css Subir archivos a "/" 2024-07-14 14:04:08 +02:00

Anonymous Chat

Requirements

  • Web server with PHP 7.x or higher.
  • MySQL database server.
  • Access to phpMyAdmin or any other MySQL client.

Installation Steps

  1. Download and prepare the files:

    • Download all project files (config.php, admin.php, register.php, login.php, chat.php, logout.php, admin_login.php, admin_logout.php...) and place them in the root directory of your web server.
  2. Set up the database:

    • Access your MySQL client (phpMyAdmin or another).

    • Create a new database (e.g., chat_db).

    • Run the following SQL script to create the necessary tables:

      CREATE TABLE chat_rooms (
          id INT AUTO_INCREMENT PRIMARY KEY,
          chat_hash VARCHAR(32) NOT NULL,
          password VARCHAR(255) NOT NULL,
          created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
      );
      
      CREATE TABLE messages (
          id INT AUTO_INCREMENT PRIMARY KEY,
          chat_hash VARCHAR(32) NOT NULL,
          message TEXT NOT NULL,
          timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP
      );
      
      CREATE TABLE invitations (
          id INT AUTO_INCREMENT PRIMARY KEY,
          invitation_link VARCHAR(32) NOT NULL,
          usage_limit INT DEFAULT 0,
          created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
      );
      
      CREATE TABLE announcements (
         id INT AUTO_INCREMENT PRIMARY KEY,
         title VARCHAR(255) NOT NULL,
         content TEXT NOT NULL,
         created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
         updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
      );
      
  3. Configure config.php:

    • Open config.php and set up the database connection parameters:

      <?php
      $host = 'localhost';
      $db = 'chat_db'; // Database name
      $user = 'root'; // MySQL username
      $pass = ''; // MySQL password
      $charset = 'utf8mb4';
      
      $dsn = "mysql:host=$host;dbname=$db;charset=$charset";
      $options = [
          PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
          PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
          PDO::ATTR_EMULATE_PREPARES => false,
      ];
      
      try {
          $pdo = new PDO($dsn, $user, $pass, $options);
      } catch (PDOException $e) {
          throw new PDOException($e->getMessage(), (int)$e->getCode());
      }
      
      function encrypt($data) {
          return openssl_encrypt($data, 'aes-256-cbc', 'your_secret_key', 0, 'your_iv');
      }
      
      function decrypt($data) {
          return openssl_decrypt($data, 'aes-256-cbc', 'your_secret_key', 0, 'your_iv');
      }
      ?>
      
      • Replace 'your_secret_key' and 'your_iv' with your own keys and initialization vectors for encryption.
  4. Set up the administrator:

    • Open admin_login.php and set an admin password:

      if ($_SERVER["REQUEST_METHOD"] == "POST") {
          $password = $_POST['password'];
          if ($password == 'admin_password') { // Change 'admin_password' to your password
              session_start();
              $_SESSION['admin_logged_in'] = true;
              header("Location: admin.php");
              exit();
          } else {
              echo "Invalid password.";
          }
      }
      
  5. Access the admin panel:

    • Open your web browser and go to https://yourdomain.com/admin_login.php.
    • Log in with the admin password you set earlier.
    • Generate invitation links and manage messages from the admin panel.
  6. Register and use the chat:

    • Use the generated invitation links to register for the chat.
    • Log in with the generated password and start chatting.