How can I raise the maximum upload file size?
The solution is to edit these lines in /etc/php/8.1/apache2/php.ini :
upload_max_filesize = 64M post_max_size = 64M memory_limit = 64M
The solution is to edit these lines in /etc/php/8.1/apache2/php.ini :
upload_max_filesize = 64M post_max_size = 64M memory_limit = 64M
TL;DR: You can read the code here: https://github.com/wasya-co/consent_popup
In the ever-evolving landscape of digital content management, selecting the right publishing platform can be a pivotal decision for businesses and creators alike. Among the myriad of options available, WordPress and Drupal stand out as two prominent contenders, each offering unique features and capabilities tailored to diverse needs. In this comprehensive comparison, we delve into the strengths and weaknesses of WordPress and Drupal, exploring their suitability not only as publishing platforms but also as powerful marketing engines.
The following works on 3 sites but doesn't work on 1. I've restored the site from the backup of another site, and this works, until it doesn't work the next day. I've reinstalled modules.
I make the following POST request:
In my case, it was because I installed the deprecated core plugin, instead of the separate newer plugin.
The fix for me was to uninstall the deprecated HAL plugin, and then run:
I had some difficulty with this, because my Drupal installs are in-between php versions. I'm running PHP 8.1, but a lot of the modules that I use were written for PHP 7, and haven't been ported.
Anyway, adding the following line to your sites/default/settings.php in production has worked for me:
$config['system.logging']['error_level'] = 'none';
In this article, I'm doing to talk about how I enabled my Drupal theme to have scss.
I'm on a mac, so these instructions are specifically for mac os x.
Drupal is a php framework. Sass is (somewhat surprisingly) a ruby program. While I am a ruby expert, I believe javascript is much closer to css than ruby is, so I'm expecting the scss compiler to be written in node.
In fact, this task has little to do with Drupal or PHP. We will be spending most of the time in a node environment.