Sponzy - Support Creators Content Script

Sponzy - Support Creators Content Script v5.9

No permission to download

memefetish

Member
Jul 29, 2020
33
42
18
Tomz updated Sponzy - Support Creators Content Script with a new update entry:

Sponzy v4.6.0 Untouched

Download Sponzy v4.6.0 - Support Creators Content Script Nulled Free
Update v4.6 // 27 Jan 2023

[Bug Fix] Time on stories duplicate
[Bug Fix] Views on posts with music
[Bug Fix] Stories with text disappeared on close
[Bug Fix] Post locked on Explore page (Button not working)
[Bug Fix] Pay Per View with Stripe
[Bug Fix] Tax on CCBill when is off
[Bug Fix] Avoid activating captcha if the credentials do not exist
[Bug Fix] Live streaming set-up
[Bug Fix] Job retry (duplicate jobs)
[Bug...

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

theerawat2538

New member
Aug 1, 2022
11
1
3
I need a way to modify endpoint from wasabi

https://{WAS_BUCKET}.{WAS_DEFAULT_REGION}.wasabisys.com/uploads/updates/videos/163dfa5f9380831675601401y0ej9xrrt4tc4gkksevr.mp4

Change to DNS from cloudflare.com Type CNAME

https://{customCDNdomain.com}/uploads/updates/videos/163dfa5f9380831675601401y0ej9xrrt4tc4gkksevr.mp4
 
Last edited:

metalsunny

Active member
May 6, 2022
608
196
43
Does anybody know where i can change the text Sponzy is designed to help content creator...
Screenshot_20230207-103636.png
 

theerawat2538

New member
Aug 1, 2022
11
1
3
I need a way to modify endpoint from wasabi

https://{WAS_BUCKET}.{WAS_DEFAULT_REGION}.wasabisys.com/uploads/updates/videos/163dfa5f9380831675601401y0ej9xrrt4tc4gkksevr.mp4

Change to DNS from cloudflare.com Type CNAME

https://{customCDNdomain.com}/uploads/updates/videos/163dfa5f9380831675601401y0ej9xrrt4tc4gkksevr.mp4
No one answered the question. I found the answer myself

change it from the app/Helper.php folder line 874:
PHP:
    public static function getFile($path)
    {
        if (env('FILESYSTEM_DRIVER') == 'backblaze') {
             return 'https://'.env('BACKBLAZE_BUCKET').'.'.env('BACKBLAZE_BUCKET_REGION').'/'.$path;
        } elseif (env('FILESYSTEM_DRIVER') == 'dospace' && env('DOS_CDN')) {
            return 'https://'.env('DOS_BUCKET').'.'.env('DOS_DEFAULT_REGION').'.cdn.digitaloceanspaces.com/'.$path;
        } elseif (env('FILESYSTEM_DRIVER') == 'wasabi' && env('WAS_CDN') == '1') {
            return 'https://'.env('WAS_CUSTOM_ENDPOINT').'/'.$path;
        } else {
            return Storage::url($path);
        }
    }

change it from the .env line 61:

Code:
WAS_ACCESS_KEY_ID=test

WAS_SECRET_ACCESS_KEY=test

WAS_DEFAULT_REGION=test

WAS_BUCKET=test

WAS_CUSTOM_ENDPOINT=s3.test.net

WAS_CDN=1

Use Cloudflare CDN add a CNAME record connected to Wasabi.
 
  • Like
Reactions: Bubabulyt

theerawat2538

New member
Aug 1, 2022
11
1
3
If you're looking for a "Policies" setting, only access your files through Cloudflare.

JSON:
{
  "Id": "S3PolicyId1",
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowRead",
      "Effect": "Allow",
      "Principal": {
        "AWS": "*"
      },
      "Action": "s3:GetObject",
      "Resource": [
        "arn:aws:s3:::my-bucket",
        "arn:aws:s3:::my-bucket/*"
      ]
    },
    {
      "Sid": "IPBasedNarrowFurther",
      "Effect": "Deny",
      "Principal": {
        "AWS": "*"
      },
      "Action": "s3:GetObject",
      "Resource": [
        "arn:aws:s3:::my-bucket",
        "arn:aws:s3:::my-bucket/*"
      ],
      "Condition": {
        "NotIpAddress": {
          "aws:SourceIp": [
            "173.245.48.0/20",
            "103.21.244.0/22",
            "103.22.200.0/22",
            "103.31.4.0/22",
            "141.101.64.0/18",
            "108.162.192.0/18",
            "190.93.240.0/20",
            "188.114.96.0/20",
            "197.234.240.0/22",
            "198.41.128.0/17",
            "162.158.0.0/15",
            "104.16.0.0/13",
            "104.24.0.0/14",
            "172.64.0.0/13",
            "131.0.72.0/22"
          ]
        }
      }
    }
  ]
}
***Please be sure to replace the 'bucket-name' in the above document with Your Bucket Name.

