Month: January 2025

Move Subfolder Contents SSH

User move sub folder content to parent folder ssh Assistant To move the contents of a subfolder to its parent folder using SSH, you can use the `mv` command. Here’s how you can do it: ### Steps: 1. **Connect to your server via SSH**: Open your terminal and connect to your server using: ssh user@your-server-ip […]

Angular React Vue Comparison

User I've worked and practised in all these 3 Angular, React and Vue and Found key things for all 3 1- You can adopt React and Vue easier than Full Fledge Angular Framework 2-We can use Both React and Vue gives option to use it via CDN and just include an ID identifier to a […]

Meeting Time Confirmation

User Ohh okay Sorry for confusion We will can do it around 5:30 uk time COrrect above Assistant Here's the corrected version: "Oh, okay. Sorry for the confusion. We can do it around 5:30 UK time." User Oh, okay. Sorry for the confusion. We can do it around 5:30 UK time. at monday Assistant Here's […]

Max Input Vars Timeout

User max_input_vars increas can help in timeout Assistant Increasing `max_input_vars` in your PHP configuration can help in some cases where scripts time out due to exceeding the limit of input variables that PHP can process in a single request. However, it doesn't directly address timeouts caused by long-running scripts or server configuration. Here's how `max_input_vars` […]

WordPress Admin Timeout Solutions

User certain opertion performs successfully but timeut in worpdress admin Assistant When a specific operation performs successfully but times out in the WordPress admin area, it typically indicates that the operation is taking longer than the server's timeout settings allow. Here's how to diagnose and resolve the issue: — ### **1. Increase PHP Timeout Limits** […]

Angular CLI Installation Warnings

User when installing angular cli i get following warnings WARN EBADENGINE Unsupported engine { npm WARN EBADENGINE package: '@angular/cli@19.0.7', npm WARN EBADENGINE required: { npm WARN EBADENGINE npm: '^6.11.0 || ^7.5.6 || >=8.0.0', npm WARN EBADENGINE node: '^18.19.1 || ^20.11.1 || >=22.0.0', npm WARN EBADENGINE yarn: '>= 1.13.0' npm WARN EBADENGINE }, npm WARN EBADENGINE […]

Rahul’s Work Collaboration Update

User Yes Rahul has provied me the result previously , But for this work I need to check at google time to time so that I've created but I deleted that Now I will work with him on this Correct above sentence Assistant Here’s a corrected version of your sentence for clarity and grammar: "Yes, […]

Log File Creation WordPress

User create and update txt log file if exist in wordpress on some occasion custom code Assistant To create and update a text log file in WordPress when a specific event occurs, you can use the following custom code. This example assumes you want to log a message when a specific action is triggered, such […]

Limit Max Upload Size

User limit max upload limit in wordpress hook Assistant You can limit the maximum upload size in WordPress using the `upload_size_limit` filter hook. Here's how you can do it: ### Add to Your Theme's `functions.php` File Add the following code to your theme's `functions.php` file or a custom plugin: function limit_max_upload_size($size) { // Set the […]

jQuery CSS Properties Example

User opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); add above via jquery css Assistant To add the specified CSS properties using jQuery's `.css()` method, you can write the following code: $(selector).css({ 'opacity': '1', '-webkit-transform': 'translateX(0)', 'transform': 'translateX(0)' }); ### Example: If you want to apply these styles to an element with the ID `myElement`, use: $('#myElement').css({ […]