Home Blog

Failed to clear cache. Make sure you have the appropriate permissions.

0

Problem: When hit the following command got

Failed to clear the cache. Make sure you have the appropriate permissions

message in the command line.

php artisan cache:clear
php artisan config:clear
php artisan config:cache

Solution:

If the data directory doesn’t exist under (storage/framework/cache/data), then you will have this error.

This data directory doesn’t exist by default on a fresh/new installation.

Creating the data directory manually at (storage/framework/cache) should fix this issue

 

How Can I Redirect http to https When Host Laravel Project

0

Problem:

When Want redirect root domain or subdomain Http to https in Laravel project The reason behind Http to https redirection is the .htaccess manage on the root of your domain or subdomain.

  1. if you hit your domain/public you will be accessible of your project
  2. if you want to directly show the project on the domain you manage .htaccess with the following:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>

Solution:

Change .htaccess code on your root domain/subdomain with the following codes

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>

Invalid Student Shows When Want To View The Student Details

0

Problem: Invalid Student Shows When Want To View The Student Details

The reason behind of invalid student message is some reason which mentions below:

  1. Address Info Missing
  2. Parent Info Missing
  3. Guardian Info Missing

Solution:

When Student Registration Or Import

    1. Enter Address Info.
    2. Enter Parent Info.
    3. Enter Guardian Info.

OR, Manually manage on Database:

  1. Enter addressinfos table data with students_id.
  2. Enter the parent_details table data with students_id.
  3. Enter the guardian_details & student_guardians table data with students_id.

Manage Regular Class Remotely Powered By Zoom in Edu Firm

0

Unlimited Edu Firm is School & College Information Management System. School or College can manage student & staff detail with the different helpful module.

Now You can manage your online class using zoom meeting. Schedule Zoom meeting in Edu Firm and take your regular class from home during COVID-19.

for the schedule of meeting demo:

  1. login with our admin demo panel (username: admin@edufirm.com, password: 123)
  2. go to more section and click on Meeting – Remote Class
  3. now you can schedule your meeting for testing purpose
  4. after that students view the joint link on his/her login panel.

for more info:

DIRECT TOUCH WITH DEVELOPER
Email/Skype:freelancerumeshnepal@gmail.com
WhatsApp/Viber/Imo:+977-9868156047

Unlimited Edu Firm Quick Install Wizard

0

Unlimited Edu Firm Quick Install Wizard

Unlimited Edu Firm Install on Local with Xampp

0

Unlimited Edu Firm Install on Local with Xampp

Unlimited Edu Firm Install on Local with Laragon

0

Unlimited Edu Firm Install on Local with Laragon

Unlimited Edu Firm Install on Cpanel Live Server

0

Unlimited Edu Firm is School & College Information Management System. We will explain Edu Firm Install on Cpanel Live Server basic steps. Before we start the installation, check Requirement & Permission.

Requirements:

  • Php (version 7.1.0 required)
    • Openssl
    • PDO
    • Mbstring
    • Tokenizer
    • JSON
    • CURL
  • Apache
    • Mod_rewrite

Permissions:

storage/app/                     775
storage/framework/           775
storage/logs/                    775
bootstrap/cache/                775

Installation Steps:

1. Unzip EduFirm on your hosted location.
2. Setup Environment with.env Variables.

APP_NAME=EduFirm
APP_ENV=local
APP_DEBUG=false
APP_LOG_LEVEL=debug
APP_URL=
 
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
 
BROADCAST_DRIVER=log
CACHE_DRIVER=array
SESSION_DRIVER=file
QUEUE_DRIVER=sync
 
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
 
MAIL_DRIVER=smtp
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=TLS
 
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=

3. Set your app URL like http://demo.unlimitededufirm.com
4. Setup Database Detail Using Method 1 or Method 2

Method 1:

  • Goto Database\seeds location
  • Open UsersTableSeeder.php
//Edit these code and set you Name, Email, Password for Super  Admin to login project.
     DB::table('users')->insert([
       'name' => '**Name Here**',
       'email' => '**Email Here**',
       'password' => bcrypt('**Password**'),
       'status' => 1
    ]); 
  • Save this Code
  • Create a database on your PHPMyAdmin.
  • Set database detail on Config/database.php
  • Migrate the database using the following command:
php artisan migrate --seed

Method 2:

  • Create a database on your PHPMyAdmin.
  • Set your database detail on Config/database.php
  • Open Database & Import provided the database 

Default Login Detail: Email-  superadmin@edufirm.com , Password – admin

5. Create .htaccess on the root with the following code to redirect the public folder.

<IfModule mod_rewrite.c>  
RewriteEngine On  
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>

6. Please delete if you found any previous cache on bootstrap/cache/config.php. delete config.php from here.
7.Hit your hosted URL & access IMS
8.If you log in the first time use your Super Admin ID and Password.
Help: see step no.2 methods 1 or methods 2 for id and password reference.