ZipFileMe

N|Solid

ZipFileMe is a cloud-enabled, mobile-ready, s3 and backblaze b2 integrated File uploading and sharing script. It’s easy to use, easy to install and very handy tool to share any type of files.

Features!

You can also:

Requirements:

Before you start, Download this file

  1. vendor.zip file Download

Installation video for cpanel

  1. How to add SubDomain in Cpanel Watch Video
  2. How to add MySql Database in Cpanel Watch Video
  3. How to add ZipFileMe Files in Cpanel Watch Video
  4. Creating Backup Before installation Watch Video
  5. Installation and Application Setup Watch Video
  6. How to get AWS S3 Key Watch Video
  7. How to get Blackblaze Key Watch Video

Backend access

Admin Route : http://YOUR_DOMAIN/admin
user : superadministrator@zipfile.me
pass : thunder.32

Installation Video for MAMP or cloud server

Watch Video

Apache Laravel virtual host example

<VirtualHost *:80>
    DocumentRoot "/Users/myName/Projects/laravel/public"
    ServerName myLaravel.dev
    <Directory "/Users/myName/Projects/laravel/public">
            AllowOverride All
            Options FollowSymLinks +Indexes
            Order allow,deny
            Allow from all
    </Directory>
</VirtualHost>

Nginx Laravel virtual host example

server {
    listen 80;
    root /usr/share/nginx/html/laravel/public;
    index index.php index.html index.htm
    server_name laravel.dev;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        try_files $uri /index.php =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

Your configurations could be different

Make sure you have setup virtual host currently

Laravel Doc