What Control Panel you are using.Trust me! I tried and it's not working. Better a video or image guides. 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.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!
How to null this version?Edit :
Managed to download 1.8.3 from your link
It's an empty page.
Download Vue File Manager with Laravel v1.8.3.2 - Your Private Cloud Nulled Free
v1.8.3.2 Thanks To @appcalifa
Release date: 17. April 2021
Fixes:
Fixed multi select on desktop browser
Vue File Manager with Laravel v1.8.5 - Your Private Cloud
thanks to @appcalifa
SAME ISSUE,
I found a simple solution.SAME ISSUE,
I TOO HAVE THE SAME ISSUE
Black Screen after installing it
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();
}
}
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();
}
}
In other words script not usable?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.
I cannot say it's not usable. With some tweak in the code it can be made workable.In other words script not usable?
pretty sure that's exactly what it means lolI cannot say it's not usable. With some tweak in the code it can be made workable.
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?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.