Rocket LMS - Learning Management & Academy Script

Rocket LMS - Learning Management & Academy Script v1.9.9 Untouched

No permission to download

mdikbalhosen7967

New member
Jul 8, 2022
8
0
1
Okay so I delete the table "payment-channels" table on PHPMYADMIN right?
But then where is the new table I should upload? I can't find the database.sql.zip on your version my friend :)
(by the way, as you don't put the database.sql.zip demo data on your zip, should we use zip from original uploader and copy/paste your content over his own content?)
Sorry if it's stupid question ahah

Edit: I saw some plugins not activated, is it normal bro? (for instance analytics courses and access management) thanks!
Does anyone have a 1.6 plugin? SSL Commerce payment gateway is not coming in my payment gateway option. Please help me.
 

darkklime

New member
May 8, 2022
13
0
1
when you edit a course, you click on ADD NEW MATERIAL, then you write a name and press enter, you get this error, what's the matter? Снимок экрана 2022-07-29 в 13.08.50.png Снимок экрана 2022-07-29 в 13.09.05.png Снимок экрана 2022-07-29 в 13.09.39.png
 

tonde2020

New member
May 6, 2022
22
5
3
plz help me i installed script its ok but cant access settings & many sections
 

Attachments

  • fffff.png
    fffff.png
    55.9 KB · Views: 27
  • Like
Reactions: Sultan.

mountbee

Member
Jul 27, 2022
56
24
8
Between Space and Internet
Hi there, need assistance.

1659044766786.png

please edit you inside.blade.php

reource/views/admin/settings with this code

@extends('admin.layouts.app')


@section('content')
<section class="section">
<div class="section-header">
<h1>{{ trans('admin/main.settings') }}</h1>
<div class="section-header-breadcrumb">
<div class="breadcrumb-item active"><a href="#">{{ trans('admin/main.dashboard') }}</a></div>
<div class="breadcrumb-item">{{ trans('admin/main.settings') }}</div>
</div>
</div>

<div class="section-body">
<h2 class="section-title">{{ trans('admin/main.overview') }}</h2>
<p class="section-lead">
{{ trans('admin/main.overview_hint') }} <br/>
</p>

<div class="row">
@can('admin_settings_general')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-cog"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.general_card_title') }}</h4>
<p>{{ trans('admin/main.general_card_hint') }}</p>
<a href="/admin/settings/general" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_financial')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-dollar-sign"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.financial_card_title') }}</h4>
<p>{{ trans('admin/main.financial_card_hint') }}</p>
<a href="/admin/settings/financial" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_personalization')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-wrench"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.personalization_card_title') }}</h4>
<p>{{ trans('admin/main.personalization_card_hint') }}</p>
<a href="/admin/settings/personalization/page_background" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_notifications')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-bell"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.notifications_card_title') }}</h4>
<p>{{ trans('admin/main.notifications_card_hint') }}</p>
<a href="/admin/settings/notifications" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_seo')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-globe"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.seo_card_title') }}</h4>
<p>{{ trans('admin/main.seo_card_hint') }}</p>
<a href="/admin/settings/seo" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan
{{-- 8246cb --}}
@can('admin_settings_customization')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-list-alt"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.customization_card_title') }}</h4>
<p>{{ trans('admin/main.customization_card_hint') }}</p>
<a href="/admin/settings/customization" class="card-cta text-primary">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan
</div>
</div>
</section>
@endsection
 

mountbee

Member
Jul 27, 2022
56
24
8
Between Space and Internet
I would like to share how to install it step-by-step that works perfectly fine with me

- copy all soure files from
- set up database on your serverside and edit your .env files

- set up SMTP on .env , make sure your email address same as the email that you put in admin panel (settings/general/email)

- login with google and FB key and secret key put on .env (optional)

- please edit you index.blade.php

reource/views/admin/settings with this code


@extends('admin.layouts.app')


@section('content')
<section class="section">
<div class="section-header">
<h1>{{ trans('admin/main.settings') }}</h1>
<div class="section-header-breadcrumb">
<div class="breadcrumb-item active"><a href="#">{{ trans('admin/main.dashboard') }}</a></div>
<div class="breadcrumb-item">{{ trans('admin/main.settings') }}</div>
</div>
</div>

<div class="section-body">
<h2 class="section-title">{{ trans('admin/main.overview') }}</h2>
<p class="section-lead">
{{ trans('admin/main.overview_hint') }} <br/>
</p>

