Vue File Manager with Laravel - Your Private Cloud

Vue File Manager with Laravel - Your Private Cloud V2.2.7 - Nulled

No permission to download

Modsauc3

Active member
Mar 13, 2020
302
75
28
33
3xodus.digital
Panels simply things. So if you can’t install it on a panel, meaning cpanel, plesk etc then stay with something a little easy to install..
 

Modsauc3

Active member
Mar 13, 2020
302
75
28
33
3xodus.digital
I don’t mean to be a dick. But install this on its own vps.. no panel. Just command-line. I got no problems. If you want the tuto from the developer himself let me know
 

KangMus

Active member
Oct 3, 2020
163
54
28
fyi bro delete the number on your file name

codecanyon-xxxxxxx-vue-file-ma....
 

LuckyEnvato

Active member
Jun 9, 2020
187
37
28
Trust me! I tried and it's not working. Better a video or image guides. Thank you
What Control Panel you are using.
Make sure you have access to composer to install dependencies first.

Put Files in Public folder into public_html (Directadmin, cpanel) or httpdocs (plesk).

The rest in the folder above public_html.
 

r3turn_z3r0

Well-known member
Feb 3, 2020
141
175
50
Paradise
Does anyone have a video of how to install it on shared hosting? Why get in touch with someone to install it for you when you can show it here step by step! Pictures or videos would be much appreciated thank you!
There's no one size fits all approach for shared hosting. I can get it done for you ASAP, for a small fee.
 

aceitachi

Member
Mar 28, 2021
52
-3
8
🌙
I'm getting blank page after the installation. Everything went well. And I uploaded a file and refreshed to check if the data persists., and then it's this blank screen with these errors.

Has anyone faced the same issue? Or if anyone has solution please do tell.
Thank you.
1622042886511.png
 

iamanoob

Active member
May 28, 2020
404
127
43
I'm getting blank page after the installation. Everything went well. And I uploaded a file and refreshed to check if the data persists., and then it's this blank screen with these errors.

Has anyone faced the same issue? Or if anyone has solution please do tell.
Thank you.
1622042886511.png
SAME ISSUE,
I TOO HAVE THE SAME ISSUE

Black Screen after installing it
 

aceitachi

Member
Mar 28, 2021
52
-3
8
🌙
SAME ISSUE,
I TOO HAVE THE SAME ISSUE

Black Screen after installing it
I found a simple solution.

The issue here is with the language translation module.

Goto AppFunctionsController and in get_translations($lang) function change the return to $translation.

FROM

PHP:
public function get_translations($lang)
    {
        try {
            \DB::getPdo();

            $translations = Cache::rememberForever("language-translations-$lang", function () use ($lang) {
                return Language::whereLocale($lang)->first()->languageTranslations;
            });

            return map_language_translations($translations);

        } catch (PDOException $e) {

            return get_default_language_translations();
        }
    }

TO

PHP:
public function get_translations($lang)
    {
        try {
            \DB::getPdo();

            $translations = Cache::rememberForever("language-translations-$lang", function () use ($lang) {
                return Language::whereLocale($lang)->first()->languageTranslations;
            });

            return $translations;
            // return map_language_translations($translations);

        } catch (PDOException $e) {

            return get_default_language_translations();
        }
    }

And there's the issue with the delete function too. I guess that is with the local filesystem driver.
 
Sep 1, 2020
105
2
18
I found a simple solution.

The issue here is with the language translation module.

Goto AppFunctionsController and in get_translations($lang) function change the return to $translation.

FROM

PHP:
public function get_translations($lang)
    {
        try {
            \DB::getPdo();

            $translations = Cache::rememberForever("language-translations-$lang", function () use ($lang) {
                return Language::whereLocale($lang)->first()->languageTranslations;
            });

            return map_language_translations($translations);

        } catch (PDOException $e) {

            return get_default_language_translations();
        }
    }

TO

PHP:
public function get_translations($lang)
    {
        try {
            \DB::getPdo();

            $translations = Cache::rememberForever("language-translations-$lang", function () use ($lang) {
                return Language::whereLocale($lang)->first()->languageTranslations;
            });

            return $translations;
            // return map_language_translations($translations);

        } catch (PDOException $e) {

            return get_default_language_translations();
        }
    }

And there's the issue with the delete function too. I guess that is with the local filesystem driver.
In other words script not usable?
 

aditbaco

Member
Aug 8, 2020
59
27
18
Land of Fairies
I found a simple solution.

The issue here is with the language translation module.

Goto AppFunctionsController and in get_translations($lang) function change the return to $translation.

FROM

PHP:
public function get_translations($lang)
    {
        try {
            \DB::getPdo();

            $translations = Cache::rememberForever("language-translations-$lang", function () use ($lang) {
                return Language::whereLocale($lang)->first()->languageTranslations;
            });

            return map_language_translations($translations);

        } catch (PDOException $e) {

            return get_default_language_translations();
        }
    }

TO

PHP:
public function get_translations($lang)
    {
        try {
            \DB::getPdo();

            $translations = Cache::rememberForever("language-translations-$lang", function () use ($lang) {
                return Language::whereLocale($lang)->first()->languageTranslations;
            });

            return $translations;
            // return map_language_translations($translations);

        } catch (PDOException $e) {

            return get_default_language_translations();
        }
    }

And there's the issue with the delete function too. I guess that is with the local filesystem driver.
confirmed on the delete function bug, deleting files only removed it from the web but the local file still there. Could someone have a fix on this please?
 
Last edited:

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