Laravel ошибка 500 server error

I have installed Laravel many times on Windows OS but never had this problem.

However, on Ubuntu 14.04 I am getting a 500 Internal Server Error, and messages like this in my logs:

[Wed Jul 22 10:20:19.569063 2015] [:error] [pid 1376] [client 127.0.0.1:52636] PHP Fatal error: require(): Failed opening required ‘/var/www/html/laravel_blog/../bootstrap/autoload.php’ (include_path=’.:/usr/share/php:/usr/share/pear’) in /var/www/html/laravel_blog/index.php on line 22

Previously I’ve had problems when mod_rewrite was not installed or set up properly, but I have installed it and it is not working. Changed .htaccess as well from original to this.

    +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

I’ve given access to all my folders and files inside i.e.

/var/www/html/laravel_project

I have all the necessary extensions needed for Laravel 5+ as well. Is there something left that I didn’t do?

IMSoP's user avatar

IMSoP

89.8k13 gold badges117 silver badges170 bronze badges

asked Jul 21, 2015 at 15:18

DpEN's user avatar

9

Finally Overcame the problem

  • It was not the .htaccess file that was the problem nor the index.php. The problem was on accessing the files and requiring permissions.

For solving the problem i ran the following commands through terminal.

sudo chmod -R 755 laravel_blog

and then type below to allow laravel to write file to storage folder

chmod -R o+w laravel_blog/storage

This two commands solved the problem.

C.Liddell's user avatar

C.Liddell

1,08410 silver badges19 bronze badges

answered Jul 22, 2015 at 11:06

DpEN's user avatar

DpENDpEN

4,2263 gold badges17 silver badges26 bronze badges

12

Create the .env file and also run :

php artisan key:generate

This worked for me after pulling a git project.

After creating .env file and generating the key, run the code below:

php artisan cache:clear 
php artisan config:clear

tchap's user avatar

tchap

3,4123 gold badges29 silver badges46 bronze badges

answered May 3, 2017 at 14:23

Goodlife's user avatar

GoodlifeGoodlife

3,8222 gold badges24 silver badges23 bronze badges

5

Try to check if you have .env file.

Mostly this thing can cause something like that. Try to create a file then copy everything from .env.example, paste it to your created file and name it .env. or jsut simply rename the .env.example file to .env and run php artisan key:generate

Unheilig's user avatar

Unheilig

16.2k193 gold badges68 silver badges98 bronze badges

answered Sep 27, 2018 at 5:40

Lesther's user avatar

LestherLesther

5215 silver badges6 bronze badges

2

After installing run below command

sudo chmod 755 -R laravel
chmod -R o+w laravel/storage

here «laravel» is the name of directory where laravel installed

answered Mar 8, 2016 at 5:58

Sujendra Kumar's user avatar

2

Make sure a .env file, containing an APP_KEY, exists in root.

What should be in the .env hasn’t been explicitly stated in other solutions, and thought I’d boil it down to the sentence above.

This fixed my 500 error on a fresh install of Laravel.

Steps:

  1. Create a .env file in root (e.g. touch .env)
  2. Make sure it contains at least one line: APP_KEY=
  3. Generate an app key in terminal: php artisan key:generate

More .env paramaters:

As a reference, here’s the official .env with useful baseline parameters. Copy-paste what you need:

https://github.com/laravel/laravel/blob/master/.env.example

Notes:

  • My particular installation didn’t include any .env whatsoever (example or otherwise)

  • Simply having a blank .env does not work.

  • A .env containing parameters, but no APP_KEY parameter, does not work.

Bug?: When generating an app key in terminal, it seems to falsely report success, however no key will actually get placed in the .env if the file is missing a line starting with APP_KEY=.

answered Apr 10, 2020 at 16:06

Kalnode's user avatar

KalnodeKalnode

9,4913 gold badges34 silver badges62 bronze badges

I fixed with this Command:

   rm -rf app/storage/logs/laravel.logs
   chmod -R 777 app/storage,
   php artisan cache:clear,
   php artisan dump-autoload OR composer dump-autoload

Than restart a server eather XAMPP ore another one and that should be working.

Khushal's user avatar

Khushal

3244 silver badges19 bronze badges

answered Feb 8, 2017 at 20:03

Atdhe Kurteshi's user avatar

