Ahmed Basioni
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Migrate WP.org blog to another LAMP/VPS ServerThe Old WP installation is related with LAMP versions and also the installed theme and plugins. so you need to match the old server requirements and move the whole old version with old WP installation.
Before moving the old website (using duplicator), Downgrade your new server to match the old server php to 7.4 ( same as old server)
and, do the same for MYSQL version.
Then, use duplicator to move the website( Note: duplicator installer does a requirements check and it shows what versions you need to update.
- This reply was modified 2 years, 9 months ago by Ahmed Basioni.
Forum: Installing WordPress
In reply to: Migrate WP.org blog to another LAMP/VPS Server- If you have a good hands on command shell/terminal, Try using the WP-CLI commands.
and, here you can find a reference about using the wp-cli:
https://wp-cli.org/
And, for the commands usage you can find it in the following reference:
https://developer.wordpress.org/cli/commands/
If you need easy way, you can use plugins like “duplicator” to move your website without coding:
https://wordpress.org/plugins/duplicator/Forum: Fixing WordPress
In reply to: Trying to get property ‘post_status’ of non-objectHi,
Firstly, You need to check the compatibility between WordPress version and PHP version ( Try to downgrade your PHP version to PHP 7.4 if your theme is not updated yet)
Secondly, Check the compatibility of the wordpress version and the installed themes & plugins.- Here you can find the compatibility matrix of WordPress versions:
https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/
Forum: Developing with WordPress
In reply to: Which file do I add meta tags too?That’s good news.
To learn more about WordPress theme hierarchy:
https://developer.wordpress.org/themes/basics/template-hierarchy/
Forum: Developing with WordPress
In reply to: Which file do I add meta tags too?Hi,
You can add it to your header.php file in <head> section.
Forum: Fixing WordPress
In reply to: Media attachments losing quality when uploaded to WordPressHi,
If your questions is about the Feature images, WordPress automatically generates different sizes for each image that you upload to your site.
When the images are set with different size ratio to original, it loses its quality.
You can update and manage the sizes settings in your dashboard by navigating to Settings -> Media
These are the default sizes for every site:
- Thumbnail: 150px square
- Medium: Max width and height of 300px
- Large: Max width and height of 1024px
- Full Size: The original size of your image
To read more details about images sizes:
https://wordpress.com/go/tutorials/controlling-wordpress-image-sizes/#how-to-use-the-default-image-sizes-in-wordpressForum: Everything else WordPress
In reply to: Different data views for custom post typesHi,
As an Admin, You can use Editors widgets to customize your view of specific post type.