wpbroken2much
Forum Replies Created
-
Forum: Plugins
In reply to: [reGenerate Thumbnails Advanced] Thumbnails Not Attached to PostsThat site info is quite voluminous and in need of significant reactions if I am to post it online. Is there anything in there specifically that you’re looking for?
Here is a screenshot of the plugin settings:

Finally, which part(s) of your standard response are actually relevant here? Clearly this has nothing to do with web browsers, so I can’t think of any reason for that last bullet point other than it being part of a list given to people seeking support in general.
If you want links let me know how to DM them to you. WordPress is too likely to suspend me if I post the URLs here.
- This reply was modified 3 years, 4 months ago by wpbroken2much.
- This reply was modified 3 years, 4 months ago by wpbroken2much.
- This reply was modified 3 years, 4 months ago by wpbroken2much.
- This reply was modified 3 years, 4 months ago by wpbroken2much.
- This reply was modified 3 years, 4 months ago by wpbroken2much.
Found this error in my File Manager php error log for the domain. Redacted for privacy reasons:
[13-Jan-2023 23:55:56 UTC] PHP Warning: Undefined array key “thumbnail_url” in /home/myaccount/public_html/example.com/wp-content/plugins/auto-post-thumbnail/admin/views/tab-generate.php on line 205
When viewing images in the media section they don’t say “uploaded to” anything on this site like they did on the original before the export/import. It seems they were all auto-downloaded just fine but not attached to the posts they were found in.
According to the debug log all images are being detected but the plugin simply doesn’t set the detected URLs as the featured images for the posts.
There are no error messages in the log so I have no idea why the detected images are not set as featured.
- This reply was modified 3 years, 4 months ago by wpbroken2much.
- This reply was modified 3 years, 4 months ago by wpbroken2much.
When right clicking on the broken thumbnail and selecting open image in new tab while running the plugin, I get an error in my browser where the URL should be which included “Undefined index: thumbnail_url”
Just sent a request with a link to the site. I also included an example post which despite having a giant image at the beginning has no featured image despite running the plugin.
Could Cloudflare be part of the problem? It seems like the plugin scans the posts just fine but for whatever reason it just doesn’t set the images it finds as featured.
- This reply was modified 3 years, 4 months ago by wpbroken2much.
I have thousands of posts that were imported. I want to change their status to draft and then find a plugin to change their status’ back to publish later, but the plugin will need to be able to schedule over 5,000 drafts automatically without requiring me to do anything beyond clicking a button telling the plugin to do its thing.
So far most tutorials I see tell people to manually select stuff to be scheduled either individually or by selecting multiple posts from a list. Due to volume such things are not feasible for me.
Could my robots.txt and noindex tags be an issue? I can’t think of why honoring robots.txt would be a good idea for a plugin like this but you never know, some developers might program their stuff to honor robots.txt by default.
Can I DM you the link? The content is NSFW and I’m concerned WP might suspend me for posting the link.
The generation method selected is “find in post” but it doesn’t seem to find or at least generate anything. When I run the scan it simply scans each post without saying anything other than done unless there is no post in the image at all in which case it shows a red background with a notice about not finding anything.
I was expecting each post with an image to result in a green background and a number in the image size column which is empty.
I’ve also noticed that pages are being scanned even though I only have posts checked.
- This reply was modified 3 years, 4 months ago by wpbroken2much.
Forum: Fixing WordPress
In reply to: How Do I Select a Range of Posts by ID with WP CLIGreat responses people! Don’t respond for me, respond for anyone who might want to delete every post from a site with an ID less than a specific number.
Forum: Fixing WordPress
In reply to: How Do I Select a Range of Posts by ID with WP CLIImaging the above if WordPress did not automatically convert all double hyphens to single hyphens
Forum: Fixing WordPress
In reply to: Rewrite API Not WorkingI tried adding urlid as a query variable but that does not seem to work. To make matters worse I cannot find where WP stores query variables in the database so I cannot check to see if I am adding it right.
I added this both inside and outside my activation function. Neither fixes the problem.
function add_custom_query_var( $vars ){ $vars[] = "urlid"; return $vars; } add_filter( 'query_vars', 'add_custom_query_var' );Forum: Developing with WordPress
In reply to: How Do I Add Rewrite Rules When Activating Plugin?Thanks, now I just need to figure out how to submit the rules via the API I guess. I already have an activation hook in the plugin but I’m not really sure how to submit the new rules via the API. The examples used by WP are slim and all involve regular expressions other than ones which would work in my situation.
I need users to be able to visit something like example.com/folder/{0-9} but have the site serve the content from example.com/wp-content/plugins/myplugin/folder/index.php?id={0-9}. Could you please create an example that would work for those types of URLs exactly?
- This reply was modified 3 years, 5 months ago by wpbroken2much.