• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Infix LMS - Learning Management System

Infix LMS - Learning Management System v6.5.1 Untouched

No permission to download

Joeyeriksen

New member
Jul 4, 2022
8
17
3
White Devil submitted a new resource:

InfixLMS - Open Source Learning Management System VueJs - education, elearning, instructor, learning management system, lms, online course, paypal, stripe, tr

View attachment 41479

InfixLMS script you can sell your projects without reseller’s commission takes half the cost of your project. All profits just for you just need to install the script and add your products. You can set up your marketplace and accept any user to upload their products and get the selling commission
Features
  • Multi & Public Instructor
  • Student Profile
  • Instructor Profile
  • Item Cart Stored In Database (No Risk To...

Read more about this resource...
 
how to null InfixLMS
Modules\Installer\Http\Controllers\InstallerController.php
Open InstallerController.php
find this codes around line 23 to 30
PHP:
  try {
            if (filter_var(gethostbyname($domain_name), FILTER_VALIDATE_IP)) {
                return TRUE;
            } else return FALSE;
        } catch (\Exception $e) {
            Toastr::error('Operation Failed', 'Failed');
            return redirect()->back();
        }
And Replace With this code
PHP:
return TRUE;

find this codes 72 to 134
PHP:
$request->validate([
                'envatouser' => 'required',
                'purchasecode' => 'required',
                'installationdomain' => 'required',
            ]);
            try {
                if ($this->is_valid_domain_name($request->installationdomain)) {

                    $envatouser = htmlspecialchars($request->input('envatouser'));
                    $purchasecode = htmlspecialchars($request->input('purchasecode'));
                    $domain = htmlspecialchars($request->input('installationdomain'));
                    $UserData = Envato::verifyPurchase($purchasecode);
                    
                    if (!empty($UserData['verify-purchase']['item_id']) && (User::$item == $UserData['verify-purchase']['item_id'])) {

                        Session::put('envatouser', $envatouser);
                        Session::put('purchasecode', $purchasecode);
                        Session::put('domain', $domain);
                    
                        Session::put('item_id', $UserData['verify-purchase']['item_id']);


                        if ( in_array('curl', get_loaded_extensions())) {
                            try {
                                $client = new Client();
                                $product_info = $client->request('GET', 'http://salespanel.infixedu.com/api/installation/' . $purchasecode . '/' . $domain . '/' . $envatouser);
                                $product_info = $product_info->getBody()->getContents();
                            
                                $product_info = json_decode($product_info);
                                
                              
                                if ($product_info->flag == false) {
                                    return redirect()->back()->with("message-danger", $product_info->message);
                                } else {
                                    Session::put('step3', 3);
                                    Session::flash("message-success", "Congratulations! Purchase code is verified." . $product_info->message);
                                    return redirect('system/check-environment');
                                }
                            } catch (\GuzzleHttp\Exception\ConnectException $e) {
                                Session::put('step3', 3);
                                Session::flash("message-success", "Congratulations! Purchase code is verified.");
                                return redirect('system/check-environment');
                                return redirect()->back()->with("message-danger", $e->getMessage());
                            } catch (\Exception $e) {
                                
                                return redirect()->back()->with("message-danger", "Operation Failed! Please contact us");
                            }
                        } else {
                            Session::flash("message-danger", "Ops! CURL is not available on your web server. Please install it.");
                        }
                    } else {
                        Session::flash("message-danger", "Ops! Purchase Code is not valid. Please try again.");
                        return redirect()->back()->with("message-danger", "Ops! Purchase Code is not valid. Please try again.");
                    }

                    return redirect()->back()->with("message-danger", "Ops! Purchase Code is not valid. Please try again.");
                } else {
                    return redirect()->back()->with("message-danger", "Ops! Invalid Domain. Please try again.");
                }
            } catch (\Exception $e) {
                Toastr::error('Operation Failed', 'Failed');
                return redirect()->back();
            }

and Replace with this code
PHP:
envatouser = htmlspecialchars($request->input('envatouser'));
            $purchasecode = htmlspecialchars($request->input('purchasecode'));
            $domain = htmlspecialchars($request->input('installationdomain'));
            Session::put('envatouser', $envatouser);
            Session::put('purchasecode', $purchasecode);
            Session::put('domain', $domain);
            Session::put('step3', 3);
            Session::flash("message-success", "Congratulations! Purchase code is verified.");
            return redirect('system/check-environment');

Enjoy :D
 
Babak updated InfixLMS - Open Source Learning Management System VueJs with a new update entry:

InfixLMS v2.0.1

Download InfixLMS v2.0.1 - Open Source Learning Management System VueJs Nulled Free
v2.0.1 (14 April 2021) Big Thanks To @harkel

Bug Fixed : SCORM Compatible
: Video URL, Ifream embedded, Image, Word, Excel, Powerpoint, PDF with View Zip Add into lesson
: Improve Design in Full screen lesson play.
: Others Minor Issue fixed

New Feature : Allow Cookies

Read the rest of this update entry...
 
Hi , Great resource . Pls lets know whether the same procedure of nulling can be carried out in the update even .
 
  • Like
Reactions: cstbr
how to null InfixLMS
Modules\Installer\Http\Controllers\InstallerController.php
Open InstallerController.php
find this codes around line 23 to 30
PHP:
  try {
            if (filter_var(gethostbyname($domain_name), FILTER_VALIDATE_IP)) {
                return TRUE;
            } else return FALSE;
        } catch (\Exception $e) {
            Toastr::error('Operation Failed', 'Failed');
            return redirect()->back();
        }
And Replace With this code
PHP:
return TRUE;

find this codes 72 to 134
PHP:
$request->validate([
                'envatouser' => 'required',
                'purchasecode' => 'required',
                'installationdomain' => 'required',
            ]);
            try {
                if ($this->is_valid_domain_name($request->installationdomain)) {

                    $envatouser = htmlspecialchars($request->input('envatouser'));
                    $purchasecode = htmlspecialchars($request->input('purchasecode'));
                    $domain = htmlspecialchars($request->input('installationdomain'));
                    $UserData = Envato::verifyPurchase($purchasecode);
                   
                    if (!empty($UserData['verify-purchase']['item_id']) && (User::$item == $UserData['verify-purchase']['item_id'])) {

                        Session::put('envatouser', $envatouser);
                        Session::put('purchasecode', $purchasecode);
                        Session::put('domain', $domain);
                   
                        Session::put('item_id', $UserData['verify-purchase']['item_id']);


                        if ( in_array('curl', get_loaded_extensions())) {
                            try {
                                $client = new Client();
                                $product_info = $client->request('GET', 'http://salespanel.infixedu.com/api/installation/' . $purchasecode . '/' . $domain . '/' . $envatouser);
                                $product_info = $product_info->getBody()->getContents();
                           
                                $product_info = json_decode($product_info);
                               
                             
                                if ($product_info->flag == false) {
                                    return redirect()->back()->with("message-danger", $product_info->message);
                                } else {
                                    Session::put('step3', 3);
                                    Session::flash("message-success", "Congratulations! Purchase code is verified." . $product_info->message);
                                    return redirect('system/check-environment');
                                }
                            } catch (\GuzzleHttp\Exception\ConnectException $e) {
                                Session::put('step3', 3);
                                Session::flash("message-success", "Congratulations! Purchase code is verified.");
                                return redirect('system/check-environment');
                                return redirect()->back()->with("message-danger", $e->getMessage());
                            } catch (\Exception $e) {
                               
                                return redirect()->back()->with("message-danger", "Operation Failed! Please contact us");
                            }
                        } else {
                            Session::flash("message-danger", "Ops! CURL is not available on your web server. Please install it.");
                        }
                    } else {
                        Session::flash("message-danger", "Ops! Purchase Code is not valid. Please try again.");
                        return redirect()->back()->with("message-danger", "Ops! Purchase Code is not valid. Please try again.");
                    }

                    return redirect()->back()->with("message-danger", "Ops! Purchase Code is not valid. Please try again.");
                } else {
                    return redirect()->back()->with("message-danger", "Ops! Invalid Domain. Please try again.");
                }
            } catch (\Exception $e) {
                Toastr::error('Operation Failed', 'Failed');
                return redirect()->back();
            }

and Replace with this code
PHP:
envatouser = htmlspecialchars($request->input('envatouser'));
            $purchasecode = htmlspecialchars($request->input('purchasecode'));
            $domain = htmlspecialchars($request->input('installationdomain'));
            Session::put('envatouser', $envatouser);
            Session::put('purchasecode', $purchasecode);
            Session::put('domain', $domain);
            Session::put('step3', 3);
            Session::flash("message-success", "Congratulations! Purchase code is verified.");
            return redirect('system/check-environment');

Enjoy :D

There is no Installer Module. Seems this method does not work for this script.
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock