• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Soundkit - Social Music Sharing Platform

Soundkit - Social Music Sharing Platform v2.4.2 Nulled

No permission to download

Babak

Well-known member
Staff member
Administrator
May 24, 2018
81,008
150,318
120
33
Babak 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...
 
Babak 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
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: Babak
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: Babak
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 @Babak and the others collaborators, I know that time is precious. 💪
 
  • Love
Reactions: Babak
sc.png

hello friends, I'm having problems installing SoundKit on localhost, please help me, in the screenshot there is the error PLEASE!!!!
 
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
 
Currently play views are only counted for registered users, anyone know how to include public/guests play counts
 
Please, is this Music Engine or

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

 
There is error when trying to upload song using mobile, the website says the file is not supported Could anyone please help?
 
Please does anyone know how to resolve this issue: When I try to upload a song, the upload loads forever. Does anyone knows the solution, please?
 

Attachments

  • bandicam 2024-02-20 15-42-15-964.jpg
    bandicam 2024-02-20 15-42-15-964.jpg
    21 KB · Views: 4
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock