Do you have a good course about laravel and vue js to make a ecommerce?

|
R_IT_Geek 2019-08-15 07:31:46
isnopitag 2019-08-15 07:31:33
Do you have a ssh connection to the server?

no…

isnopitag 2019-08-15 07:32:07
R_IT_Geek 2019-08-15 07:31:46
no…

A terminal to excute commands?

skys215 2019-08-15 07:34:06
isnopitag 2019-08-15 07:31:33
Do you have a ssh connection to the server?

It’s a shared host

isnopitag 2019-08-15 07:36:02
I don’t understand what kind of a shared host, it’s a service that pay?
skys215 2019-08-15 07:37:08
Shared host just give you a ftp account and a cpanel
You use ftp to upload files
Have no terminal to use
isnopitag 2019-08-15 07:37:34
skys215 2019-08-15 07:37:08
Shared host just give you a ftp account and a cpanel
You use ftp to upload files
Have no terminal to use

Perfect

skys215 2019-08-15 07:37:46
You can’t even enable or disable php libraries or Apache modules
R_IT_Geek 2019-08-15 07:38:30
skys215 2019-08-15 07:37:46
You can’t even enable or disable php libraries or Apache modules

Exactly

skys215 2019-08-15 07:39:04
But mostly it’s free
isnopitag 2019-08-15 07:39:46
The php info picture I can’t see it, so this my solution
R_IT_Geek 2019-08-15 07:40:37
skys215 2019-08-15 07:39:04
But mostly it’s free

but it’s a service that pay…

isnopitag 2019-08-15 07:40:52
Check the libraries of php that you have in your shared host
skys215 2019-08-15 07:41:27
R_IT_Geek 2019-08-15 07:40:37
but it’s a service that pay…

How much do you pay?

isnopitag 2019-08-15 07:42:57
’cause the best option that you may have is downgrade from 5.7 to 5.6 or 5.5 version, I say this ’cause the php’s libraries it’s necessary
R_IT_Geek 2019-08-15 07:46:10
skys215 2019-08-15 07:41:27
How much do you pay?

Almost three dollars a month…

Satish Tigga 2019-08-15 07:47:45
Can Anyone Help I have deployed the project inside subfolder but only index page is visible rest link are 404 please help
R_IT_Geek 2019-08-15 07:57:47
skys215 2019-08-15 07:29:55
I mean…read the laravel code, add dd to dump variables to debug the code

According to this photo, I get an error in __callStatic method from the Facade class, That $instance variable isnull.

line 232

2019-08-15 08:00:49
Satish Tigga 2019-08-15 07:47:45
Can Anyone Help I have deployed the project inside subfolder but only index page is visible rest link are 404 please help

i think you should specify it in the .env file

R_IT_Geek 2019-08-15 08:03:38
R_IT_Geek 2019-08-15 07:57:47
According to this photo, I get an error in __callStatic method from the Facade class, That $instance variable isnull.

line 232

$instance variable comes from the output of getFacadeRoot method.

R_IT_Geek 2019-08-15 08:07:47
R_IT_Geek 2019-08-15 08:03:38
$instance variable comes from the output of getFacadeRoot method.

laravel_discuss-11062.jpg
$name is “auth”

R_IT_Geek 2019-08-15 08:14:19
skys215 2019-08-15 07:37:46
You can’t even enable or disable php libraries or Apache modules

Does this variable belong to the Facades/Auth.php file?

skys215 2019-08-15 08:14:57
Did you use Auth:: in your code?
R_IT_Geek 2019-08-15 08:16:30
skys215 2019-08-15 08:14:57
Did you use Auth:: in your code?

yes, I used to do that before, too