1

I have faced a similar error. I checked the log in /var/log/apache2/error.log and found an UnexpectedValueException

I changed the owner to my apache user of the storage folder under the project dir.

sudo chown -R www-data:www-data ./storage

In my case apache2 process owner is www-data, so change this to yours, this can be found in apache2 config file. Hope this is useful to you.

Naman's user avatar

Naman

27.9k26 gold badges219 silver badges353 bronze badges

answered Jun 1, 2016 at 7:07

Snriud's user avatar

SnriudSnriud

1432 silver badges7 bronze badges

0

May another solution to this problem:

Install the required packages by running the composer command from the the root of the project:

sudo composer install

UPDATE:

  • You should not run this command on a production server, but some issues with composer can be resolved with this on local envs.

EDIT:

  • take a look at https://getcomposer.org/doc/faqs/how-to-install-untrusted-packages-safely.md to see why running composer install as root is not a good idea
  • If you need to run it as root, provide the following flags, to block third-party code from executing durin the install —no-plugins —no-scripts

LeonTheProfessional's user avatar

answered Nov 23, 2015 at 18:58

Christos Papoulas's user avatar

3

run these commands

1. composer install 
2. mv .env.example .env 
3. php artisan cache:clear 
4. composer dump-autoload 
5. php artisan key:generate

I had this problem …

answered Feb 5, 2022 at 11:58

Saeid's user avatar

SaeidSaeid

4224 silver badges9 bronze badges

Create .env file with the below cmd command:

cp .env-example .env

Then generate a key for your project:

php artisan key:generate

After that clear your caches using the below commands:

//---Delete Configuration Cahce
php artisan config:cache
//---Clear Application Cache
php artisan cache:clear

answered Jul 5, 2021 at 3:39

Hedayatullah Sarwary's user avatar

I read all the comments and suggestions. 500 — HTTP ERROR CODE represents internal server error.

Reasons for this error:

  • These mainly cause due to permission issues
  • Environment variables not found or .env file not found on your root directory
  • PHP extensions problem
  • Database problem

Fix:

  • Set the correct permissions:
  • Run these commands (Ubuntu/Debian)
find /path/to/your/root/dir/ -type f -exec chmod 644 {} \;
find /path/to/your/root/dir/ -type d -exec chmod 755 {} \;

chown -R www-data:www-data /path/to/your/root/dir/

