joegasper
Forum Replies Created
-
@bensibley Thank you. Can you please provide a full example for placing in wp-config.php please? An example for placing under /uploads/iawp/ would helpful.
Is this something you could move to a variable we could define in wp-config.php?
Thank you, I didn’t realize it would create the full path set for DOCKET_CACHE_PATH if it didn’t exist. So, I can now easily define the variable in wp-config.php as below and I’m getting individual paths generated for each site running on the same host – exactly what I was asking for.
define('DOCKET_CACHE_PATH', 'V:/docket-cache/' . $_SERVER['HTTP_HOST']);
(It might be helpful to add a note to the documentation that this path will be created if it doesn’t exist.)
I reported this same issue (#3820) and was told to downgrade to 3.2.3 (back in August)
Yes, profiling admin pages would be really helpful. The Dashboard and Posts/Pages especially. Thank you.
Forum: Fixing WordPress
In reply to: Error with image uploadingI was having this same issue (same error after image upload stuck at 100%) after moving to 5.7 from 5.3 on a multisite installation.
There is a known bug in a multisite since 5.6 (not expected to be fixed until 5.9).
Full defect article:
#52241 (Infinite loop in clean_dirsize_cache()) – WordPress TracYou have to make this one-line change in /wp-includes/functions.php
Fixed_infinite_loop_on_Windows_systems_.patch on Ticket #52241Forum: Networking WordPress
In reply to: IIS WordPress 5.6 Multi Sites file upload hangHere’s the patch, but not expected until 5.9!!!
Thank you yorman for such a quick enhancement. You have met the initial request.
Usefulness of this enhancement though I think would have greater potential if it handled the GitHub API’s output natively.
Example output:
https://api.github.com/repos/ProjectNami/projectnami/git/trees/master?recursive=1Thanks again.
Forum: Plugins
In reply to: [Increase Upload Max Filesize] Support for WordPress on AzureAlso, I’ve noticed the following problem while trying this out on an Azure site. The php5.ini or php.ini files are created, but the php5.ini file has the settings repeated (looks like for each time I tried to update).
php5.ini
upload_max_filesize = 32M
post_max_size = 33M
upload_max_filesize = 250M
post_max_size = 33M
upload_max_filesize = 250M
post_max_size = 33M
upload_max_filesize = 250M
post_max_size = 33Mphp.ini
upload_max_filesize = 250M
post_max_size = 33MThanks again,
Joe