laravelista / comments

Native comments for your Laravel application.
MIT License
745 stars 144 forks source link

moveing package from local to sharing host #136

Closed mahdi4k closed 3 years ago

mahdi4k commented 3 years ago

hi im using sharing host and im Inaccessibility to command line for composer . all files is copied to host like vendor folde and trait is added. but is still not working. what i do?

mabasic commented 3 years ago

This has nothing to do with this package, so I will be closing this issue.

A few things to verify and try:

mahdi4k commented 3 years ago

im copy the entire project .only thing is changed in host directory vendor/autoload.php and bootstrap/app.php .other package working well

mabasic commented 3 years ago

Can't help you here. There is something you have missed which has nothing to do with this package.

Do you get any errors. Did you check the logs

PierreMatos commented 3 years ago

I guess I have the same problem. Its working fine in the localhost but in the server It just prints (['model' => $model]) in the page i'm using Laravel 8, I've also copied the whole project to the server and cleared all caches

mahdi4k commented 3 years ago

I guess I have the same problem. Its working fine in the localhost but in the server It just prints (['model' => $model]) in the page i'm using Laravel 8, I've also copied the whole project to the server and cleared all caches

remove all cache files in storage folder

Nikunj1696 commented 3 years ago

image

i have same issue i also tried to clear caches

mabasic commented 3 years ago

It looks like the service provider is not loaded automatically. Try adding it manually following the instructions in the readme.

Nikunj1696 commented 3 years ago

everything is up to date still not solved...

mabasic commented 3 years ago

It could be up to date, but laravel needs to autoload the package for it to work (this requires command line access) or you need to manually add this.

If the package works for you locally, but stops working on production environment, then you need to deduce what are the differences because most likely it is not because of this package.