chgrp -R www-data storage bootstrap/cache
chmod -R ug+rwx storage bootstrap/cache
  • If .env file doesn’t exist, create one by touch .env and paste your environment variables and then run
   php artisan key:generate
   php artisan cache:clear
   php artisan config:clear
   composer dump-autoload
  • Check your php.ini file and uncomment the extensions you need (In some case you have to install the extension by running this command apt-get install php7.2-[extension-name]
  • Check your database credentials and values in .env file. And grant permissions to the database user for that database.

These are some common problem you likely going to face when deploying your laravel app and once you start getting all these commands, I suggest you to make a script which will save your time.

answered Jun 30, 2019 at 7:11

Smit Patel's user avatar

Smit PatelSmit Patel

1,69018 silver badges23 bronze badges

I had PHP 7.0 and PHP 7.1 installed and I was using PHP 7.1 on command line and PHP 7.0 was enabled on Apache, that messy can bring problems when you are using Laravel Framework and localhost Apache2 with laravel.

Check your composer file first to see your PHP version.

"php": "^7.1.3",
"laravel/framework": "5.6.*",

Check your currently php version on command line

php -v

Check your currently php version enabled on Apache, I did using browser.

http://localhost

If it’s not the same disable the current version and enable the newest one.

sudo a2dismod php7.2

sudo a2enmod php7.1

sudo service apache2 restart

After that change folder permissions

sudo chmod 755 -R blog

for storage folder

chmod -R o+w blog/storage

answered Aug 31, 2018 at 20:58

Saulo Campos's user avatar

0

A frequent issue when using git:

Laravel's .gitignore ignores the .env file which when missing generates this error

Solved this by manually adding an .env file on the server or uploading it through FTP

answered Dec 31, 2018 at 17:05

Maroun Melhem's user avatar

Maroun MelhemMaroun Melhem

3,1501 gold badge20 silver badges22 bronze badges

First, if there is not .env file in your Laravel repository. Copy the .env.example file using the following cmd command cp .env.example .env and open .env file and apply your configuration if needed.

Run these commands:

//---Generate Key in your project
php artisan key:generate
//---Flush the application cache
php artisan cache:clear
//---Remove the configuration cache file
php artisan config:cache
php artisan config:clear
//---Regenerates the list of all classes that need to be included in the project
composer dump-autoload
//---Restart your Server
php artisan serve

answered May 13, 2020 at 6:10

Hedayatullah Sarwary's user avatar

Sometimes there is problem with php version. We need to change php version from server. Just write down below string in .htaccess file:

AddHandler application/x-httpd-php5 .php

Alexander Farber's user avatar

answered Oct 5, 2016 at 9:24

Riyan Sheikh's user avatar

0

First allow all permissions for your project folder (let say it’s called laravel), for the storage subfolder and its logs subsubfolder and for the vendor subfolder (laravel/storage, laravel/storage/logs and laravel/vendor).

Then check if your have .env file — if not you can run:

$ mv .env.example .env

to rename your build-in .env.example to the needed .env.

Otherwise turn on the debug mode — open .env and set

APP_DEBUG=true

and open laravel/config/app.php and change

'debug' => env('APP_DEBUG', false), 

to

'debug' => env('APP_DEBUG', true),

so you can find out what is the reason for your error.

answered Nov 29, 2016 at 15:03

tsveti_iko's user avatar

tsveti_ikotsveti_iko

6,8724 gold badges47 silver badges39 bronze badges

2

Run these two commands in the directory where Laravel is installed:

sudo chmod 755 -R DIRECTORY_NAME
chmod -R o+w DIRECTORY_NAME/storage

Then clear the cache and dump the auto load:

php artisan cache:clear
composer dump-autoload

zx485's user avatar

zx485

28.5k28 gold badges50 silver badges59 bronze badges

answered Mar 13, 2017 at 16:23

Ayman's user avatar

AymanAyman

413 bronze badges

I have faced this problem many times. Try one of these steps it helped me a lot. Maybe it will also help you.

  1. First of all check your file permissions.
  2. To fix file permissions sudo chmod 755 -R your_project
  3. Then chmod -R o+w your_project/storage to write file to storage folder.
  4. php artisan cache:clear
    composer dump-autoload
  5. php artisan key:generate
  6. Then check server requirements as per the laravel requirement.
  7. Many times you got this error because of the php version. Try changing your php version in cpanel.
  8. Then configure your .htaccess file properly

answered Jan 13, 2019 at 13:00

Anand Mainali's user avatar

Anand MainaliAnand Mainali

9931 gold badge14 silver badges23 bronze badges

If you use vagrant, try this:

First remove config.php in current/vendor.

Run these command:

php artisan config:clear
php artisan clear-compiled
php artisan optimize

NOT RUN php artisan config:cache.

Hope this help.

answered Feb 10, 2020 at 9:32

Hanh Nguyen's user avatar

Hanh NguyenHanh Nguyen

1351 silver badge13 bronze badges

if its on a live server try this

<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
    Options -MultiViews -Indexes
</IfModule>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /


# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

then also make sure that the php version in your composer.json is the same as that of your server.

Check your php version in your terminal using php -v

answered May 13, 2019 at 20:26

The Billionaire Guy's user avatar

Check if your .env file is present or not in file structure.
if not, follow the procedures:

  1. run command cp .env.example .env from projects root directory.
  2. run command php artisan key:generate
  3. refresh the browser.

Thanks.

answered May 4, 2022 at 6:53

Mehraab Hossain's user avatar

0

php artisan require APP_KEY in .env file.
So firstly create .env file in root,

sudo nano .env

and add APP_KEY= in first line,
save the file and run

sudo php artisan key:generate

answered Jan 18 at 14:51

Ahsan Khan's user avatar

Ahsan KhanAhsan Khan

1772 silver badges3 bronze badges

Run these two commands on root of laravel

find * -type d -print0 | xargs -0 chmod 0755 # for directories

find . -type f -print0 | xargs -0 chmod 0644 # for files

answered Jun 7, 2016 at 17:43

Davinder Singh's user avatar

I have a similar issue with a share Host. I was having 500 error. I just fixed by checking the Laravel version and PHP version. The error was because Laravel 5.6 doesn’t run on PHP 7.0.x Once I know this I just reconfigure the project to Laravel 5.5 that is compatible with PHP 7.0.x now everything is right. Another reason I have issues sometimes is the FTP I get corrupted Files and have to upload the project more than once.
Hope this help in the future I don’t found so many information in this topic.

answered Feb 21, 2018 at 13:07

Josean Maya's user avatar

0

For those of you who like me still got errors after trying all the other answers :

Check the version of php apache uses, latest laravel only works with php7.1.
So you have to :

sudo a2dismod php[yourversion]
sudo a2enmod php7.1
sudo systemctl restart apache2

hope this helps

answered Apr 26, 2018 at 12:06

Ika's user avatar

Make sure, you’ve run composer update on your server instance.

answered Jan 2, 2020 at 7:22

Usama Munir's user avatar

Usama MunirUsama Munir

5999 silver badges11 bronze badges

I fixed this problem by this commands:

mv .env.example .env
php artisan cache:clear
composer dump-autoload
php artisan key:generate

then

php artisan serve

Dharman's user avatar

Dharman

31.1k25 gold badges86 silver badges137 bronze badges

answered Feb 24, 2021 at 19:55

Adam's user avatar

AdamAdam

3193 silver badges9 bronze badges

0

According to the logs :

[06-Feb-2016 22:38:48 Europe/Berlin] PHP Warning:  require(/Users/tomsihap/Documents/Development/mamp/partie_1_exo/bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in /Users/tomsihap/Documents/Development/mamp/partie_1_exo/bootstrap/autoload.php on line 17
[06-Feb-2016 22:38:48 Europe/Berlin] PHP Fatal error:  require(): Failed opening required '/Users/tomsihap/Documents/Development/mamp/partie_1_exo/bootstrap/../vendor/autoload.php' (include_path='.:/Applications/MAMP/bin/php/php7.0.0/lib/php') in /Users/tomsihap/Documents/Development/mamp/partie_1_exo/bootstrap/autoload.php on line 17
[06-Feb-2016 22:43:37 Europe/Berlin] PHP Warning:  require(/Users/tomsihap/Documents/Development/mamp/partie_1_exo/bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in /Users/tomsihap/Documents/Development/mamp/partie_1_exo/bootstrap/autoload.php on line 17
[06-Feb-2016 22:43:37 Europe/Berlin] PHP Fatal error:  require(): Failed opening required '/Users/tomsihap/Documents/Development/mamp/partie_1_exo/bootstrap/../vendor/autoload.php' (include_path='.:/Applications/MAMP/bin/php/php7.0.0/lib/php') in /Users/tomsihap/Documents/Development/mamp/partie_1_exo/bootstrap/autoload.php on line 17

There are some failures opening files into the /vendor folder.

By installing and updating via composer, I was able to finally solve the issue.

sudo composer install
sudo composer update

answered Feb 6, 2016 at 23:46

tomsihap's user avatar

tomsihaptomsihap

1,71218 silver badges29 bronze badges

Make sure storage folder with write previlege (chmod o+w), work for me like a charm.

answered Sep 21, 2016 at 1:32

user3619249's user avatar

0

Because of no right to write the log’s directory.
chmod 755 storage -R

answered Nov 10, 2016 at 22:11

George Peter's user avatar

George PeterGeorge Peter

691 gold badge1 silver badge6 bronze badges

1

  • Created
  • Category
    PHP

How do you fix error 500 in Laravel? Well, we’ll share this and more about this PHP framework! Laravel is a free and open-source PHP web framework.

Most people use it to develop web applications following the model–view–controller (MVC) architectural pattern based on Symfony. 

Laravel is a popular choice for developing web applications because it is:

  • Easy to use: Laravel has a well-documented API and a large community of developers who can help with problems.
  • Secure: Laravel has many security features, including CSRF protection and password hashing.
  • Scalable: Laravel is scalable, so you can easily add new features and users to your application as needed.
  • Flexible: Laravel is a very flexible framework so that you can create various web applications.
  • Active community: Laravel has a large and active community of developers who can help and support you with problems.

Error 500 is a generic error message that various problems in Laravel can cause. Here are some common causes:

Here are seven common causes of Error 500 in Laravel:

  1. Syntax or coding errors: Typos, missing semicolons, or incorrect syntax in your code can lead to Error 500. Check your code for any syntax errors and ensure proper coding practices.
  2. Database connection issues: Problems with the database configuration, incorrect credentials, or the database server is down can cause Error 500. Verify that your database connection details are correct and that the server is running.
  3. Insufficient file or directory permissions: Improper file or directory permissions can prevent Laravel from accessing necessary files, resulting in Error 500. Ensure that the appropriate files and directories have good read and write permissions.
  4. Missing dependencies or autoload issues: If required dependencies are missing or the Composer autoloader is not configured correctly, it can cause Error 500. Make sure to run `composer install` or `composer update` to ensure all dependencies are installed correctly.
  5. Memory limit exceeded: If your Laravel application exceeds the memory limit set in the `php.ini` file, it can trigger Error 500. Consider increasing the memory limit to accommodate the needs of your application.
  6. Cache issues: Stale or corrupted cache files can cause conflicts and lead to Error 500. Clear the application cache using commands like `php artisan cache:clear,` `PHP artisan config:clear, ` `php artisan route:clear,` and `php artisan view:clear.`
  7. Server misconfiguration: Incorrect server configurations, such as mod_rewrite or .htaccess rules, can cause Error 500. Check the server logs and ensure the server is configured correctly to handle Laravel applications.

Remember that these are general causes, and the specific cause of Error 500 may vary depending on your application and setup. 

It’s essential to review error logs, debug information, and seek assistance from the Laravel community or experienced developers to accurately diagnose and resolve the issue.

Let’s Fix Error 500 in Laravel

  1. Check the error logs- typically located in the storage/logs directory. Look for any detailed error messages or stack traces that can provide insight into the cause of the error.
  2. Debug mode- in your Laravel application’s .env file, set the APP_DEBUG variable to true. It enables the debug mode and displays detailed error messages directly in the browser, allowing you to identify the specific issue.
  3. Verify file and directory permissions- ensure that the necessary files and directories in your Laravel application have appropriate read and write permissions. The web server needs proper access to these files to function correctly.
  4. Check your database connection- verify that your database connection details in the .env file are correct. Make sure the database server is running and accessible.
  5. Validate dependencies- run composer install or composer update in your project’s root directory to ensure all dependencies are correctly installed or updated.
  6. Check syntax and code issues- review your code for any syntax errors or problems that might be causing the error. Pay attention to recent changes or updates that could have introduced bugs.
  7. Increase memory limit- If your application requires more memory, you can try increasing the memory limit in the php.ini file. Look for the memory_limit directive and set it to a higher value, such as 256M or 512M.
  8. Disable problematic middleware or packages- temporarily turn off any custom or recently added packages to determine if they are causing the error. Comment out the relevant code or remove the package temporarily to see if the error resolves.
  9. Consult the Laravel community- if you cannot identify the issue or fix the error, consider seeking help from the Laravel community. Post your error details and code snippets on forums, discussion boards, or Laravel’s official community channels to get assistance from experienced developers.

Wrap up;

Now you have an idea of to fix error 500. Laravel is a robust, secure, and extensible PHP web framework that works best!

Remember to take backups of your code and database before making significant changes to ensure you can revert if necessary.

Seek assistance from the Laravel community or experienced developers to diagnose and resolve the issue if your issue persists accurately.

Was this article helpful?

Всем доброго времени суток!
Ребят, тут дело такое.. перестало заходить в админку по ссылке site.com/admin после того как я дома ОС переустановил =) выдает ошибку 500. До этого все работало.
В логах по адресу /storage/logs/laravel.log ошибки нет; права выставлял 777 — все впустую; все файлы с бекапом сверял — все в порядке; и перезагружал тоже. Пытался с разных браузеров заходить результат тот же.
Позже додумался зайти поглубже site.com/admin/pages или site.com/admin/all и т.д. по этим ссылкам переходит и все нормально работает, а вот site.com/admin никак не хочет. Чудеса.
До этого раньше бывало, браузер хром в админке ломался и ошибки выдавал. Вроде все.

Спасибо!


  • Вопрос задан

  • 11235 просмотров

1) Включите в .env
APP_DEBUG=true
Должно выводить подробности ошибки на экран (500 — ни о чем не говорит).

2) Если нет, то это может быть ошибка веб-сервера. (например, некорректный htaccess).