Cloudflare IP addresses: >>> https://www.cloudflare.com/ips/
 

metalsunny

Active member
May 6, 2022
608
196
43
I have problem with setting up amazon s3 bucket for this script. I did all i can and then generate access and public key and set it up on sponzy but when i upload file on sponzy user page. I get Error.
Can someone help me. I don't know if there is something i am not doing right on s3 settings. If you have setup your s3 and its working pls kindly assist me. Thanks
 

theerawat2538

New member
Aug 1, 2022
11
1
3
1676303635279.png

I encountered a problem wasabisys.com Image not showing.
can be fixed as follows.

Edit file ./resources/views/includes/media-post.blade.php line 8 & 39:
Code:
// line 8
$urlImg = Helper::getFile(config('path.images').$media->image);

// line 39
$urlMedia =  Helper::getFile(config('path.images').$media->image);

1676303685234.png
 

metalsunny

Active member
May 6, 2022
608
196
43
1676303635279.png

I encountered a problem wasabisys.com Image not showing.
can be fixed as follows.

Edit file ./resources/views/includes/media-post.blade.php line 8 & 39:
Code:
// line 8
$urlImg = Helper::getFile(config('path.images').$media->image);

// line 39
$urlMedia =  Helper::getFile(config('path.images').$media->image);

1676303685234.png
What do we need to change in both line you mentioned... is it to the code u posted or what ?
 

theerawat2538

New member
Aug 1, 2022
11
1
3
What do we need to change in both line you mentioned... is it to the code u posted or what ?
Code:
// line 8
$urlImg = $media->img_type == 'gif' ? Helper::getFile(config('path.images').$media->image) : url("files/storage", $response->id).'/'.$media->image;

// line 39
$urlMedia =  $media->img_type == 'gif' ? Helper::getFile(config('path.images').$media->image) : url("files/storage", $response->id).'/'.$media->image;

edit to

Code:
// line 8
$urlImg = Helper::getFile(config('path.images').$media->image);

// line 39
$urlMedia =  Helper::getFile(config('path.images').$media->image);
 

metalsunny

Active member
May 6, 2022
608
196
43
Code:
// line 8
$urlImg = $media->img_type == 'gif' ? Helper::getFile(config('path.images').$media->image) : url("files/storage", $response->id).'/'.$media->image;

// line 39
$urlMedia =  $media->img_type == 'gif' ? Helper::getFile(config('path.images').$media->image) : url("files/storage", $response->id).'/'.$media->image;

edit to

Code:
// line 8
$urlImg = Helper::getFile(config('path.images').$media->image);

// line 39
$urlMedia =  Helper::getFile(config('path.images').$media->image);
Ok thanks let me try
 

metalsunny

Active member
May 6, 2022
608
196
43
Bro. Pls does tgis allow wasabi to store all file types from image, zip, mp4 mp3 e,t.c as required by the script ?
 

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