johnc
Well-known member
- Feb 18, 2021
- 288
- 261
- 63
kindly use the latest official nulled file to clean install this script.Same, Not working bro, still missing role
kindly use the latest official nulled file to clean install this script.Same, Not working bro, still missing role
i dont' change anything expect license file . and in my case everything working fine .Thanks for efforts to null this script but your nulled file have many issues like it also removed admin account creation script and it also replaced bootstrap library to older version.
I have corrected all these errors and uploaded the nulled file again.
You can compare with untouched file regarding changes.i dont' change anything expect license file . and in my case everything working fine .
Thank you so much for sharing this script. I will test it as soon as possible on my side. Anyway...appreciate it.Thanks for efforts to null this script but your nulled file have many issues like it also removed admin account creation script and it also replaced bootstrap library to older version.
I have corrected all these errors and uploaded the nulled file again.
I have not missed something, Dear instead of arguing please check and compare file install\ajax.php with the untouched version, You can easily see in your provided nulled version by you have many codes are removed which required to create admin.Bro maybe you miss something I make admin account normally.
/*----------------------------------------------------
PREPARE SQL QUERY USING PDO FOR CREATE NEW ADMIN
----------------------------------------------------*/
$create_admin = $db->prepare("INSERT INTO `admins` (email,name,username,email_verified,role,image,password,remember_token,created_at,updated_at) VALUES (:name,:email,:username,:verified,:role,:image,:password,:token,:created,:updated)");
/*----------------------------------------------
ADD NEW SUPER ADMIN WHILE INSTALLATION
----------------------------------------------*/
$create_admin->execute([
':name' => strip_tags(trim($admin_details['admin_name'])),
':email' => trim($admin_details['admin_email']),
':username' => strip_tags(trim($admin_details['admin_username'])),
':verified' => 1,
':password' => password_hash($admin_details['admin_password'], PASSWORD_BCRYPT),
':role' => 1,
':image' => null,
':token' => null,
':created' => date('Y-m-d h:i:s'),
':updated' => date('Y-m-d h:i:s'),
]);
$last_insert_id = $db->lastInsertId();
/*--------------------------------------------------------
PREAPARE SLQ QUERY FOR ASSIGN SUPER ADMIN ROLE
--------------------------------------------------------*/
$role_assign = $db->prepare("INSERT INTO `model_has_roles` (role_id,model_type,model_id) VALUES (:role_id,:model,:model_id)");
/*--------------------------------------------------------
ASSIGN SUPER ADMIN ROLE FOR CREATED ADMIN
--------------------------------------------------------*/
$role_assign->execute([
':role_id' => '1',
':model' => 'App\Admin',
':model_id' => $last_insert_id,
]);
return true;
[added]
added automation support for rss feeds, now you can add as many as rss feed url you want to import automatically in your blog. you can decide how many time it will fetch data automatically from your admin panel. you have to setup cron job for it. [improvement]
optimize all database query and cached it for improve performance and load it fast [fixed] minor styling issue fixed
Hey where can I find about website in admin panel likejohnc updated Katerio - News & Magazine Multilingual CMS with a new update entry:
Version: 1.0.5 (03 July 2022)-Nulled
Read the rest of this update entry...
Maybe the script author can answer for your question.Hey whats with the size of your file ? in @ core folder/storage/debugbar there are lots of files. why is those required ?
Version: 1.0.6
Date: 08 October 2022
[added] added comment approval option , now without approval no comment will show in frontend.
[added] archive search widget added