>>В логах по адресу /storage/logs/laravel.log ошибки нет;

скорее всего до ларавеля не доходит, либо не может его запустить.

для начала посмотри логи веб-сервера,
.htaccess
версию php
сделайте файл <?php phpinfo(); и посмотрите срабатывает ли он

Пригласить эксперта

Ну здесь телепатов нет, поэтому включайте debug режим и смотрите, в чем проблемы.

Ребят, все же проблема была как мне кажется в htaccess, сейчас еще разок решил установить разрешения 755 на все файлы, но только через ftp и все заработало, до этого менял через терминал.
А вообще какое должно быть разрешение на файлах и на каталогах?
до этого всегда ставил на каталоги 755, на файлы 644.


  • Показать ещё
    Загружается…

21 сент. 2023, в 15:07

2500 руб./за проект

21 сент. 2023, в 14:51

30000 руб./за проект

21 сент. 2023, в 14:49

25000 руб./за проект

Минуточку внимания

In this article, we will see 500 internal server errors in laravel 9 ajax. Also, we can see how to solve or fixed laravel 9 500 internal server error ajax. If you are fetching 500 internal server errors in jquery ajax post request in laravel 9. Here we will let you know how to fix the ajax post 500 (Internal Server Error) request in laravel 9.

Laravel provides the best security using the csrf token. So, you have each time pass csrf_token when you fire ajax in the post, delete or put a request. You can generate csrf token using the csrf_token() helper of laravel 9. we will see you how to generate csrf_token and pass on each ajax request of jquery. 

