Leonid Bugaev
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to support right-to-left language?Also note that it not just about single CSS rule. If you just add dir=”ltr” to body it will look like https://ibb.co/fMYgCFz. See the phone number, it also reverted ??
Anyway this probably should be tested on staging, or at least using https://instawp.com or similar
Here are really awful video about this issue https://www.youtube.com/watch?v=XoyGlt7foh4 but the only useful tip there is to go to CPanel, and disable ModSecurity for your website.
I tried multiple locations and so far can’t replicate, weird.
If you tell me which VPN location you used, I can try out by myself.
Forum: Fixing WordPress
In reply to: 404 every day – broken permalinksDoes it happen with all the products or only some of them?
Can you give example url which has 404 from time to time?
Do you have any other plugins except Woocommerce?
And yeah, Mayuri suggestion about conflicting category defo needs be checked.
Cheers!
Forum: Fixing WordPress
In reply to: How to support right-to-left language?If you put it like that it will override english as well, you need to make this code executed only for /ar/ prefix.
How are you planning to add multi language support, do you use some plugin like WPML or built-in WP functionality?
Forum: Fixing WordPress
In reply to: Deprecated: Creation of dynamic propertyAlso do you remember when it started happening, what you did that broke website? Started updating plugins, or updated wordpress version?
Forum: Fixing WordPress
In reply to: Deprecated: Creation of dynamic propertyIf you have access to WP admin, and hosting provide panel, you can enable debug mode, which will tell you details about this issue.?And if you be able to follow the steps, upload given debug log here (strip any senstive infor from it first).
Here are docs how to do it https://wpforms.com/developers/how-to-enable-debugging-in-wordpress/
TLDR:
To modify
wp-config.php
file via UI, you’ll typically need to use an FTP client or a file manager in your hosting control panel. Here are the steps using cPanel as an example:- Login to your hosting account: Open your browser and navigate to your cPanel login URL. Enter your cPanel username and password.
- File Manager: In your cPanel dashboard, look for the “File Manager” icon and click on it. This will open the file manager, showing a list of all your files and directories.
- Locate wp-config.php: Navigate to the root directory of your WordPress installation. The root directory often has the name
public_html
orwww
or named after your site. Inside this directory, you’ll find thewp-config.php
file. - Edit wp-config.php: Right-click on
wp-config.php
and select “Edit” or “Code Edit”. A text editor will open in a new tab with the contents of the file. - Enable Debug Mode: Look for the line that says
define('WP_DEBUG', false);
and change it todefine('WP_DEBUG', true);
. If the line doesn’t exist, add it above the “That’s all, stop editing! Happy publishing.” line. - Debug Log: To save the error messages in a file, add the following lines:sqlCopy code
define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
This will save errors in adebug.log
file inside thewp-content
directory. - Save changes: Click on “Save Changes” button.
- Review Log: Now you can reproduce the error and after that review
debug.log
file inside thewp-content
directory.
Remember to disable the debug mode once you’ve resolved the issue, as keeping it enabled can expose your site to security risks. You can do this by setting
WP_DEBUG
back tofalse
and removing the other two lines you added earlier.Note: The exact names and locations of the options in your hosting account may vary slightly depending on your hosting provider.
Forum: Fixing WordPress
In reply to: 503 errorDoes carecomputers.co.uk tells anything to you? This is DNS servers where you domain points. https://who.is/whois/tangiblebranding.com
They have both phone and email support, try reaching them.
Forum: Fixing WordPress
In reply to: My Website shows critical error after plugins updatedIf you have access to WP admin, and hosting provide panel, you can enable debug mode, which will tell you details about this issue.
Here are docs how to do it https://wpforms.com/developers/how-to-enable-debugging-in-wordpress/
TLDR:
To modify
wp-config.php
file via UI, you’ll typically need to use an FTP client or a file manager in your hosting control panel. Here are the steps using cPanel as an example:- Login to your hosting account: Open your browser and navigate to your cPanel login URL. Enter your cPanel username and password.
- File Manager: In your cPanel dashboard, look for the “File Manager” icon and click on it. This will open the file manager, showing a list of all your files and directories.
- Locate wp-config.php: Navigate to the root directory of your WordPress installation. The root directory often has the name
public_html
orwww
or named after your site. Inside this directory, you’ll find thewp-config.php
file. - Edit wp-config.php: Right-click on
wp-config.php
and select “Edit” or “Code Edit”. A text editor will open in a new tab with the contents of the file. - Enable Debug Mode: Look for the line that says
define('WP_DEBUG', false);
and change it todefine('WP_DEBUG', true);
. If the line doesn’t exist, add it above the “That’s all, stop editing! Happy publishing.” line. - Debug Log: To save the error messages in a file, add the following lines:sqlCopy code
define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
This will save errors in adebug.log
file inside thewp-content
directory. - Save changes: Click on “Save Changes” button.
- Review Log: Now you can reproduce the error and after that review
debug.log
file inside thewp-content
directory.
Remember to disable the debug mode once you’ve resolved the issue, as keeping it enabled can expose your site to security risks. You can do this by setting
WP_DEBUG
back tofalse
and removing the other two lines you added earlier.Note: The exact names and locations of the options in your hosting account may vary slightly depending on your hosting provider.
Forum: Fixing WordPress
In reply to: My Website shows critical error after plugins updated- Do you have a chance to rollback to previous version? Maybe you have backup or similar?
- Which hosting to you use? Do you have access to see wordpress logs? Does wordpress admin logs for you?
- Do you know which version of wordpress you have?