skys215 2019-08-15 08:18:55
Try comment it(add // in front of the code)
R_IT_Geek 2019-08-15 08:19:40
skys215 2019-08-15 08:18:55
Try comment it(add // in front of the code)

OK.

R_IT_Geek 2019-08-15 08:28:25
skys215 2019-08-15 08:18:55
Try comment it(add // in front of the code)

I didn’t use anywhere.😢

R_IT_Geek 2019-08-15 08:31:21
skys215 2019-08-15 08:18:55
Try comment it(add // in front of the code)

laravel_discuss-11069.jpg
this $method param is ‘id’ …

Auth::id

😐😐 I didn’t use this anywhere.

skys215 2019-08-15 08:33:05
Should have used somewhere
R_IT_Geek 2019-08-15 08:37:21
skys215 2019-08-15 08:33:05
Should have used somewhere

I used guest middleware…

Could it be because of this?

R_IT_Geek 2019-08-15 08:38:23
laravel_discuss-11072.jpg

skys215 2019-08-15 08:40:31
Maybe
R_IT_Geek 2019-08-15 08:42:27
skys215 2019-08-15 08:40:31
Maybe

Do you know where it is defined?
I can’t find this.

skys215 2019-08-15 08:43:27
Comment this line
R_IT_Geek 2019-08-15 08:47:49
skys215 2019-08-15 08:43:27
Comment this line

It had nothing to do with it…
It gave the same error.

skys215 2019-08-15 08:50:46
Dump callstack check where did auth::Id come from
Or global search auth::id
R_IT_Geek 2019-08-15 09:01:29
It was inside this path :

public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php

and this method

protected function context()
{
try {
return array_filter([
‘userId’ => Auth::id(),
’email’ => Auth::user() ? Auth::user()->email : null,
]);
} catch (Throwable $e) {
return [];
}
}

i Comment this line, but, again, he made the same error.

WebDeveloperFromHM 2019-08-15 09:03:23
How can localization laravel?
R_IT_Geek 2019-08-15 09:05:20
skys215 2019-08-15 08:50:46
Dump callstack check where did auth::Id come from
Or global search auth::id

Can you find a way?

skys215 2019-08-15 09:06:55
R_IT_Geek 2019-08-15 09:05:20
Can you find a way?

It’s a bit weird

dennis 2019-08-15 09:08:23
R_IT_Geek 2019-08-15 09:01:29
It was inside this path :

public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php

and this method

protected function context()
{
try {
return array_filter([
‘userId’ => Auth::id(),
’email’ => Auth::user() ? Auth::user()->email : null,
]);
} catch (Throwable $e) {
return [];
}
}

i Comment this line, but, again, he made the same error.

You should not edit this files

skys215 2019-08-15 09:11:18
Do you have the call stack?
skys215 2019-08-15 09:11:48
R_IT_Geek 2019-08-15 09:01:29
It was inside this path :

public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php

and this method

protected function context()
{
try {
return array_filter([
‘userId’ => Auth::id(),
’email’ => Auth::user() ? Auth::user()->email : null,
]);
} catch (Throwable $e) {
return [];
}
}

i Comment this line, but, again, he made the same error.

dump(debug_backtrace()); inside this function

R_IT_Geek 2019-08-15 10:35:48
skys215 2019-08-15 09:11:48
dump(debug_backtrace()); inside this function

hi,

The error is from bootstrapWith method of vendor/laravel/framework/src/Illuminate/Foundation/Application.php class.

R_IT_Geek 2019-08-15 10:39:39
skys215 2019-08-15 09:11:48
dump(debug_backtrace()); inside this function

laravel_discuss-11091.jpg
Let the bootstrapper variable be “IlluminateFoundationBootstrapLoadEnvironmentVariables”.

skys215 2019-08-15 10:41:19
keep searching
R_IT_Geek 2019-08-15 10:42:41
skys215 2019-08-15 10:41:19
keep searching

OK.

R_IT_Geek 2019-08-15 11:01:46
skys215 2019-08-15 10:41:19
keep searching

$this[‘events’]->dispatch(‘bootstrapping: ‘.$bootstrapper, [$this]);

I don’t understand this line, I don’t know how to get it.😢

mwangiismuthui 2019-08-15 11:09:20
leonardosg 2019-08-13 03:49:42
My code of controller.

Your validation parameters seems to be wrong… Check them

Ahmed Magdi 2019-08-15 11:17:55
Hello
Anyone can help me with notification system??
What is better to use
Notification or events ??
Patricklab 2019-08-15 11:20:27
MatPk 2019-08-07 11:16:53
hey guys do you have a good course about laravel and vue js to make a ecommerce ?

search on youtube

|