66biolinks - Bio Links, URL Shortener, QR Codes & Web Tools

66biolinks - Bio Links, URL Shortener, QR Codes & Web Tools v56.0.0 Regular Nulled

No permission to download

satishbk79

Member
Apr 12, 2019
74
18
8
Hello everyone. Installed the script everything works fine. But strangely enough, there have been very frequent registrations over the last week of about 250 people. Of these, only 30 people have activated their account via mail and not a single person who would create a full-fledged bio link page. I tried to find a captcha, but it is not provided in the script ... Has anyone come across a similar one? and How to solve a problem that is clearly related to spam
I too faced the same problem, for temp disabled new registrations. Even I am waiting for the solution dear.
 

marcds

New member
May 14, 2022
0
0
0
Did you guys know that after weeks of searching for a good DIY link shortener service i was so tempted to buy the one offered on appsumo. and guess what.. one of the sites on app sumo was built using biolinks!!!! i was surprised to see it was on codecanyon and eventually i found it here.
 
  • Haha
Reactions: MrSam_1

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
24,129
27,392
120
Did you guys know that after weeks of searching for a good DIY link shortener service i was so tempted to buy the one offered on appsumo. and guess what.. one of the sites on app sumo was built using biolinks!!!! i was surprised to see it was on codecanyon and eventually i found it here.
One of the reasons I wanna purchase the Extended.. So that I can publish my site on Apsumo, And make some Greens
 
  • Like
  • Haha
Reactions: martina32 and Jorj

gcmygc

New member
Dec 30, 2020
4
2
3
Hello I explain my problem, I installed the latest version available here 11.1
Everything works fine except the captcha, I entered the recaptcha keys and activate in the admin,
now when I want to connect I have recaptcha which appears but it tells me "the captcha code is invalid"

So I went to phpmyadmin to put the default captcha line back in settings:

{"type": "basic", "recaptcha_public_key": "", "recaptcha_private_key": "", "login_is_enabled": 0, "register_is_enabled": 0, "lost_password_is_enabled": 0, "resend_activation_is_enabled": 0}

I registered but the problem is what I modify in this line on the login page I always have recaptca displayed !!
 
  • Like
Reactions: icko11

shemmy

New member
Nov 24, 2020
14
1
3
I try to install version 11. After I click "finish installation" button. Nothing happened. I don't know what step I'm doing wrong.
 

ShoaibAOfficial

New member
Jul 27, 2022
1
1
3
Installed 11.0 working perfectly ,
first i haved a lot of errors and everything was becuse of an older php, upgraded to 7.4 on cpanel and all the errors are gone, except for some problems with HTTPS, so i modified htacces to this:

PHP:
Options All -Indexes

RewriteEngine On
RewriteBase /

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://YOURURL/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?altum=$1 [QSA,L]

<Files debug.log>
Order allow,deny
Deny from all
</Files>

<IfModule mod_expires.c>
  ExpiresActive On

  # Images
  ExpiresByType image/jpeg "access plus 1 year"
  ExpiresByType image/gif "access plus 1 year"
  ExpiresByType image/png "access plus 1 year"
  ExpiresByType image/webp "access plus 1 year"
  ExpiresByType image/svg+xml "access plus 1 year"
  ExpiresByType image/x-icon "access plus 1 year"

  # CSS, JavaScript
  ExpiresByType text/css "access plus 1 month"
  ExpiresByType text/javascript "access plus 1 month"
  ExpiresByType application/javascript "access plus 1 month"
</IfModule>

From here i start to have the spam accounts but no one complete the registration process, so after making the SMTP server to work and the test email, activation emails starts to work and give free access to all that F....g bots.. Recaptcha v2 was the problem solver, all the bots are gone.

None a single error from now on, i also modified a lot of things like:
- Removed Pixels
- Removed Custom domains
- Removed UTM
- Translated everything to spanish
- Add a new payment method (coding in proress)

Everythig works perfect in harmony, so im cosidering not to update to 11.1 with the steps they say like overwriting all the files, if you look at the changes the are not so much, so i will search for the files that has been changed and add or remove the codes, also the language pack only add 4 o 5 lines, not a lot.

