8422 comments found.
Mobile Footer Section not responsive. Please solved this problem
Hello
It is fully responsive: https://tinyurl.com/2dqpb8sg
i know this script fully responsive. but my website is not fully responsive. please check my website.
Hello
I just checked and it is fully responsive. Are you referring to a specific page?
see this screenshort: https://drive.google.com/file/d/1vzYZdPtQ5TOHF8vRKlRFQAHCKpSUanqf/view?usp=sharing
Hey
That is responsive however we will try to make it better.
why showing links on left sidebar? this is not responsive, maybe its showing middle point. Anyway thank you
Hey
It is responsive however not properly formatted.
I received confirmation that my branded domain is now successfully pointed to your server. However, when I attempt to access a shortened link, I’m getting a 404 error.
For reference, I’ve correctly added both the @ A record and the CNAME record to point to the domain hosting the code, as instructed. The system acknowledges the connection, but none of the short links are resolving — only a 404 page is being displayed.
I’ve double-checked my settings and confirmed everything is configured properly on my end.
Hello
Last thing you need to do is to make sure the domain is pointed to the correct folder. If you use cPanel, you will need to add the domain manually via Domains and change the Document Root to be the exact same path as the main domain.
hi! where can I add new currency? I am from paraguay
any news?
Hey
For currencies, you need to make the payment provider supports it. Which payment provider are you using?
Hello, a few years ago I had installed your script but I ended up not using it as I was facing a technical problem that I couldn’t solve.
I want to try using your script again but the Purchase Code is not accepted when I install.
Can you please restore it so I can use it on the new domain?
Thank you!
Hey
I believe I answered your email.
Earn money per link you share, withdraw the money you earn to your account. You can track your earnings instantly from the user panel.
Hey
That is currently not planned.
how to sell subscription on jvzoo.com
Hello
I don’t know that website. You will need read more on this and see how you can do it. It seems like they are an affiliate network so most likely you will need to upload banners and other users will share your banners on their sites.
Hi there! Your website https://gempixel.com/ is down. Also, the demo of your script. Can you please check this ? Thanks
Hey
Thanks. It has been fixed
We were migrating to new servers.
pre sales question, where do I work with SEO?
Hey
You can set the title, description and keywords in settings. You can also set the meta image in the themes > settings.
Anyway that certain or all bio themes can only be used by paid users? This will give them more reasons why people should upgrade from a free account.
Hey
You can create custom themes in Admin > Bio Page > Bio Themes and choose the option to only show those themes to paid users.
I have 3 plans. Free plan, Pro plan and Enterprise plan – I want to set premium themes for Enterprise plan only, simple themes for Pro plan and so on.
Hey
I understand. That is not there at he moment however it is coming soon 
Ok, keep the new feature coming
Hello, I have a question.
I want to block the creation of user accounts that have certain TLD domain names, e.g., .top, .live, .ru, .icu, .pro, etc., which are used exclusively for scams! How do I do that?
Hello
We have a plugin to block email domains however it only blocks domains. To block TLDs you will need to do a slight customization of the plugin. You can install the Block Email Domains plugin from the Marketplace and apply the following change. Replace
if(in_array(trim(strtolower($domain)), $banned)) {
Helper::redirect()->back()->with('danger', e("We do not accept emails from this domain at the moment."));
exit;
}
by
foreach($banned as $b){
$domain = trim(strtolower($domain));
if(preg_match("~{$b}~i", $domain)) {
Helper::redirect()->back()->with('danger', e("We do not accept emails from this domain at the moment."));
exit;
}
}
Hi, KBRmedia,
Thanks, I solved that. I have another question: how can I add a text + link to the error message? I tried to change the text, but I get an error when I add the link. I want to add a similar text: https://ibb.co/1hm93ps
Hey
The script uses its error messaging system which is limited to text and some basic HTML. To add a similar message you will need to have a custom code. Perhaps you can redirect back to the register page with a parameter and use that parameter to show the error.
Example:
Helper::redirect()->to(route('register').'?error=blocked')->with('danger', e("We do not accept emails from this domain at the moment."));
exit;
In the register.php file you can add
<?php if(isset($_GET['error']) && $_GET['error'] == 'blocked'): ?> YOUR HTML <?php endif ?>
Hello,
I want to remove the login email sending feature.
When I previously asked you to remove the login email, you told me to do this:
For the login IP, remove the following code in the file app/controllers/UserController.php:
\Helpers\Events::for('login')->user($user->id)->log(json_encode([
'ip' => $request->ip(),
'country' => $location['country'] ?? null,
'city' => $location['city'] ?? null,
'os' => $request->device(),
'browser' => $request->browser()
]));
Line 175.
But even after commenting out this code, it is still sending the login email. Is there any other code that needs to be removed?
Also, the login email seems to send a login email each time a user logs in, even if it is from the same IP they log in every time.
2) Regarding the expiration date showing on the billing page:
when we manually assign a plan to a user, it does not show the expiration date. This can be a problem because we have some manually paying clients to whom we assign plans manually.
Can we modify the code to show the expiration date even if the plan is manually assigned to them?
Does this code work?
<?php if($user->pro): ?>
<?php if($subscription->plan != 'lifetime'): ?>
<h5 class="mb-3"><?php ee('Expiration') ?>: <?php echo date('d F, Y', strtotime($user->expiration)) ?></h5>
<?php endif; ?>
<?php endif; ?>
Thank you for your Support
Hello
1) That is not the code. you need to remove the following code on line 174
\Helpers\Emails::newip($user);
2) It does not because adding them manually will not create a subscription. That code is good but you need to remove the <?php if($subscription->plan != 'lifetime'): ?> and one of the <?php endif; ?>
Hello,
1) I have commented out this code now.
if(config('userlogging')){
if($logs = \Core\DB::appevents()->where('type', 'login')->where('userid', $user->id)->limit(10)->findMany()){
$ips = [];
foreach($logs as $log){
$data = json_decode($log->data);
$ips[] = $data->ip;
}
if(!in_array($request->ip(), $ips)){
\Helpers\Emails::newip($user);
}
}
}
It was code from line 139; that’s why I was confused.
2) I also needed to remove the expiration for the lifetime deal plan. Will the code I edited above work in that situation?
Or what code is needed to ensure the expiration date for pro users, even if it is assigned manually by the admin, and also to ensure that the expiration date does not show for lifetime plan users?
Hello
1) Yes that is good too
2) The code above already hides expiration for lifetime plans however the thing is that manually assigning users to a plan will not create a subscription entry. If you want to show the expiration date you will need to show to for all users or perhaps what you can do is filter the expiration field like this
<?php if(strtotime($user->expiration) < 365 * 24 * 60 * 60): ?> // show for all users who expire in less than a year <?php endif ?>
Hi,
2) How this code , Does it Work Correctly for all users including Manually Assigned User and not show for Lifetime deal Plans?
<?php if($user->pro): ?>
<?php $isLifetime = (isset($subscription) && $subscription->plan == 'lifetime');
if(!$isLifetime):?>
<h5 class="mb-3"><?php ee('Expiration') ?>: <?php echo date('d F, Y', strtotime($user->expiration)) ?></h5>
<?php endif; ?>
<?php endif; ?>
Hello
That code displays the expiration for all types except the lifetime plan.
An idea: Implement the ability to shorten url by appending the domain name to a long url. for instance, if i have this script installed on this url pik.n then i should be able to shorten a url codecanyon.net/whatever by adding this pik.n/codecanyon.net/whatever in my address bar. this way users dont have to copy and visit my site, paste and then click on shorten link button
Hey
We already have this feature for registered users. It uses parameters e.g. https://pik.n/q/?u=site
We also have a bookmarklet tool.
Dear Support Team,
I hope this message finds you well. I would like to follow up on the status of my support tickets, as I have not received any replies yet.
Here are the details:
Ticket #32049 – Pending for 11 days
Ticket #32061 – Pending for 9 days
Ticket #32237 – Pending for 3 days
Ticket #32196 – Pending for 4 days
Could you please let me know why these tickets are still pending and when I can expect a response?
Looking forward to your reply.
Best regards, Durjoy
Hey
Answering them now.
ok thank you
“Why hasn’t my ticket been replied to?” #32049-pending time 11 days #32061-pending time 09 days #32237-pending time 03 days #32196-pending time 04 days
Hey
I will check them today. One of your ticket is a suggestion and does not require a response. We have already noted the suggestions.
thank you dear Team
And one more question: Is Deep Linking option only for Admins? I made a Plan, but I forgot to add it as a option. Then I edit the plan and enable it, but my TESTuser cannot see it. When I add an Admin rights to the TESTuser, then I can see it.
Hey
Deeplinking is for all users. You also need to add Device Targeting if you add deeplinking.
Is there a setting to make Alias not case-sensitive? If there isn’t, is it possible to do it myself via some code editing?
Hey
Not at the moment however I think we will be removing the case sensitiveness in the upcoming update. Meanwhile you can edit the file app/traits/Links.php line 53 and 55, remove the BINARY keyword (2x per line)
Please respond to my ticket. It’s urgent.
Hello
Responding now.
Thank you.
Please respond to other tickets as well.
Hello. I have a presale question. 1) Is the script a GDPR-compliant? We are interested to host the script in the EU and targeting EU countries. 2) The script requires many resources on the server (Processor, bandwidth, RAM, ...? Is a VPS fine? Thank you in advance.
Hello
1) Yes
2) We recommend a 2GB ram 2 vCPU server to start with.
thank you
Hi, In the process installation, in the step 1 when I click proceed, then it become 404 Not Found. I don’t understand.
Hello
You are either missing the .htaccess file in the root directory and public directory or if you are using NGINX you need to update your NGINX config file with the one provided with the script (in root folder). Also make sure mod rewrite is enabled.
Hi, its done installed. The redirect link is work, but when I try to save the setting. It’s not working to save. Why??
Hey
What error do you get? I think it is best to open a ticket at https://gemp.me/help with server login so we can check as there is an issue with your configuration.
KBRmedia Team, Thank You for Update. I want the next update about affiliates Section.
Hey
Glad you like it. We will work on other modules next.
ok, thank you