1665 comments found.
Where developer disappears with updates? I am want use “Valexa Platform” for my business to resell soft.
We generally update a script to add new features and fix bugs, so what features you see it’s important to add ? I’m in lack of ideas now but will certainly think on something especially with AI.
We are fully satisfied with the existing features, but additional ones are always a pleasant surprise.
Hello dear Codemayer New design ? New update ? Thanks
Hello, i’ll start working on something soon
.
I have pointed the domain root to scriptland.com/public Note: the website is hosted with CloudPanel Nginx
I noticed an update was just made few days ago. But even without me installing yet with your live Demo I spot one big issues.
Click on any product on Mobile not PC. Check the Comments, Review etc buttons none is working same on old script.
And proper error handling if the product is pending and user try to download instead of 404 error.
Also when posting products on that old script you can’t use emojis like this ✅, or block on the editor else site crash 404.
Many more
You did not reply show all errors hasn’t been fix. And on Fire fox the Grid of products don’t work only Google.
Also the .htaccess file issue.
i need some help for install i upload this code in my hosting server but i face some issue
Contact me via Gmail please or send me a message from the contact form https://codecanyon.net/user/codemayer#contact
Thanks
i cannot install the script in xampp version 8.2.12, there show message “Forbidden You don’t have permission to access this resource.” already changed DocumentRoot to “C:/xampp/htdocs”
already changed DocumentRoot to “C:/xampp/htdocs/public”
Hi,
Please check the file owner if you are on a live server, it may be set to root by default when you uploaded and extracted the zip file.
Also, even it's not related, please edit /public/.htaccess file and remove the first line :
AddHandler application/x-httpd-php81 .php
Good thing there will be discounts for Black Friday?
50% discount soon
hello not working after add product after https://prnt.sc/V3BgiD1T8Wbl
Check your inbox hassankhaar 
please chexk email am.send more 1 week not fix it
i need update my scripte but not find upgarde file in script
Check your inbox hassankhaar
Pre-sales questions please: 1. License Key Validation – if my products are exe files and purchased via Stripe, how to implement this license validation, if I want to have them being paid on a monthly subscription basis, not as a one time sale? 2. What specific limits can be put on users in subscription membership options you have? 3. As of today, does the script work as it should? Thanks!
I have fed up mailing you… you dont reply at all.
Ok lets talk on this comments area
you have to reply back when support is active.
I have issues on. 1. How to add payment subscription for a same product., 2. How to add chat widget, documentation says we can, but that feature isnot visible. (admin—settings-chat) https://ibb.co/ZRgkW7Yz 3. Hidden content don’t work, I add hidden content, public can see even if i add. 4. is there a ready payu module for me to use to system ?I am still got this issue nothing is visible there can you please tell me whats that and how to fix it https://prnt.sc/zAZ2PY7vfRuc
why my product is downloadble to user when when pending and failed order. it seems it is downloadble even without verifying
Does subscription plans auto renew by stripe?
Hi,
Subscription renewal is manual.
Thanks
Hello Codemayer, any chance for the “EasyPaisa” payment gateway for Pakistan addons ? if yes, the how much cost for that please!
Hi,
Will look into that soon, it will be added as an addon.
Thanks
So kind of you are, is there any chance for as soon as possible, I am designing website layout and some other functions one of my Pakistani customer for selling books / songs etc. I did setup at the moment same as offlinepayment but this looks not professional. We wana set it up same as other payment options, so the customer can pay direct to easypaisa integration, instead of manually send payments. Thanks in advance
Sorry to bother you again, I already found some of bugs 1. Category images 2- home page tags issue 3- Transaction link in the backend , but unfortunately found error 500 when click the link Transaction details option in the backend. Although I am not logging in with the buyer’s email, so not showing purchased mark here. If you can help in this regards, then thankful to you, but if you would like then I’ll request to the guy ( Code / script buyer ) to send you for support. Thanks again for your time
@shylyalways with due respect, shall be thankful if you please do us favour to resolve some problems if possible. 1- Admin panel, when we click for Transaction link, facing 500 error message 2- When we add email address for signup newsletter, there is we facing 419 error message.
Shall be thankful for your help, in this regards
I purchased your script and after testing it I discovered numerous critical defects. I cannot continue using the product in its current state. Below are the major issues I found and even more:
Critical issues • .htaccess configuration prevents users from accessing the site at first. • When a customer places an order the admin cannot view order details. The demo behavior differs from the original script you supplied. • On mobile the product card display is incorrect (demo shows two product cards; the shipped script does not). • Incorrect order state handling: pending orders show an “Error 404” when the user clicks Download instead of a meaningful “Order processing” message. • Uploading multiple photos only displays a single image on the frontend. • Product descriptions do not allow emojis (e.g. ✅) — this is a feature regression. .. The following won’t work on mobile: Comment, Reviews etc all this line bad
Other problems • Missing or inconsistent error logic across flows (checkout, downloads, uploads). • Several UI/UX and functionality regressions compared to the demo. • I have more than 15 additional issues but these are the show-stoppers preventing use.
I have invested time fixing some problems locally, but there are too many remaining. This release is not production-ready and is far below acceptable quality.
Requested action
If you will fix, include a changelog and test plan showing the issues above are resolved
Provide a working script to update your script addressing various issues.
You can read the comments section full of errors.
66 {main}
“}
[2025-09-14 13:37:51] production.ERROR: Class “Intervention\Image\Facades\Image” not found {userId] (Error(code: 0): Class \”Intervention\\Image\\Facades\\Image\” not found at /home/digital/script/app/Http/Controllers/CategoriesController.php:132) [stacktrace]
why this casuses when image is added to categries. i tried best to resolve by doing all fix, but doesnot resolve
placed line 1 for file /home/digital/script/app/Http/Controllers/CategoriesController.php
use Intervention\Image\ImageManager; use Intervention\Image\Drivers\Gd\Driver; //
Line (280) of /home/digital/script/app/Http/Controllers/CategoriesController.php) replaced the existing code of function. this resolved the problem.,
if(isset($category->icon) && !preg_match(”/(svg|webp)/i”, $category->icon)) { // 1. Create an ImageManager instance $manager = new ImageManager(new Driver()); }
// 2. Read the image from the path (the new "make")
$img = $manager->read(public_path("storage/icons/{$category->icon}"));
// 3. Resize the image (this syntax remains similar)
$img->resize(200, null);
// 4. Save the changes (this step is important!)
$img->save();
another error at home.blade.php which errors out when blog has no tags. blank ag aused a home page crash.
replaced the tags code
@foreach(array_slice(array_map(‘trim’, explode(’,’, $post->tags)), 0, 3) as $tag) {{ $tag }} @endforeachwith following
@if(!empty($post->tags)) @foreach(array_slice(array_filter(array_map(‘trim’, explode(’,’, $post->tags))), 0, 3) as $tag) {{ $tag }} @endforeach @endif
the code is eaten up by the formatter. Users beware.