401 Response when PHP-FPM Enabled on WordPress CMS
We recently migrated our website to another hosting service running FPM/FastCGI . We noticed under the website CMS -> tools -> Site Health Status , that all our REST API…
We recently migrated our website to another hosting service running FPM/FastCGI . We noticed under the website CMS -> tools -> Site Health Status , that all our REST API…
How to reorder table rows using drag and drop and automatically save the sequence in database. Sample Table code start <table class=”table table-bordered” id=”tbl_1″> <thead> <tr> <th width=”25%”>Column1 Label</th> <th…
Put the below code in youractivetheme.theme file /** * Implements hook_preprocess_HOOK(). */ function _preprocess_webform_confirmation(&$vars) { if ($vars->id() == 'put your webform id') { // Set your custom message here $markup…
In Yii2 Gridview normally to display the action button we have the following chunk of code $columns = , 'name', 'description:ntext', 'status', ]; The output you see as below: Now…
When you have access to the command line and you have the export large database, you will not be able to export from phpmyadmin. Hence mysql provide you handy method…
Many a times when you view the php version in the browser by displaying the phpinfo() information and the php version that is displayed when you see by typing the…
In Yii2, while you use gridview widget to display your table data, for performing any operation on the record by selecting the checkbox, gridview assign the value of the first…
The solution is very simple gunzip -r * This will extract all .gz file in the respective directory and sub directory and remove the .gz files as well. Vinod RamVinod…
First set your s3 bucket configuration in your .env file as below. S3_AWS_KEY=AKIAIDTXXXHUR7ABCDEF S3_AWS_SECRET=2XTTy0q8xxdaddffrtsfsdfdfgfhvcdsfsf S3_AWS_REGION=us-east-2 S3_AWS_BUCKET=BUCKET_NAME In your controller file add the following code to set the public property to…
The column which you want to wrap should be added the property called “contentOptions” where you can apply the css property to suits your needs and requirements as below. ,…