And none worked?
does it for php ini?
does it can for php ini settings?
Did u specify d path it should save d image to?
Where can I find a simple blog tutorial?
Anyone has experienced slow requests with Guzzle?
i dont understand do you have an example?
i can upload it with move() normally
i have problems with intervention image
I think intervention image is having problems with d file u passing to it.
i tried many images
And none worked?
nope
I don’t understand
does it can for php ini settings?
like max upload file
like max upload file
Nah
ok
i get images from request method
$request->file(‘images’);
and i passed it to this function
$filePath = “uploaded/images/{$year}/”;
UploadedFile {#240 ▼
-test: false
-originalName: “man.png”
-mimeType: “image/png”
-error: 0
#hashName: null
path: “E:wamp64tmp”
filename: “php5B20.tmp”
basename: “php5B20.tmp”
pathname: “E:wamp64tmpphp5B20.tmp”
extension: “tmp”
realPath: false
writable: false
readable: false
executable: false
file: false
dir: false
link: false
}
-test: false
-originalName: “man.png”
-mimeType: “image/png”
-error: 0
#hashName: null
path: “E:wamp64tmp”
filename: “php5B20.tmp”
basename: “php5B20.tmp”
pathname: “E:wamp64tmpphp5B20.tmp”
extension: “tmp”
realPath: false
writable: false
readable: false
executable: false
file: false
dir: false
link: false
}
why its not readable 😐
i cant undrestand
-test: false
-originalName: “man.png”
-mimeType: “image/png”
-error: 0
#hashName: null
path: “E:wamp64tmp”
filename: “php5B20.tmp”
basename: “php5B20.tmp”
pathname: “E:wamp64tmpphp5B20.tmp”
extension: “tmp”
realPath: false
writable: false
readable: false
executable: false
file: false
dir: false
link: false
}
it has readable set to false. Myb dats d error.
Myb u should try dix approach.

hello everyone I ahead with this problem
when I use jenkins to integrate code to server then it show me with square block,
how to solve it please
when I use jenkins to integrate code to server then it show me with square block,
how to solve it please
Use –no-progress with composer commands

composer install –no-interaction –no-progress –prefer-dist –optimize-autoloader;
________________
for coninue post
Page function.php
function post($text)
{
$text=substr($text,0,800);
$text=substr($text,0,strrpos($text,” “));
$text=$text.” …”;
return $text;
}
Page index.php
<p><?php echo post($postfetch[“cont”]); ?></p>
In laravel
╍______________________
And what is change in function.php
And
index.php
In laravel
??
________________
for coninue post
Page function.php
function post($text)
{
$text=substr($text,0,800);
$text=substr($text,0,strrpos($text,” “));
$text=$text.” …”;
return $text;
}
Page index.php
<p><?php echo post($postfetch[“cont”]); ?></p>
In laravel
╍______________________
And what is change in function.php
And
index.php
In laravel
??
Laravel has a helper function for this.
str_limit(str, int, ‘…’)
The firsr argument is the string the second is the number of letters to display before the limit. And the third is what to show after you have reached the limit. For me I put the link to the post
str_limit(str, int, ‘…’)
The firsr argument is the string the second is the number of letters to display before the limit. And the third is what to show after you have reached the limit. For me I put the link to the post
How to use?
When read data from database
{{ $text->describe }}
With
Str_limit ??
When read data from database
{{ $text->describe }}
With
Str_limit ??
Make that your first argument
Traversy media YouTube channel “Laravel from scratch”
You can follow laracast tutorial .
getUsername()
inside Users class
$users = new Users();
$users->getUsername();
how can i use $users in all my function inside Post class without redeclaring
$users = new Users()
???
getUsername()
inside Users class
$users = new Users();
$users->getUsername();
how can i use $users in all my function inside Post class without redeclaring
$users = new Users()
???
create un instance variable
redirect()->route(‘dashboard’);
how can i do?
redirect()->route(‘dashboard’);
how can i do?
With()
with with() doesn’t it pass like route parameter?
i dont understand do you have an example?
redirect(route(‘users.index’).’?’.$request->getQueryString()), but i think it wrong
redirect(route(‘users.index’).’?’.$request->getQueryString()), but i think it wrong
https://laravel.com/docs/5.8/redirects#redirecting-named-routes
return redirect()->route(‘profile’, [‘id’ => 1]);

How to clear this error
What error? You typed the right command after that