Soundkit - Social Music Sharing Platform

Soundkit - Social Music Sharing Platform v2.4.2 Nulled

No permission to download

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,061
111,714
120
Tomz submitted a new resource:

Soundkit - Social Music Sharing Platform - Download Soundkit - Social Music Sharing Platform Nulled Free CodeCanyon 22562120

23330
Download Soundkit - Social Music Sharing Platform Nulled Free CodeCanyon 22562120
Soundkit is a Social Music Sharing Platform similar with Mixcloud, SoundCloud, allowing users to upload their music online and share with the world

Demo Links
User And Admin Demo – User demo

Create your account to test, you will also have admin access but you cannot make any changes

User Features...

Read more about this resource...
 

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,061
111,714
120
Tomz updated Soundkit - Social Music Sharing Platform with a new update entry:

Soundkit v2.4.2 Nulled

Download Soundkit v2.4.2 - Social Music Sharing Platform Nulled Free
Version 2.4.2

  • ADDED Condition to music embed player to prevent playing next tracks
  • ADDED number of track views in the charts
  • ADDED ability to add less amount for adverts plugin
  • ADDED ability for ads owner to see their ads for adert modulev
  • Prevent creating of ads when wallet is low
  • FIXED little problem in user roles
Version 2.4.1
  • ADDED ability to edit genre...

Read the rest of this update entry...
 
  • Like
Reactions: toufic

jonathankurk

Member
Sep 16, 2020
23
25
13
Argentina
First, sorry for my english.

I was working the Soudkit script with docker, and was need support for custom host (IP/DOMAIN: PORT).

By default this script does not have support for this, then the site it did not load correctly.

I had to make a few simple modifications.

I hope to help someone who has the same need.

Add Support for host: port. Eg. http://192.168.0.5:8074

Issue: function getHost() replace ": PORT" and dont working with http://url: port

Solution:

1- Add custom variable manually: custom_host

set custom_host

- ../soundkit/config.php

Eg.

PHP:
     ...

    /**
    * Option to enable https
    */

    'https' => false,

    /**
    * CUSTOM VARIABLE
    * Option to set MANUALLY Host
    * Format: IP/DOMAIN: PORT
    * Eg: 192.168.0.5:8074
    * PORT is optional
    */

    'custom_host' => '192.168.0.5:8074',

    /**
    * cookie path
    */

    'cookie_path' => '/',
   
    ...

2- Change function getHost() in file utils.php to give support variable "custom_host" of the config.php file

- ../soundkit/app/vendor/utils.php

PHP:
// New Function

function getHost(){
    $host = config('custom_host');
    return $host;
}

3- Enjoy (y)
 
Last edited:
  • Love
Reactions: tanierlyons

jonathankurk

Member
Sep 16, 2020
23
25
13
Argentina
Other solution more easy for support (IP/DOMAIN PORT). Eg. http://192.168.0.5:8074

Changes: Comment 2 lines in 2 files.

1- Comment line #34 in file utils.php -> function getHost()

path: ../soundkit/app/vendor/utils.php


//$host = strtolower(preg_replace('/:\d+$/', '', trim($host)));

Code:

PHP:
...

function getHost(){
    $request = $_SERVER;
    $host = (isset($request['HTTP_HOST'])) ? $request['HTTP_HOST'] : $request['SERVER_NAME'];

    //remove unwanted characters
    #$host = strtolower(preg_replace('/:\d+$/', '', trim($host)));

    //prevent Dos attack
    if ($host && '' !== preg_replace('/(?:^\[)?[a-zA-Z0-9-:\]_]+\.?/', '', $host)) {
        die();
    }

    return $host;
}

...

2- Comment line #1281 in file Request.php -> public function getHost()

path: ../soundkit/app/vendor/symfony/http-foundation/Request.php

//$host = strtolower(preg_replace('/:\d+$/', '', trim($host)));

Code:

PHP:
    ...

    if ($this->isFromTrustedProxy() && $host = $this->getTrustedValues(self::HEADER_CLIENT_HOST)) {
        $host = $host[0];
    } elseif (!$host = $this->headers->get('HOST')) {
        if (!$host = $this->server->get('SERVER_NAME')) {
            $host = $this->server->get('SERVER_ADDR', '');
        }
    }

    // trim and remove port number from host
    // host is lowercase as per RFC 952/2181
    //$host = strtolower(preg_replace('/:\d+$/', '', trim($host)));

    ...

3- Enjoy.
 
Last edited:
  • Like
Reactions: tanierlyons

jonathankurk

Member
Sep 16, 2020
23
25
13
Argentina
I really appreciate the alert system when resources are updated and the method of having only 1 resource per post. Everything is very organized. Thank you very much @Tomz and the others collaborators, I know that time is precious. 💪
 
  • Love
Reactions: tanierlyons

root_toor

New member
Jun 6, 2020
5
0
1
sc.png

hello friends, I'm having problems installing SoundKit on localhost, please help me, in the screenshot there is the error PLEASE!!!!
 

jonathankurk

Member
Sep 16, 2020
23
25
13
Argentina
sc.png

hello friends, I'm having problems installing SoundKit on localhost, please help me, in the screenshot there is the error PLEASE!!!!




Hello man, are warnings from PHP since surely you are using a version higher than PHP 5.6 with this script. You can try to hide the warnings messages. The script will still work normally.

Solution:
Edit the php.ini file

I see that you should have the file in the following path:

C:\xampp\php\php.ini

Add the following command to the end of the file:


error_reporting = E_ALL ^ E_DEPRECATED

Restart Apache service
 

YuviDX

New member
Nov 30, 2020
24
5
3
Currently play views are only counted for registered users, anyone know how to include public/guests play counts
 

Akin

Member
Jul 14, 2020
107
8
18
Please, is this Music Engine or

Soundkit? I downloaded the file but I found MusicEngine in it?​

 

Akin

Member
Jul 14, 2020
107
8
18
There is error when trying to upload song using mobile, the website says the file is not supported Could anyone please help?
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu