» » Cryptomania Exchange Pro v2.0.4 - cryptocurrency trade

Cryptomania Exchange Pro v2.0.4 - cryptocurrency trade

Cryptomania Exchange Pro v2.0.4 - cryptocurrency trade

Refferal system, BTC Node integrated, code optimized, More reports added, Public API integrated, Captcha system...

Demo: https://codecanyon.net/item/cryptomania-exchange-pro/23036775

https://www72.zippyshare.com/v/hp9Oc2y6/file.html
http://ul.to/8mjr9uob
https://www.upload.ee/files/12204296/cryptomania-204.rar.html
https://ulozto.net/ghxm2SjQ4OqW
https://www.sendspace.com/file/d00kdt
https://novafile.com/ln1b4svxi9h9
https://nippyshare.com/v/47ef96
https://www.mirrored.to/files/0EZHUXZM/cryptomania-204.rar_links
https://mirrorace.org/m/4mGgA
https://hxfile.co/644iwv1xgdjn
https://dropapk.to/y55n0yujsnzn
http://dl.free.fr/brlRutZ1g
https://dbree.org/v/415f47
https://bayfiles.com/t6O684Peo9
https://anonfiles.com/33Oe8fPeod
https://1fichier.com/?wydlgjhuw7xc37uty6nu

This file has UNTOUCHED status - (original developer code without any tampering done)

Related Articles

Comments(3)

    1. femo1222 wrote:
      how to install this script

      tutturials on how to install data base
      1. noveltv wrote:
        How To Install Cryptomania
        Pre Requisites
        Linux Server
        Minimum RAM 2GB
        Minimum Space 40GB
        PHP 7.2+
        Database (Preferred MYSQL 5.7+)
        Apache 2.4/Nginx Server
        Process Control System (Preferred Supervisord)
        PHP Dependency Manager (Preferred Composer)
        Redis Server For Queue Management
        Node Package Manager (Preferred NPM)
        Installation Process
        Copy the project to the server.
        Unzip project to preferred location. ex: /var/www/html/
        Make a copy of .env.example and rename it to .env
        Make a database with collation named utf8mb4_unicode_ci
        Config .env
        APP_NAME="Cryptomania Crypto"
        APP_ENV=production
        APP_KEY=
        APP_DEBUG=false
        APP_URL=http://dev.cryptomania.com

        LOG_CHANNEL=stack

        DB_CONNECTION=mysql
        DB_HOST=127.0.0.1
        DB_PORT=3306
        DB_DATABASE=
        DB_USERNAME=
        DB_PASSWORD=

        BROADCAST_DRIVER=redis
        CACHE_DRIVER=file
        SESSION_DRIVER=file
        SESSION_LIFETIME=120
        QUEUE_DRIVER=redis

        REDIS_HOST=127.0.0.1
        REDIS_PASSWORD=null
        REDIS_PORT=6379

        MAIL_DRIVER=smtp
        MAIL_HOST=
        MAIL_PORT=
        MAIL_USERNAME=
        MAIL_PASSWORD=
        MAIL_ENCRYPTION=
        MAIL_FROM_ADDRESS=
        MAIL_FROM_NAME=

        ADMIN_SETTING_STORAGE=database
        ROUTE_STORAGE=cache

        Give write permission to bootstrap/cache and storage directory
        Run following command
        php atrisan key:generate
        composer install
        php artisan migrate --seed
        php artisan storage:link
        Setup Supervisor
        Create 2 new supervisord config with the following configuration

        1. Horizon Supervisor Config
        ```
        [program:cryptomania]
        process_name=%(program_name)s
        command=php /var/www/html/cryptomania/artisan horizon
        autostart=true
        autorestart=true
        user=rana
        redirect_stderr=true
        stdout_logfile=/var/log/cryptomania-horizon.log
        ```
        Change `program` `command path` `user` `logfile path`

        2. Echo Server Config
        [program:cryptomania-echo-server]
        process_name=%(program_name)s
        command=laravel-echo-server start --dir=/var/www/html/cryptomania
        autostart=true
        autorestart=true
        user=rana
        redirect_stderr=true
        stdout_logfile=/var/log/cryptomania-echo-server.log
        Change program command path user logfile path

        After these configurations run following command
        servervisorctl reread
        servervisorctl update
        servervisorctl start all

        php artisan clear:all
        php artisan horizon terminate
    2. noveltv wrote:
      How To Install Cryptomania
      Pre Requisites
      Linux Server
      Minimum RAM 2GB
      Minimum Space 40GB
      PHP 7.2+
      Database (Preferred MYSQL 5.7+)
      Apache 2.4/Nginx Server
      Process Control System (Preferred Supervisord)
      PHP Dependency Manager (Preferred Composer)
      Redis Server For Queue Management
      Node Package Manager (Preferred NPM)
      Installation Process
      Copy the project to the server.
      Unzip project to preferred location. ex: /var/www/html/
      Make a copy of .env.example and rename it to .env
      Make a database with collation named utf8mb4_unicode_ci
      Config .env
      APP_NAME="Cryptomania Crypto"
      APP_ENV=production
      APP_KEY=
      APP_DEBUG=false
      APP_URL=http://dev.cryptomania.com

      LOG_CHANNEL=stack

      DB_CONNECTION=mysql
      DB_HOST=127.0.0.1
      DB_PORT=3306
      DB_DATABASE=
      DB_USERNAME=
      DB_PASSWORD=

      BROADCAST_DRIVER=redis
      CACHE_DRIVER=file
      SESSION_DRIVER=file
      SESSION_LIFETIME=120
      QUEUE_DRIVER=redis

      REDIS_HOST=127.0.0.1
      REDIS_PASSWORD=null
      REDIS_PORT=6379

      MAIL_DRIVER=smtp
      MAIL_HOST=
      MAIL_PORT=
      MAIL_USERNAME=
      MAIL_PASSWORD=
      MAIL_ENCRYPTION=
      MAIL_FROM_ADDRESS=
      MAIL_FROM_NAME=

      ADMIN_SETTING_STORAGE=database
      ROUTE_STORAGE=cache

      Give write permission to bootstrap/cache and storage directory
      Run following command
      php atrisan key:generate
      composer install
      php artisan migrate --seed
      php artisan storage:link
      Setup Supervisor
      Create 2 new supervisord config with the following configuration

      1. Horizon Supervisor Config
      ```
      [program:cryptomania]
      process_name=%(program_name)s
      command=php /var/www/html/cryptomania/artisan horizon
      autostart=true
      autorestart=true
      user=rana
      redirect_stderr=true
      stdout_logfile=/var/log/cryptomania-horizon.log
      ```
      Change `program` `command path` `user` `logfile path`

      2. Echo Server Config
      [program:cryptomania-echo-server]
      process_name=%(program_name)s
      command=laravel-echo-server start --dir=/var/www/html/cryptomania
      autostart=true
      autorestart=true
      user=rana
      redirect_stderr=true
      stdout_logfile=/var/log/cryptomania-echo-server.log
      Change program command path user logfile path

      After these configurations run following command
      servervisorctl reread
      servervisorctl update
      servervisorctl start all

      php artisan clear:all
      php artisan horizon terminate

Add a Comment / Request Re-upload / Post Mirror Links

Information
Guests are not allowed to comment. Please register for a free account.