If i can help anyone just let me know.
 
Last edited:
  • Like
Reactions: bugoboy22

ShoaibAOfficial

New member
Jul 27, 2022
1
1
3
hey @bikkesbakker , i would like to remove Pixels, UTM and some blocks like Soundcloud, Spotify, Twitch, how do i go about to do that?
No problem,

To remove Pixels you need to simply remove it from the menu:
in : themes\altum\views\partials\menu.php

remove the line 57 and 58 (blanck one):
PHP:
                            <a class="dropdown-item" href="<?= url('projects') ?>"><i class="fa fa-fw fa-sm fa-project-diagram mr-1"></i> <?= language()->projects->menu ?></a>

---->                           <a class="dropdown-item" href="<?= url('pixels') ?>"><i class="fa fa-fw fa-sm fa-adjust mr-1"></i> <?= language()->pixels->menu ?></a>

                            <div class="dropdown-divider"></div>

So there is no access, unless they go directly to the URL yoursite/pixels , but only people who know about the script will go there , i will delete that in some time and post here the changes.

To modify the "biolink blocks" just do this:

To remove Soundcloud,, spotify, etc.. you need to remove lines from
\app\includes\biolink_blocks.php

PHP:
        'soundcloud' => [
            'type' => 'default',
            'icon' => 'fab fa-soundcloud',
            'color' => '#ff8800',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['soundcloud.com']
        ],
FROM HERE        'spotify' => [
            'type' => 'default',
            'icon' => 'fab fa-spotify',
            'color' => '#1db954',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['open.spotify.com']
TO HERE will remove Spotify        ],
        'youtube' => [
            'type' => 'default',
            'icon' => 'fab fa-youtube',
            'color' => '#ff0000',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['www.youtube.com', 'youtu.be']
        ],

Remove UTM, from the plan settings

Also remove UTM from statistics:
From line 85 to 90, themes\altum\views\link\statistics.php

And remove UTM, pixels, etc... from the plans:
Line 22 is UTM: app\includes\simple_user_plan_settings.php

From:
\themes\altum\views\partials\plan_features.php
Lines 11 to 17 is Pixels

and from:
\themes\altum\views\partials\plans_plan_content.php
Lines 8 to 11 is Pixels


If i miss something let me know.
 
  • Like
Reactions: bugoboy22 and Jorj

marcds

New member
May 14, 2022
0
0
0
No problem,

To remove Pixels you need to simply remove it from the menu:
in : themes\altum\views\partials\menu.php

remove the line 57 and 58 (blanck one):
PHP:
                            <a class="dropdown-item" href="<?= url('projects') ?>"><i class="fa fa-fw fa-sm fa-project-diagram mr-1"></i> <?= language()->projects->menu ?></a>

---->                           <a class="dropdown-item" href="<?= url('pixels') ?>"><i class="fa fa-fw fa-sm fa-adjust mr-1"></i> <?= language()->pixels->menu ?></a>

                            <div class="dropdown-divider"></div>

So there is no access, unless they go directly to the URL yoursite/pixels , but only people who know about the script will go there , i will delete that in some time and post here the changes.

To modify the "biolink blocks" just do this:

To remove Soundcloud,, spotify, etc.. you need to remove lines from
\app\includes\biolink_blocks.php

PHP:
        'soundcloud' => [
            'type' => 'default',
            'icon' => 'fab fa-soundcloud',
            'color' => '#ff8800',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['soundcloud.com']
        ],
FROM HERE        'spotify' => [
            'type' => 'default',
            'icon' => 'fab fa-spotify',
            'color' => '#1db954',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['open.spotify.com']
TO HERE will remove Spotify        ],
        'youtube' => [
            'type' => 'default',
            'icon' => 'fab fa-youtube',
            'color' => '#ff0000',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['www.youtube.com', 'youtu.be']
        ],

Remove UTM, from the plan settings

Also remove UTM from statistics:
From line 85 to 90, themes\altum\views\link\statistics.php

