• Take time to read Forum Rules | Hot Note | Why You Choose Us?

    Let try and keep the forum Post, comments and reviews in English

    Thank you for being part of our growing community of learners and developers.
    — The Scriptzhub Team

Nexelit - Multipurpose Website CMS & Business CMS

Nexelit - Multipurpose Website CMS & Business CMS v4.1.0

No permission to download
Codeyon ITServices

Avinash

Administrator
Staff member
LV
0
 
Avinash submitted a new resource:

Nexelit - Multipurpose Website CMS & Business CMS - Nexelit Multipurpose Website & Agency Business CMS is the perfect agency business

Nexelit - Multipurpose Website CMS & Business CMS - CodeCanyon Item for Sale


Nexelit Multipurpose Website & Agency Business CMS is the perfect agency business or any kind of website with this PHP Script. Nexelit is a better way to present your business, corporate...

Read more about this resource...
 
Avinash updated Nexelit - Multipurpose Website CMS & Business CMS with a new update entry:

Nexelit - Multipurpose Website CMS & Business CMS v3.6.0

Version: 3.6.0​

Date: February 11th, 2024

[fixed] paypal payment gateway issue resolved
[fixed] fixed navbar bg color issue and rtl minor issue
[fixed] maintainance mode not working for dynamic pages issue solved
[fixed] appointment mail not working when appointment price is zero
[fixed] about page navbar color issue fixed

Read the rest of this update entry...
 
Avinash updated Nexelit - Multipurpose Website CMS & Business CMS with a new update entry:

Nexelit Multipurpose Website CMS & Business CMS v3.7.0

Date: March 27th, 2024
[fixed] appointment module, zero price will not show
[fixed] appointment edit not showing meta data issue solved
[fixed] appointment booking showing draft time as well issue fixed
[fixed] shipping add/edit issue solved
[fixed] rss feed issue fixed
[fixed] footer text color overwrite issue fixed
[fixed] mobile device banner responsive issue fixed
[fixed] authorname undefined variable in spatie package fix

Read the rest of this update entry...
 
Avinash updated Nexelit - Multipurpose Website CMS & Business CMS with a new update entry:

Nexelit - Multipurpose Website CMS & Business CMS v4.0.0

Version: 4.0.0 - Date: December 8th, 2024


[Added] Navbar Settings Added
[Added] Topbar button settings added
[Added] newsletter Widget Social Settings Added
[fixed] brand carouse issue fix
[fixed] Testimonial Draft not working issue fix
[fixed] Installer Role Permission issue fixed


Version: 3.8.0 (Date: July 5th...


Read the rest of this update entry...
 
Avinash updated Nexelit - Multipurpose Website CMS & Business CMS with a new update entry:

Nexelit - Multipurpose Website CMS & Business CMS v4.1.0

Version: 4.1.0​

Date: September 22th, 2025

Added:
[added] upgraded to laravel 12 and php 8.2
[added] course enrollment status change for admin
[added] enabling display price to logged in user will not show price, add to cart, cart icon in the navbar.
[added] large file download functionality
[added] newsletter addon in the homepage page-builder
[added] updated jquery plugin except bootstrap as it breaks current view/css
[added] custom fonts upload and...

Read the rest of this update entry...
 
Read this in the Documen,tation.
06.
you will find a database in “Install>database.sql” in downloaded file, import the database into your created database

07. Upload installable file to server
Hello @Avinash , please, put the database.sql file
 
To null the installer Also go to /@core/vendor/xgenious/installer/src/Http/Controllers/InstallerController.php

Find and replace this lines 47-82

$response = Http::get($url, [
'puid' => $puuid,
'en_username' => $en_username,
'en_purchase_code' => $en_purchase_code,
'ip' => $request->ip(),
'user_agent' => $request->header('User-Agent'),
'domain' => $domain,
'email' => $request->en_email,
]);

$headers = $response->headers();
$body = $response->body();

//if (
// (isset($headers['Content-Type']) && in_array('application/sql', $headers['Content-Type'])) ||
// (isset($headers['Content-Disposition']) && str_contains($headers['Content-Disposition'], 'attachment'))
// ) {
Storage::disk('local')->put('database.sql', $body);

return response()->json([
'type' => 'success',
'msg' => 'Verification Success'
]);
//} else {
// $result = $response->json();
// return response()->json([
// 'type' => $result['verify'] ? 'success' : 'danger',
// 'msg' => $result['msg'] ?? 'Could not connect to the server to verify your purchase. If you continue to get this message, contact our support.'
// ]);
//}
} catch (\Exception $e) {
return response()->json([
'type' => 'danger',
'msg' => $e->getMessage()
]);
}
 
Back
Top