Anyone used webpack in laravel?
Have you used RDS Aurora Serverless before?
i chane php ini file settings in cpanel change success but no change in my project why?
04 para desenvolvimento?
Ok, então quem notou o fato de que, mesmo quando você liga o PC, a bateria ainda está descarregando?
Okay so who has noticed the fact that even when you power of the pc, the battery is still draining?
Can anyone help me with this ?
and will not cheak if the access token
has been expired or not
even if your access token already expired and your scope not matching admin
this order
1-check laravel_token cookie
as first if it founded so the request pass
2- when there is no cookie
it check authrazition header and look if access_token expired or not
3-then finally laravel check
the passport scope
so i need to change this order to let laravel check the laravel_token cookie at last

yes
Boy, Laravel mix is a script based on webpack syntax. You can use webpack itself in your webpack.mix.js file. Pay attention to this line:
let mix = require(‘laravel-mix’);
It’s webpack.

Determine your changes has been applied on server with phpinfo() method. You can find details in google
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at webmaster@ihs.tolosaadat.org to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache Server at ts.edu.af Port 8
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at webmaster@ihs.tolosaadat.org to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache Server at ts.edu.af Port 80
quem usa o ubuntu 19.04 para desenvolvimento?
Ok, então quem notou o fato de que, mesmo quando você liga o PC, a bateria ainda está descarregando?
who uses ubuntu 19.04 for development?
Okay so who has noticed the fact that even when you power of the pc, the battery is still draining?
I am new to docker, I am trying to containerize my existing lumen app. But I have an issue, I am not albe to install dependency using composer. Here is my dockerfile. Can anyone help me with this ?
# Base Image
FROM php:7.3-apache
# Update base image and install required modules
RUN apt-get update && apt-get install -y
libzip-dev
libbz2-dev
libjpeg62-turbo-dev
libpng-dev
libfreetype6-dev
zip
unzip
&& rm -r /var/lib/apt/lists/*
&& docker-php-ext-configure pdo_mysql –with-pdo-mysql=mysqlnd
# Install required extensions
RUN docker-php-ext-install mbstring tokenizer mysqli pdo_mysql gd
# Enable rewrite mod
RUN a2enmod rewrite
# Install composer
RUN curl -sS https://getcomposer.org/installer | php — –install-dir=/usr/local/bin –filename=composer
# Set working directory
WORKDIR /var/www/html
# Copy application contents
COPY . .
# Install dependency
RUN composer install
# Expose port 80
EXPOSE 80
# Start application
CMD bash -c “php -S 0.0.0.0:8000 -t public”
What should we do? Teach you here? Google man, Google!
+1
});
$.ajax({
url: ‘{{ route(‘route_name’) }}’,
data: {
_method:’delete|put|etc’
_token: ‘{{ csrf_token() }}’,
},
method: ‘post’,
success: function (result) {
},
});
This section could also helps
jQuery(document).ready(function(){
jQuery(‘#the tag id’).click(function(e){
e.preventDefault();
$.ajaxSetup({
headers: {
‘X-CSRF-TOKEN’: $(‘meta[name=”_token”]’).attr(‘content’)
}
});
jQuery.ajax({
url: “{{ route(‘route name’) }}”,
method: ‘method ‘,
data: {
Data:whatever
},
success: function(result){
}});
});
});
</script>
This section could also helps
*help
*talks 😁
Thank you brother
If I remember well those are the possible values for _method.
If I remember well those are the possible values for _method.
Yes those are the methods