And remove UTM, pixels, etc... from the plans:
Line 22 is UTM: app\includes\simple_user_plan_settings.php

From:
\themes\altum\views\partials\plan_features.php
Lines 11 to 17 is Pixels

and from:
\themes\altum\views\partials\plans_plan_content.php
Lines 8 to 11 is Pixels


If i miss something let me know.
you are awesome. Let me try all this out. I know the original dev isn't very helpful and you guys at Babiato offer so much help and knowledge! thanks again @bikkesbakker i'll update again tonight :)
 
  • Like
Reactions: bikkesbakker

ShoaibAOfficial

New member
Jul 27, 2022
1
1
3
you are awesome. Let me try all this out. I know the original dev isn't very helpful and you guys at Babiato offer so much help and knowledge! thanks again @bikkesbakker i'll update again tonight :)
You welcome,

And really let me know if i miss something, i change a lot of files and i dont have all in my head :) (i will make a changelog from now on to help more precisely)
 

bugoboy22

Member
Feb 4, 2021
50
38
18
Installed 11.0 working perfectly ,
first i haved a lot of errors and everything was becuse of an older php, upgraded to 7.4 on cpanel and all the errors are gone, except for some problems with HTTPS, so i modified htacces to this:

PHP:
Options All -Indexes

RewriteEngine On
RewriteBase /

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://YOURURL/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?altum=$1 [QSA,L]

<Files debug.log>
Order allow,deny
Deny from all
</Files>

<IfModule mod_expires.c>
  ExpiresActive On

  # Images
  ExpiresByType image/jpeg "access plus 1 year"
  ExpiresByType image/gif "access plus 1 year"
  ExpiresByType image/png "access plus 1 year"
  ExpiresByType image/webp "access plus 1 year"
  ExpiresByType image/svg+xml "access plus 1 year"
  ExpiresByType image/x-icon "access plus 1 year"

  # CSS, JavaScript
  ExpiresByType text/css "access plus 1 month"
  ExpiresByType text/javascript "access plus 1 month"
  ExpiresByType application/javascript "access plus 1 month"
</IfModule>

From here i start to have the spam accounts but no one complete the registration process, so after making the SMTP server to work and the test email, activation emails starts to work and give free access to all that F....g bots.. Recaptcha v2 was the problem solver, all the bots are gone.

None a single error from now on, i also modified a lot of things like:
- Removed Pixels
- Removed Custom domains
- Removed UTM
- Translated everything to spanish
- Add a new payment method (coding in proress)

Everythig works perfect in harmony, so im cosidering not to update to 11.1 with the steps they say like overwriting all the files, if you look at the changes the are not so much, so i will search for the files that has been changed and add or remove the codes, also the language pack only add 4 o 5 lines, not a lot.

If i can help anyone just let me know.
What payment method are you implementing if you don't mind ?
 

umair546

New member
May 31, 2022
0
0
0
No problem,

To remove Pixels you need to simply remove it from the menu:
in : themes\altum\views\partials\menu.php

remove the line 57 and 58 (blanck one):
PHP:
                            <a class="dropdown-item" href="<?= url('projects') ?>"><i class="fa fa-fw fa-sm fa-project-diagram mr-1"></i> <?= language()->projects->menu ?></a>

---->                           <a class="dropdown-item" href="<?= url('pixels') ?>"><i class="fa fa-fw fa-sm fa-adjust mr-1"></i> <?= language()->pixels->menu ?></a>

                            <div class="dropdown-divider"></div>

So there is no access, unless they go directly to the URL yoursite/pixels , but only people who know about the script will go there , i will delete that in some time and post here the changes.

To modify the "biolink blocks" just do this:

To remove Soundcloud,, spotify, etc.. you need to remove lines from
\app\includes\biolink_blocks.php

PHP:
        'soundcloud' => [
            'type' => 'default',
            'icon' => 'fab fa-soundcloud',
            'color' => '#ff8800',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['soundcloud.com']
        ],
