Masoud Golchin
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Media Offloader] WP CLI support@rolle
Wow, thank you for sharing your fork! We truly appreciate your effort and interest.Once we’ve made our repository public and prepared contribution guidelines, we’ll reach out so you can submit a pull request.
Forum: Plugins
In reply to: [Advanced Media Offloader] Contributing instructionsHi @rolle
Thank you for your interest in contributing to our plugin!Currently, we don’t accept contributions as we haven’t prepared the necessary guidelines yet. However, we truly appreciate your ideas and enthusiasm.
We’re planning to create detailed instructions and make our repository public in the near future to enable contributions to the free version.
Stay tuned for updates!
Forum: Plugins
In reply to: [Advanced Media Offloader] Problem with other plugins using GuzzleHttpHi @davinian
We have resolved the conflict issue and released a new version.
Please update to the latest version of Advanced Media Offloader.
Forum: Reviews
In reply to: [Advanced Media Offloader] Great offloading plugin.Thank you for your detailed review and feedback.
We will definitely work on improving our documentation.
Forum: Reviews
In reply to: [Advanced Media Offloader] Request support for multisite WordPress sitesForum: Plugins
In reply to: [Advanced Media Offloader] Images not showing@ncm12
Happy to help ??Forum: Plugins
In reply to: [Advanced Media Offloader] Images not showingHi @davinian
Thank you for the update! Glad you identified the issue with the ADVMO_CLOUDFLARE_R2_DOMAIN setting.
If you need further assistance or run into other issues, feel free to reach out! ??
Forum: Plugins
In reply to: [Advanced Media Offloader] Problem with other plugins using GuzzleHttpHi @davinian
Thank you for reporting this issue. It appears they are using the same library as we do in our plugin, which is causing the conflict and resulting in a fatal error.
Resolving this conflict will take a few days, and I’ll get back to you as soon as we’ve resolved the issue.
Thanks again!
Forum: Plugins
In reply to: [Advanced Media Offloader] Images not showingYou can reach out to us at [email protected]
Forum: Plugins
In reply to: [Advanced Media Offloader] Images not showingThe issue you’re experiencing seems to be related to your Min.io configuration.
It would be helpful if you could share live examples so we can examine the issue more closely. Additionally, could you provide the tutorial you used to set up the Min.io server?
Forum: Plugins
In reply to: [Advanced Media Offloader] Images not showingHi @ncm12,
If images are not showing up for you and they exist on Min.io, please check the following:
- Are the images publicly accessible? You should check Min.io settings
- Verify the Min.io domain added to your wp-config.php. It should be the publicly accessible domain connected to Min.io.
If you need further assistance, please let us know. We can set up the plugin for you at no charge.
Forum: Plugins
In reply to: [Advanced Media Offloader] Renaming ImagesHi @razakhadim,
I reviewed your code and identified why it doesn’t work with “Full Cloud Migration.”
In
Full Cloud Migration
, we remove all local copies of the image, including the original file.Your code uses the
wp_generate_attachment_metadata
function during the image renaming process, which requires a$file_path
argument. However, since the file no longer exists on the server inFull Cloud Migration
, thewp_generate_attachment_metadata
function cannot locate the file and generate the attachment metadata for it!I believe the solution to achieve your goal is to download a copy of the image from Cloudflare R2 before calling
wp_generate_attachment_metadata
and then pass it to the function. This will allow it to perform its task properly.You can then delete the downloaded file after the process is complete.
Let me know if you need further assistance!
- This reply was modified 3 months, 2 weeks ago by Masoud Golchin.
Forum: Plugins
In reply to: [Advanced Media Offloader] Renaming ImagesThank you, @razakhadim, for sharing the code with us.
I will review it and get back to you within the next 24 hours.
Forum: Plugins
In reply to: [Advanced Media Offloader] asset downloadHi @jacqueschoquette
Unfortunately, our plugin does not support this feature yet. However, it is on our backlog, and we plan to implement it in future releases.Forum: Plugins
In reply to: [Advanced Media Offloader] Renaming ImagesHi @razakhadim
Which feature of your code is not working with our plugin?
Is it only the renaming part, or are the title and alt texts also not working? Could you share your code with us so we can better understand your needs?