Skip to content

SailorSammyy/zoro.to-clone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zoro.to - Clone

Status: Project Revival in Progress

This project is a revival of an anime streaming platform. Feel free to customize it as you like!

📋 Requirements

System Requirements

  • PHP
  • MySQL
  • Web Server: Apache with mod_rewrite enabled

Development Environment

  • XAMPP (recommended for local development)

🚀 Quick Start

1. Clone the Repository

git clone https://github.com/SailorSammyy/zoro.to-clone.git
cd zoro.to-clone

2. Database Setup

  1. Import the database schema
  2. Create a database named anime (or your preferred name)

3. Configuration

Edit _config.php with your settings:

<?php 
// Database Configuration
$conn = mysqli_connect("localhost", "root", "", "anime") or die("Connection failed");

// Website Settings
$websiteTitle = "Zoro";
$websiteUrl = "//{$_SERVER['SERVER_NAME']}"; // if on localhost then add a slash(/) after the '}' and type the folder name
$websiteLogo = $websiteUrl . "/files/images/logo_zoro.png";
$contactEmail = "your-email@gmail.com";
$version = "1.0";

// Social Links
$discord = "https://dsc.gg/sailorsammyy";
$github = "https://github.com/sailorsammyy";
$twitter = "https://x.com/";

// External Services
$disqus = "https://your-disqus-shortname.disqus.com/embed.js";
$api = "https://your-api-endpoint.com"; // No slash(/) at the end

$banner = $websiteUrl . "/files/images/banner.png";
?>

4. Local Development (XAMPP)

  1. Install XAMPP: Download from apachefriends.org

  2. Enable mod_rewrite

  3. Start Services:

    • Start Apache and MySQL in XAMPP Control Panel
  4. Access Your Site:

    • Visit: http://localhost/zoro

🔧 Configuration Guide

Database Configuration

Parameter Description Example
hostname Database host localhost
username DB username root
password DB password `` (empty for localhost)
database Database name anime

🤝 Contributing

We welcome contributions! Feel free to commit, suggest improvements, or add new features.

📝 License

This project is open source and available under the MIT License.

🙏 Acknowledgements

  • AniWatch API - Provides anime data and streaming links
  • Bootstrap - For responsive design components
  • Font Awesome - For beautiful icons
  • jQuery - For interactive functionality

Community & Support

Join our Discord server!

  • Discord: Join our community for support and discussions
  • Issues: Report bugs or request features on GitHub

⭐ Star this repo if you found it helpful!

Releases

No releases published

Packages

 
 
 

Contributors