Krixnaas

Krixnaas @krixnaas

About: Blockchain Enthusiast & Full Stack Developer <br/>Here, I collect all the goodies I can find while I learn as much as I can about web-development.

Location:
Australia
Joined:
Oct 9, 2021

Krixnaas
articles - 41 total

payload generate:types throwing error promises

If you are wondering, where to add 'type':'module' ?

Learn More 0 0Jul 27

10 Free Most Useful apps for your Mac

In this video, I have find out 10 Free Most Useful apps for your Mac. Alfred DaVinci...

Learn More 0 0Oct 17 '24

Laravel Herd NGINX ISSUE

Run PowerShell as Admin iisreset /stop Enter fullscreen mode Exit fullscreen...

Learn More 0 0Oct 17 '24

Find out 10 Free Most Useful Apps for Content Creators - 2024

Find out 10 Free Most Useful Apps for Content Creators - 2024 https://youtu.be/q2npHJc4Xe4

Learn More 0 0Oct 7 '24

419 Page Expired Issue in Laravel

chmod 775 -R bootstrap/ storage/ php artisan config:cache

Learn More 0 0May 15 '24

Securing your website through an .htaccess file with password protection

This article details the process of securing a directory via SSH by setting up an .htaccess and...

Learn More 1 0Mar 7 '24

Communication link failure:1153 Got a packet bigger than 'max_allowed_packet' bytes"

In etc/my.cnf try changing the max_allowed _packet and net_buffer_length...

Learn More 0 0Jun 20 '23

Undo Git discarded changes

A post by Krixnaas

Learn More 0 0Jun 5 '23

Php artisan migrate throws table base or view on found [Solved]

This error was occurring because of a scheduled task in laravel that involved a database lookup. By...

Learn More 1 0May 4 '23

[Solved]You must call ‘the_content’ function in the current template

go to your Dashboard-&gt; Settings -&gt; Permalinks and simply click on Save Changes

Learn More 0 0Mar 19 '23

Active / Offline state of browser tab

&lt;script&gt; document.addEventListener("visibilitychange", function() { document.title =...

Learn More 0 0Mar 16 '23

Expandable Yajra DataTable Laravel

var table = $('#users-table').DataTable({ processing: true, serverSide: true, ...

Learn More 0 0Mar 14 '23

Laravel 9 with AdminLTE3

In Nepali https://youtu.be/d5aJXPRiWk0 In...

Learn More 0 0Feb 4 '23

Increase the Processing Size on Beanstalkd

sudo nano etc/default/beanstalkd add BEANSTALKD_EXTRA=”-z max” eg. 52428000000 restart...

Learn More 0 0Feb 1 '23

Update all data without condition on Laravel

$this-&gt;model-&gt;query()-&gt;update(['active_status' =&gt;...

Learn More 5 0Nov 8 '22

DataBase Table Indexing

If you have large number of data and your query is taking long time to execute. Database table...

Learn More 0 0Aug 16 '22

[Resolved] WordPress - Error in DataBase Connection or Access denied for user@'localhost' ?

Situation: Website migrated from one host to another using UpDraft. Admin able to login on...

Learn More 4 0Aug 10 '22

Debug in PHP/Laravel Docker with xDebug

Install xDebug sudo apt-get install php-xdebug; or specify the version sudo apt-get...

Learn More 6 1Jul 29 '22

Laravel Migration Add Column After

php artisan make:migration update_users_table --table=users If update file already exist php artisan...

Learn More 9 0Jun 16 '22

Timeout of 3 seconds exceeded. Laravel & Docker

sudo apt-get install php-mbstring If it throws some error try above command after apt-get update

Learn More 5 0Jun 14 '22

How to enable PCNTL on Ubuntu server 16.04

for ubuntu 18 and 20: [replace 7.4.28 with your php version] 1- php -v result for exapmle: PHP...

Learn More 5 0Jun 13 '22

Run Laravel on Different Port

php artisan serve --port=8080 Enter fullscreen mode Exit fullscreen mode ...

Learn More 9 0Jun 6 '22

Set Current Date with Format on PostMan Request

const moment = require('moment'); pm.globals.set("today", moment().format("YYYY-MM-DD")); ...

Learn More 8 0Jun 3 '22

Get Database name || or PHP info in Laravel

Route::get('/dbinfo', function(){ $databaseName = \DB::connection()-&gt;getDatabaseName(); ...

Learn More 11 0May 25 '22

Get JSON Data size in Byte

$size = mb_strlen(json_encode($content, JSON_NUMERIC_CHECK), '8bit'); Enter fullscreen mode ...

Learn More 5 0May 18 '22

Better way of using TryCatch in PHP | Laravel

Provide you a timestamp, message as well as path try{ // your code } catch (Exception...

Learn More 10 0May 5 '22

Load data on Select2 | Jquery

var data = [{ id: 0, text: 'enhancement' }, { id: 1, text: 'bug' }, { id: 2, text: 'duplicate'...

Learn More 6 0Apr 29 '22

Multiple Laravel Application to Communicate in Docker Container

version: '3' services: app1_server: container_name : "app1_server" image : "app1_server" ...

Learn More 5 0Apr 13 '22

Header request with underscore is not allowed?

$headers = apache_request_headers(); $token =$headers['_tb_token']; Enter fullscreen mode ...

Learn More 5 0Apr 5 '22

Send Notification on Expo ReactNative App from Laravel | PHP

public function notifyApp($app_id){ $payload = array( 'to' =&gt; $app_id, ...

Learn More 8 0Mar 26 '22