ProjectArmy
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Profiling gives conflicting results using wpcliYou should post this question on GitHub, in case it’s a bug:
https://github.com/wp-cli/profile-command/issuesForum: Fixing WordPress
In reply to: Disabling right click on ONE photo?We can’t provide a solution to disable clicks based on a sample URL. We need to see HTML page where image shows up so we can provide a solution that targets that image specifically on that page.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 down since WP 5.2 update!Have you tried enabling WordPress debugging to see if any errors show up?
You can add the following code to your wp-config.php file, you’ll see this in your file:
define( 'WP_DEBUG', false );
Delete that, and paste this:
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true );
After this is saved, try submitting form to trigger any errors. You should have debug.log with errors/warnings inside your wp-content directory.
Let us know if there are any errors in that log file.
Forum: Fixing WordPress
In reply to: Ищу помощника чтобы настроил обратную связьTry solution posted by this user:
https://www.ads-software.com/support/topic/contact-form-not-sending-if-user-is-not-login/#post-9904929Your form returns the same 401 error. This might fix it.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 down since WP 5.2 update!The problem is API endpoint returns 404:
/wp-json/contact-form-7/v1/contact-forms/62/feedback/ 404 (Not Found)I don’t know if there’s a problem with CF7 and WP 5.2, but can you try going to Settings > Permalinks and saving your permalinks. This should flush permalinks, and sometimes it fixes certain 404 errors.
Forum: Fixing WordPress
In reply to: Image Frustration!OK great. It could have been cache, or some settings that got changed activating/deactivating plugins.
Make sure to turn off debugging, so your debug.log doesn’t get big.
Forum: Fixing WordPress
In reply to: Logo not showing on home pageYou’re welcome. Glad to see you got it working. Don’t forget to mark this topic resolved.
Forum: Fixing WordPress
In reply to: Image Frustration!If your site is crashing without 512M limit, that means it’s running out of memory. By default WP use 40M, but plugins and traffic can increase memory usage until it begins crashing.
Is image rotation working?
Forum: Fixing WordPress
In reply to: Logo not showing on home pageGo to Customizer, Layout > Header > Transparent Header
Is the option “Different logo for transparent header” checked or unchecked? If checked, uncheck it and publish changes. See if that helps.
We use Astra a lot, but I haven’t seeing this issue specifically. Most likely a setting somewhere that’s not what it suppose to be.
Forum: Fixing WordPress
In reply to: Image Frustration!Which theme and version do you have?
We’ve used Newspaper theme by tagDiv without any image issues. And also use UpdraftPlus plugin on many sites without image issues.
So something specific to your site/hosting is causing this.
It would be a good idea to enable debugging to see if any relevant errors show up. You can add the following code to your wp-config.php file, you’ll see this in your file:
define( 'WP_DEBUG', false );
Delete that, and paste this:
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true );
After this is saved. Try uploading/editing images, you want to get that error to show up. After that, check wp-content folder for debug.log. If there are any errors, they will be logged there.
Activate only 1 plugin that causes errors. Keep other plugins disabled for this test. It’ll be easier to narrow it down to a specific issue.
Forum: Fixing WordPress
In reply to: Logo not showing on home pageDid you specify logo in the Customizer, under Layout > Header > Site Identity?
Forum: Fixing WordPress
In reply to: Image Frustration!– Make sure everything is updated, including your theme
– Make sure your PHP version is 5.6 and upOnce above is verified and the issue continues, can you tell us at least one plugin that’s causing this error? We can test it on our end and see if it’s causing this error in our WordPress.
Forum: Fixing WordPress
In reply to: Missing ‘plugins’ from side menu@adamkeyes have you tried my advice yet?
Forum: Fixing WordPress
In reply to: Upload errorYour PHP error log should have some errors if relevant. cPanel hosting usually places it inside public_html called php_errors.
You should also enable WordPress debugging to see if debug.log has any relevant errors. Add this to your wp-config.php, replacing existing
define( 'WP_DEBUG', false );
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true );
Which version of PHP do you have?
- This reply was modified 5 years, 6 months ago by ProjectArmy.
Forum: Fixing WordPress
In reply to: Upload errorCreate a file called info.php in the public_html directory. Add this inside:
<?php phpinfo(); ?>
Save, then load the file in the browser. It should display your PHP information.
Check these 2 values:
- upload_max_filesize
- post_max_size
If they are 2 MB, you should increase these values to something larger. You’ll need to check with your host on how to customize PHP settings.