med_freeman
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexible Map] Disable draggable on mobile/touchExcuse me to revive this thread, but how is there already support for this ?
The ‘draggable’ param exists, but doesn’t allow disabling it for specific screen sizes, or am i wrong ?Thanks
Forum: Reviews
In reply to: [NS Cloner - Site Copier] worst plugin !First,
i would like to apologize for the bad review, and the delay in my answer.
And thank you for your support.I’m the own host, so i had backups, but just a bit too old, a part of the files in question were too fresh. Anyway the person responsible for the content is organized well and had copies, so no problem at all.
Even as a sysadmin, there’s always a time (in non-critical missions) where i click too fast or doesn’t take the necessary precautions (had few sleep on top of that)…
It has effectively something to do with the upload path, and what you say about site delete as a core function is completely true, but was so upset things weren’t very clear in my head anymore…
When i have time (in a few hours / days) i’ll redo the manipulation and send you the logs, since i could recreate the problem everytime (after making a backup of course ??
Please note that my environment is completely special, and i know it’s not supported ‘officially’.
Nginx Reverse Proxy + Nginx Backend in a VM + WordPress Multisite Subfolder Config + wordpress root in a subfolder + admin ssl + frontend plain http
The part about wpmu in a subfolder is not supported / is not feasible according to everyone, i suspect the corresponding config caused the problem.
To give you an insight, just after cloning, the copied site has the same url as the old site, and its specific admin isn’t accessible (points to the original) until i modifiy the ‘site_url’ and ‘home’ options. it’s clear, even if have i not verified, that the new site upload url is also set to the original one, thus explaining the file deletion.
As stated before i suspect my config / url rewrites caused the problem.
If you want i can share these with you.
Best,
thanks for everythingps: review will only half-update, i have put back a 4-star rating, but the old title and comment stays ??
Forum: Reviews
In reply to: [NS Cloner - Site Copier] worst plugin !I understand your point.
Before i made this rating, i previously (one year ago i think) rated it 5 stars.
I used it a lot and it was really really helpful.But today it really deleted all my uploads of another site when deleting a copy.
Sure the comment and note were coming from instant hate caused from the data loss..
I agree with your point, and shouldn’t have reacted like this.I use multisite subfolder configuration.
Perhaps the plugin didn’t like that i used ‘2014perf’ as the url of the copy of ‘2014’ website, or whatever.. should have backed-upI’ll change my rating to 3 or 4 saying the plugin could perhaps list what will be deleted (list of files / tables) before it is actually deleted in the free version.
Anyway i see that my comment has been replaced by an advertising ?
wtfForum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] YARPP Fatal Error in ajax contextmy bad, i was initializing wordpress two times…..
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] YARPP Fatal Error in ajax contextFollow-up :
I added the following line before the offending code :
// ADDED LINE FOR AJAX COMPAT $this->storage_class = 'YARPP_Cache_Tables'; l.29 $this->cache = new $this->storage_class( $this );
That allows the plugin to work with my ajax request, since the storage class variable is this time correctly defined.
In this context, related posts are displayed TWO times at the end of the post.
I’m guessing YARPP is instantiated two times.
I have a fix for this in yarpp.php (l.40) :
// new in 3.3.3: init yarpp on init add_action( 'init', 'yarpp_init' ); function yarpp_init() { global $yarpp; if(!isset($yarpp)) { $yarpp = new YARPP; } }
Just enclosed
$yarpp = new YARPP
betweenif(!isset($yarpp)) {
and}
to prevent multiple instantiation.Since the problem probably comes from me (not really sure though), i won’t ask for this fix, but since it doesn’t do any harm, you can add it if you don’t mind.
Thanks a lot
Forum: Plugins
In reply to: [Simple Image Sizes] Show in Post Insertion not showing correct sizeHi !
I had exactly the same problem with “responsive theme”.
https://www.ads-software.com/extend/themes/responsiveThe offending lines were :
global $content_width;
if (!isset($content_width))
$content_width = 550;Best
Forum: Plugins
In reply to: [Simple Image Sizes] Does deleting size delete previously generated images?if you remove the size, you’ll obviously can’t use the images you generated before.
There’s also an error in assets/js/cgmp.framework.js line 530 & 539, where the text isn’t translated :
$(dirDivId + ' button#d_sub').removeAttr('disabled').html("Get directions");
Thanks
Oh BTW i’m not sure my encoding function covers all the cases (other languages special chars ??), perhaps you could use json_encode with the new parameter $options …
just a suggestion
Forum: Plugins
In reply to: Shortcodes and Scripts in Ajax page loadHi, i have pretty much the same problem.
I ajaxed all of my site navigation, using the ‘functions.php’ of my theme, and that works for pretty much all pages, categories and posts, except one.
That’s the ‘Photos’ page, which consists of a Nextgen-Gallery shortcode.
I don’t know why but this particular shortcode (ie. [album id=1 template=extend] ) isn’t interpreted; and so that particular page doesn’t work.
I even tried a manual ‘do_shortcode’, but that doesn’t work with this particular shortcode too.Note : I have a ‘Medias’ page where all shortcodes are interpreted correctly.
Why this ? is this a plugin load order priority problem, since the theme’s ‘function.php’ is considered as a plugin ?