Blog

Enable Cloudflare Dev Mode

User How to enable Development Mode cloudflare for always Assistant To enable Development Mode in Cloudflare and keep it on permanently, you'll need to follow these steps: 1. **Log in to Cloudflare:** Go to the [Cloudflare dashboard](https://dash.cloudflare.com/) and log in with your credentials. 2. **Select Your Site:** From the list of your sites, click on […]

Postman API Request Setup

User $FieldsString = array('email' => $this->EmailAddress, 'report' => $this->UploadPath.$this->ReportFileName, 'type' => $this->ReportType); Check above in postman Assistant To check the `$FieldsString` array in Postman, you need to set up a request that sends this data to your backend. Here’s how you can do it step by step: ### 1. Set Up Your Postman Request – […]

Remove Pull Request Commits

User How to remove commited pull request from development branch in bucket even i delete the related branch still showing that when I again create a pull request against developmednt branch Assistant If you want to remove a committed pull request from a development branch in a Git repository (and it still appears when you […]

Remove Conflicted Commit Bitbucket

User remove conflicted commit from bitbucket pull request Assistant To remove a conflicted commit from a Bitbucket pull request, you'll need to follow these steps: 1. **Checkout the Pull Request Branch**: If you're not already on the branch associated with the pull request, switch to it. Replace `your-branch` with your branch name. git checkout your-branch […]

wp_enqueue_script error fix

User Notice: Function wp_enqueue_script() was called incorrectly. "wp-editor" script should not be enqueued together with the new widgets editor (wp-edit-widgets or wp-customize-widgets). Please see Debugging in WordPress for more information. (This message was added in version 5.8.0.) in /var/www/html/web/wp/wp-includes/functions.php on line 6085 Assistant The notice you are encountering indicates that there is an issue with […]

Widget Menu Troubleshooting WordPress

User widget menu not showing wordpress cusotm theme Assistant If your widget menu is not showing in your custom WordPress theme, there are several potential reasons and solutions to consider: ### 1. **Check Widget Area Registration** Make sure that the widget area (sidebar or footer) is properly registered in your theme's `functions.php` file. Here’s an […]

Apache Rewrite Configuration Issues

User RewriteEngine On RewriteRule ^(.*)$ web/$1 [L] this gives misconfiguration error Assistant The `.htaccess` configuration snippet you provided is causing a misconfiguration error, likely due to an issue with the path or server setup. Here's how you can debug and resolve the issue: ### 1. **Verify `mod_rewrite` is Enabled** Ensure that `mod_rewrite` is enabled in […]

WordPress URL Mapping Guide

User /html/wordpress24/website/wordpress/web We have struture to set up wordpress Now i want if anyone opn siteurl/wordpress24 then it should map to /website/wordpress/web Assistant To map `siteurl/wordpress24` to `/website/wordpress/web` in your WordPress setup, you can configure it using an `.htaccess` file or your web server configuration (e.g., Apache or Nginx). Here’s how to do it: — […]

Htaccess Domain Mapping Guide

User htaccess for map domain to /wordpress/website/web folder Assistant To map a domain to the `/wordpress/website/web` folder using `.htaccess`, you need to configure the `.htaccess` file located at the root of your domain. Here's a step-by-step guide: ### 1. **Set Up Directory Structure** Ensure the `/wordpress/website/web` folder contains your WordPress installation's `index.php` and related files. […]

Laravel Conditional Queries

User Laravel eqvalent query when search get avail otherwise normal query Assistant In Laravel, you can create a query that searches for a specific condition and, if it doesn’t find a match, falls back to a default query. This can be done using conditional logic in Eloquent or Query Builder. ### Example Scenario You want […]