Also, you can add below meta tag and then you have to simply pass headers. It will automatically pass a token on each post request.

Add Meta tag:

<meta name="csrf-token" content="{{ csrf_token() }}">

Add JS Code:

$.ajaxSetup({

headers: {

'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')

}

});

As above both codes, you have to write on each page. So, you can simply put it on the layout page or common header page.


You might also like :

  • Read Also: Laravel 9 Socialite Login with Facebook Account
  • Read Also: How To Solve The Page Expired 419 Error In Laravel
  • Read Also: How To Integrate Stripe Payment Gateway In Laravel 9
  • Read Also: Laravel 9 User Roles and Permissions Without Package

Cover image for Laravel Internal Server Error 500 (solution)

Osman Forhad

Osman Forhad

Posted on

• Updated on



 



 



 



 



 

Basically, internal server error 500 is Laravel errors it’s not related to javascript or any other, to check this error go to chrome inspect->network and see the response.
it would be looks like the below screenshot.
Alt Text
This type of issue must be in controller related issue to solve this you have to check your controller function is written well,
.
and then you should check your router file whether (web.php or api.php) where you mention your controller file is properly.
.
If you are confused about why it’s happened and it too much worries you.
.
Here is another easy method to find out what is happening wrong. And this is your Laravel log file. Please check your Laravel log file. Hope you will find out your issue and solve it properly.
.
Happy Coding.
osman forhad
Mobile & Web Application Developer💻

Read next


onabright profile image

How to return JSON response on API routes in Laravel

Bright Onapito —


koossaayy profile image

Laravel Realtime with Ably & Laravel Livewire

Koussay —


sureshramani profile image

Detecting slow database operations in Laravel 10

Suresh Ramani —


biostate profile image

How FilamentPHP Naming Resources and How to Get URL

Süleyman Özgür Özarpacı —

Once unpublished, all posts by osmanforhad will become hidden and only accessible to themselves.

If osmanforhad is not suspended, they can still re-publish their posts from their dashboard.

Note:

Once unpublished, this post will become invisible to the public and only accessible to Osman Forhad.

They can still re-publish the post if they are not suspended.

Thanks for keeping DEV Community safe. Here is what you can do to flag osmanforhad:

Make all posts by osmanforhad less visible

osmanforhad consistently posts content that violates DEV Community’s
code of conduct because it is harassing, offensive or spammy.

Понравилась статья? Поделить с друзьями:
  • Lada vesta ошибка p0504
  • Laravel обработка ошибок http
  • Lamtec bt300 коды ошибок
  • Laravel логи ошибок
  • Lampa ошибка подключения укажите ссылку для парсинга jackett