SmartPanel - SMM Panel Script

SmartPanel - SMM Panel Script V4.1 Untouched

No permission to download

ceg

Member
Dec 25, 2020
33
10
8
Version 4.0
- [NEW]: Light/Night mode for theme
- [NEW]: Admin dashboard theme
- [NEW]: User dashboard layout (vertical and horizontal)
- [ADD]: multi selection for bulk action button
- [ADD]: Secret key option when admin account set balance, funds etc
- [ADD]: Auto logout option when admin change ip address for security
- [ADD]: Sorting order option for payment gateway
- Improved: Page Speed of the Services page - Improved: Services page
- Improved: Cronjob system
- Improved: Order status for big panel
- Fixed: small bugs relate to script.

P.S. The long-awaited Refill and referral system were never made.

Update: The author wrote that the Refill module will be released soon and it will be a separate paid module
 
Last edited:

ceg

Member
Dec 25, 2020
33
10
8
Anyone know how can add minimum order limit based on price? For example, the minimum order is $5 ?
Just set the minimum number of likes/followers for the order so that the minimum price is $5.
 

ceg

Member
Dec 25, 2020
33
10
8
you can not change 1000 services with different prices, it takes 1000 years to do this:LOL:
You need to go into the code, look for the line where the balance is checked when creating an order, and write: if the order value is less than $5, then generate an error. This is easy to do.
 

amir

Well-known member
Trusted Seller
Aug 6, 2019
420
356
63
33
🌏
neofollower.com
You need to go into the code, look for the line where the balance is checked when creating an order, and write: if the order value is less than $5, then generate an error. This is easy to do.
Yes, i know the idea , but i'm not a developer and i don't know PHP
 

benimol20

Member
Jan 8, 2020
50
21
8
Version 4.0
- [NEW]: Light/Night mode for theme
- [NEW]: Admin dashboard theme
- [NEW]: User dashboard layout (vertical and horizontal)
- [ADD]: multi selection for bulk action button
- [ADD]: Secret key option when admin account set balance, funds etc
- [ADD]: Auto logout option when admin change ip address for security
- [ADD]: Sorting order option for payment gateway
- Improved: Page Speed of the Services page - Improved: Services page
- Improved: Cronjob system
- Improved: Order status for big panel
- Fixed: small bugs relate to script.

P.S. The long-awaited Refill and referral system were never made.

Update: The author wrote that the Refill module will be released soon and it will be a separate paid module
please nulled version 4
 

d3v1l

Well-known member
Banned User
Dec 24, 2020
362
697
93
22
India
d3v1l.co
d3v1l updated SmartPanel - SMM Panel Script with a new update entry:

SmartPanel - SMM Panel Script V4.0 Nulled

Version 4.0
- [NEW]: Light/Night mode for theme
- [NEW]: Admin dashboard theme
- [NEW]: User dashboard layout (vertical and horizontal)
- [ADD]: multi selection for bulk action button
- [ADD]: Secret key option when admin account set balance, funds etc
- [ADD]: Auto logout option when admin change ip address for security
- [ADD]: Sorting order option for payment gateway
- Improved: Page Speed of the Services page - Improved: Services page
- Improved: Cronjob system
- Improved: Order status...

Read the rest of this update entry...
 

ceg

Member
Dec 25, 2020
33
10
8
Anyone know how can add minimum order limit based on price? For example, the minimum order is $5 ?
1. Go to /app/modules/order/controllers/order.php
2. Search ~368 line "if ($user->balance != 0 && $user->balance < $total_charge || $user->balance == 0) {"
3. Paste the code like this (I haven't tested this code, but it should work. Write if so.)
Code:
        // check balance
        if ($user->balance != 0 && $user->balance < $total_charge || $user->balance == 0) {
            ms(array(
                "status"  => "error",
                "message" => lang("not_enough_funds_on_balance")
            ));
        }
//your code:
        if ($total_charge < 5) {
            ms(array(
                "status"  => "error",
                "message" => "Minimum order 5$"
            ));
        }
 
  • Like
Reactions: Raumani and amir

amir

Well-known member
Trusted Seller
Aug 6, 2019
420
356
63
33
🌏
neofollower.com
1. Go to /app/modules/order/controllers/order.php
2. Search ~368 line "if ($user->balance != 0 && $user->balance < $total_charge || $user->balance == 0) {"
3. Paste the code like this (I haven't tested this code, but it should work. Write if so.)
Code:
        // check balance
        if ($user->balance != 0 && $user->balance < $total_charge || $user->balance == 0) {
            ms(array(
                "status"  => "error",
                "message" => lang("not_enough_funds_on_balance")
            ));
        }
//your code:
        if ($total_charge < 5) {
            ms(array(
                "status"  => "error",
                "message" => "Minimum order 5$"
            ));
        }
Thank you mate , you did a amazing job , let me try, thank you again
 
  • Like
Reactions: ceg

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