FROM HERE        'spotify' => [
            'type' => 'default',
            'icon' => 'fab fa-spotify',
            'color' => '#1db954',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['open.spotify.com']
TO HERE will remove Spotify        ],
        'youtube' => [
            'type' => 'default',
            'icon' => 'fab fa-youtube',
            'color' => '#ff0000',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['www.youtube.com', 'youtu.be']
        ],

Remove UTM, from the plan settings

Also remove UTM from statistics:
From line 85 to 90, themes\altum\views\link\statistics.php

And remove UTM, pixels, etc... from the plans:
Line 22 is UTM: app\includes\simple_user_plan_settings.php

From:
\themes\altum\views\partials\plan_features.php
Lines 11 to 17 is Pixels

and from:
\themes\altum\views\partials\plans_plan_content.php
Lines 8 to 11 is Pixels


If i miss something let me know.
Yes i will, i owe to this community for the script so i will help and share everything.

how to make the script to add function like tap.link which you can swipe to new page. any idea?
 

umair546

New member
May 31, 2022
0
0
0
Installed 11.0 working perfectly ,
first i haved a lot of errors and everything was becuse of an older php, upgraded to 7.4 on cpanel and all the errors are gone, except for some problems with HTTPS, so i modified htacces to this:

PHP:
Options All -Indexes

RewriteEngine On
RewriteBase /

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://YOURURL/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?altum=$1 [QSA,L]

<Files debug.log>
Order allow,deny
Deny from all
</Files>

<IfModule mod_expires.c>
  ExpiresActive On

  # Images
  ExpiresByType image/jpeg "access plus 1 year"
  ExpiresByType image/gif "access plus 1 year"
  ExpiresByType image/png "access plus 1 year"
  ExpiresByType image/webp "access plus 1 year"
  ExpiresByType image/svg+xml "access plus 1 year"
  ExpiresByType image/x-icon "access plus 1 year"

  # CSS, JavaScript
  ExpiresByType text/css "access plus 1 month"
  ExpiresByType text/javascript "access plus 1 month"
  ExpiresByType application/javascript "access plus 1 month"
</IfModule>

From here i start to have the spam accounts but no one complete the registration process, so after making the SMTP server to work and the test email, activation emails starts to work and give free access to all that F....g bots.. Recaptcha v2 was the problem solver, all the bots are gone.

None a single error from now on, i also modified a lot of things like:
- Removed Pixels
- Removed Custom domains
- Removed UTM
- Translated everything to spanish
- Add a new payment method (coding in proress)

Everythig works perfect in harmony, so im cosidering not to update to 11.1 with the steps they say like overwriting all the files, if you look at the changes the are not so much, so i will search for the files that has been changed and add or remove the codes, also the language pack only add 4 o 5 lines, not a lot.

If i can help anyone just let me know.
does affiliates add on works with this version. anyone.
 

umair546

New member
May 31, 2022
0
0
0
First Contribution to Babiato Community:
(Updated - Compatible for V10.0)
Re-designed Font Changer Pack (1000+ fonts) + Search option with live font preview + 11 Extra Backgrounds & Gradient Colors



Updated Files:
1 - router.php - in folder (app/core)
2 - biolink_backgrounds.php - in folder (app/includes)
3 - biolink_fonts.php - in folder (app/includes)
4 - biolink.php - in forlder (themes/altum/views/link/settings)
5 - link-custom.css - in forlder (themes/altum/assets/css)
6 - custom.css - in forlder (themes/altum/assets/css)

- How to Use:
1 - Take backup of your website
2 - Extract and upload files in htdocs
(Copy css code from .txt file after extract and add in custom.css file) & Clear Cache after upload
3 - Enjoy :)

Preview:

1627471592940.png

1627471737816.png

  • Font Style Changer.zip
    55.5 KB · Views: 83 --- is this compatible with v 9.3.
 

ShadowWalker126

New member
Jul 8, 2022
0
1
0
Installed 11.0 working perfectly ,
first i haved a lot of errors and everything was becuse of an older php, upgraded to 7.4 on cpanel and all the errors are gone, except for some problems with HTTPS, so i modified htacces to this:

