I'm new in Laravel. I've been followed few threads of how to load custom php library to Laravel 4,2 without dump autoload. So far I'm unable or I calling the function incorrect.
What I have so far is:
I file
autoload_classmap.phpI've added my class'ImageResize' => $baseDir . '/app/libraries/ImageResize.php',In file
autoload_static.phpI've added'ImageResize' => __DIR__ . '/../..' . '/app/libraries/ImageResize.php',
Then in my controller in the function where I want to be shown this class I've tried like this
public function upload() {
$FmyFunction1 = new \ImageResize();
return View::make('site.admin.upload', [
'FmyFunction1' => $FmyFunction1
]);
}
Result is when I try to load /upload page I've got error:
'Class 'ImageResize' not found'
Is this error from wrong calling the class and/or error from not include correctly the class in Laravel at all? Can anyone help me?
ps. The reason I can't use dump autoload is because I have only ftp access to the host and I don't have SSH...
ImageResizeand there is no namespace? It's possible the class is named something differently than the file.class ImageResize { .... }