SoftMystic is a powerful Laravel 12+ FileHippo clone for creating multilingual, SEO-optimized software download websites.
SoftMystic – Laravel Software Download Portal Script
SoftMystic is a modern and fully customizable Laravel-based software download portal script. Designed with performance and user experience in mind, it supports:
- ✅ Multiple languages (i18n ready)
- ✅ Dynamic SEO metadata
- ✅ A sleek and secure admin panel powered by Filament 3
With built-in access control, theme flexibility, and intuitive management tools, SoftMystic makes it easy to launch a professional software listing site — whether you're building a:
- 📱 App showcase
- 💼 Commercial download platform
SoftMystic delivers the tools you need — with style, simplicity, and scalability.
🔑 Key Features
- Laravel 12+: Built on the latest Laravel framework for performance and security
- Filament 3 Admin Panel: Modern and intuitive backend for easy management
- Multilingual Support: Fully translatable with RTL-ready interface
- Built-in ACL: Advanced user roles and permissions system
- SEO Optimized: Control meta titles, descriptions, OpenGraph, and Schema
- 10+ Themes: Switch between multiple built-in themes effortlessly
- One-Click Installer: Quick and simple installation wizard
- Software Categories & Tags: Organize downloads with powerful taxonomy
- Ratings & Reviews: Collect and display user feedback with star ratings
- Download Counter: Track total and individual software downloads
- Custom Pages: Create About, Terms, Contact pages from the admin panel
- Responsive Design: Fully mobile-friendly for all devices
- Custom Code Injection: Add scripts, ads, or tracking codes site-wide
- Analytics Ready: Easily add Google Analytics or other tracking tools
- Clean Codebase: Developer-friendly structure with clear documentation
- Sitemap Generation: Built in cron job to generate sitemap index for better SEO
🛠️ Server Requirements
- PHP 8.2 or higher
- MySQL 5.7+ or MariaDB
- Apache or Nginx Web Server
- Composer
- OpenSSL, PDO, Mbstring, Tokenizer, XML, Ctype, JSON, BCMath extensions enabled
- Fileinfo PHP extension (required for file uploads)
- Mod_Rewrite module enabled (Apache)
- Ability to create symbolic links (
symlink()
)
SoftiMystic Installation Guide
1. Upload the Files
Unzip the package you downloaded from Codester. You will find two folders:
- upload – Contains the website files
- documentation – This guide
Upload everything inside the upload
folder to your web hosting account.
2. Point Your Domain to the Public Folder
Your domain (e.g., yourdomain.com
) must point to the public
folder inside the upload directory.
- Using cPanel/DirectAdmin: Set the document root to something like
/home/youruser/public_html/public
. - On VPS or custom server: Configure Apache/Nginx to serve from the
public
folder inside the script directory.
Important: Do not point your domain to the root of the upload folder — always to the public
subfolder!
3. Start the Installer
Open your browser and navigate to:
http://yourdomain.com/install
The installer will guide you through the following steps:
- Check server requirements
- Enter database details
- Create an admin account
- Complete the installation
After finishing, you'll be redirected to the admin login page. Use the admin credentials you created to log in.
4. Enable Daily Sitemap Generation (Optional)
SoftiMystic supports automatic sitemap generation.
To generate manually:
php artisan sitemap:generate
The sitemap index will be available at:
https://yourdomain.com/sitemap.xml
To automate daily sitemap creation, add the following cron job:
0 2 * * * cd /path-to-your-project && php artisan sitemap:generate >> /dev/null 2>&1
This example runs the command daily at 2:00 AM. Adjust the path and time as needed.