PHP:
Options All -Indexes

RewriteEngine On
RewriteBase /

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://YOURURL/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?altum=$1 [QSA,L]

<Files debug.log>
Order allow,deny
Deny from all
</Files>

<IfModule mod_expires.c>
  ExpiresActive On

  # Images
  ExpiresByType image/jpeg "access plus 1 year"
  ExpiresByType image/gif "access plus 1 year"
  ExpiresByType image/png "access plus 1 year"
  ExpiresByType image/webp "access plus 1 year"
  ExpiresByType image/svg+xml "access plus 1 year"
  ExpiresByType image/x-icon "access plus 1 year"

  # CSS, JavaScript
  ExpiresByType text/css "access plus 1 month"
  ExpiresByType text/javascript "access plus 1 month"
  ExpiresByType application/javascript "access plus 1 month"
</IfModule>

From here i start to have the spam accounts but no one complete the registration process, so after making the SMTP server to work and the test email, activation emails starts to work and give free access to all that F....g bots.. Recaptcha v2 was the problem solver, all the bots are gone.

None a single error from now on, i also modified a lot of things like:
- Removed Pixels
- Removed Custom domains
- Removed UTM
- Translated everything to spanish
- Add a new payment method (coding in proress)

Everythig works perfect in harmony, so im cosidering not to update to 11.1 with the steps they say like overwriting all the files, if you look at the changes the are not so much, so i will search for the files that has been changed and add or remove the codes, also the language pack only add 4 o 5 lines, not a lot.

If i can help anyone just let me know.
hello good man, could you share your modified and translated script with me please :):)🙂
 

marcds

New member
May 14, 2022
0
0
0
No problem,

To remove Pixels you need to simply remove it from the menu:
in : themes\altum\views\partials\menu.php

remove the line 57 and 58 (blanck one):
PHP:
                            <a class="dropdown-item" href="<?= url('projects') ?>"><i class="fa fa-fw fa-sm fa-project-diagram mr-1"></i> <?= language()->projects->menu ?></a>

---->                           <a class="dropdown-item" href="<?= url('pixels') ?>"><i class="fa fa-fw fa-sm fa-adjust mr-1"></i> <?= language()->pixels->menu ?></a>

                            <div class="dropdown-divider"></div>

So there is no access, unless they go directly to the URL yoursite/pixels , but only people who know about the script will go there , i will delete that in some time and post here the changes.

To modify the "biolink blocks" just do this:

To remove Soundcloud,, spotify, etc.. you need to remove lines from
\app\includes\biolink_blocks.php

PHP:
        'soundcloud' => [
            'type' => 'default',
            'icon' => 'fab fa-soundcloud',
            'color' => '#ff8800',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['soundcloud.com']
        ],
FROM HERE        'spotify' => [
            'type' => 'default',
            'icon' => 'fab fa-spotify',
            'color' => '#1db954',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['open.spotify.com']
TO HERE will remove Spotify        ],
        'youtube' => [
            'type' => 'default',
            'icon' => 'fab fa-youtube',
            'color' => '#ff0000',
            'has_statistics' => false,
            'display_dynamic_name' => false,
            'whitelisted_hosts' => ['www.youtube.com', 'youtu.be']
        ],

Remove UTM, from the plan settings

Also remove UTM from statistics:
From line 85 to 90, themes\altum\views\link\statistics.php

And remove UTM, pixels, etc... from the plans:
Line 22 is UTM: app\includes\simple_user_plan_settings.php

From:
\themes\altum\views\partials\plan_features.php
Lines 11 to 17 is Pixels

and from:
\themes\altum\views\partials\plans_plan_content.php
Lines 8 to 11 is Pixels


If i miss something let me know.
W9niNgm.png

Hi @bikkesbakker , could u show me how to remove UTM from here as well so user doesnt see it?
Also how can i rename Seo to something else?
Lastly, do you know how i can rename Avatar to Profile Photo without breaking anything? I tried to rename in biolink_blocks.php but it broke, so i had to rename it back.
 

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