<div class="row">
@can('admin_settings_general')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-cog"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.general_card_title') }}</h4>
<p>{{ trans('admin/main.general_card_hint') }}</p>
<a href="/admin/settings/general" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_financial')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-dollar-sign"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.financial_card_title') }}</h4>
<p>{{ trans('admin/main.financial_card_hint') }}</p>
<a href="/admin/settings/financial" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_personalization')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-wrench"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.personalization_card_title') }}</h4>
<p>{{ trans('admin/main.personalization_card_hint') }}</p>
<a href="/admin/settings/personalization/page_background" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_notifications')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-bell"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.notifications_card_title') }}</h4>
<p>{{ trans('admin/main.notifications_card_hint') }}</p>
<a href="/admin/settings/notifications" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_seo')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-globe"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.seo_card_title') }}</h4>
<p>{{ trans('admin/main.seo_card_hint') }}</p>
<a href="/admin/settings/seo" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan
{{-- 8246cb --}}
@can('admin_settings_customization')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-list-alt"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.customization_card_title') }}</h4>
<p>{{ trans('admin/main.customization_card_hint') }}</p>
<a href="/admin/settings/customization" class="card-cta text-primary">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan
</div>
</div>
</section>
@endsection

- download all these plugin and follow the filepath where and how to install it


and paste the files with plugin activation



bellow is my POC




Screen Shot 2022-08-06 at 12.26.22.png

Screen Shot 2022-08-06 at 12.25.26.png

please add more information or CMIIW


Thank you Everyone
 
Last edited:

davidwatson

New member
May 2, 2022
21
4
3
I would like to share how to install it step-by-step that works perfectly fine with me

- copy all soure files from

- set up database on your serverside and edit your .env files

- set up SMTP on .env , make sure your email address same as the email that you put in admin panel (settings/general/email)

- login with google and FB key and secret key put on .env (optional)

- please edit you inside.blade.php

reource/views/admin/settings with this code




- download all these plugin and follow the filepath where and how to install it



and paste the files with plugin activation



bellow is my POC




Screen Shot 2022-08-06 at 12.26.22.png

Screen Shot 2022-08-06 at 12.25.26.png

please add more information or CMIIW


Thank you Everyone
Bro I followed your settings but it did not work.... Should I copy the app and dorectly upload the demo sql without installing? I did not but it did work.
 

mavikumsal

Member
Jun 25, 2020
49
11
8
I would like to share how to install it step-by-step that works perfectly fine with me

- copy all soure files from

- set up database on your serverside and edit your .env files

- set up SMTP on .env , make sure your email address same as the email that you put in admin panel (settings/general/email)

- login with google and FB key and secret key put on .env (optional)

- please edit you inside.blade.php

reource/views/admin/settings with this code




- download all these plugin and follow the filepath where and how to install it



and paste the files with plugin activation



bellow is my POC




Screen Shot 2022-08-06 at 12.26.22.png

Screen Shot 2022-08-06 at 12.25.26.png

please add more information or CMIIW


Thank you Everyone
thanks i have to try this
 

mavikumsal

Member
Jun 25, 2020
49
11
8
Laragon installation on localhost is ok After 1.6 version update, the site opens, but I shared the picture, errors came
 

mountbee

Member
Jul 27, 2022
56
24
8
Between Space and Internet
Bro I followed your settings but it did not work.... Should I copy the app and dorectly upload the demo sql without installing? I did not but it did work.
which part that din't work out ?

extract all source to the folder or /public_html ( please follow instruction for how to install in normal way from Documentation for this part) , import Demo SQL ( more recomended, because you can edit latter). and config your .env
 

davidwatson

New member
May 2, 2022
21
4
3
which part that din't work out ?

extract all source to the folder or /public_html ( please follow instruction for how to install in normal way from Documentation for this part) , import Demo SQL ( more recomended, because you can edit latter). and config your .env

Thank you for your reply bro. Here are the steps I followed as per your explanations.

On a Laragon, I created a black project (abcd.xyz).

As per your recommendation, I extracted the script, uploaded the database (demo.sql).
Then, I edited the file and replaced the code (you've shared) with following file:
resources\views\admin\settings\index.blade.php

Then, I edited the env file with following changes:
# Database Settings
DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=rocketlms
DB_USERNAME=root
DB_PASSWORD=

# SMTP Settings
MAIL_DRIVER=smtp
MAIL_MAILER=smtp
MAIL_HOST=smtp.google.com
MAIL_PORT=
MAIL_USERNAME=[email protected]
MAIL_PASSWORD=
MAIL_ENCRYPTION=
MAIL_FROM_ADDRESS=[email protected]
MAIL_FROM_NAME="${APP_NAME}"


Finally, I tried accessing the URL https://abcd.xyz but it is showing following error:

1659869151775.png
 
Last edited:

Forum statistics

Threads
69,206
Messages
908,351
Members
236,895
Latest member
jeremcastdlp

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