Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi!

    Indeed! Nice find. I will rather make a hotfixed version (3.05) and upload it so everybody get’s fixed ??

    Thank you!

    Thread Starter Leandro

    (@leandroprz)

    Thanks, it’s working now. But I found another issue: images are showing as broken images and I have chmod to 777 the cache directory.

    Two more things:
    – Is it possible to disable the suggested keywords when there are no results to show?
    – Is it possible to get back the theme minimal from v1.7?

    Thanks!

    Thread Starter Leandro

    (@leandroprz)

    It seems I can’t edit my own posts, not sure why.

    I also noticed shortcodes are showing in the results, that did not happened with v1.7. Is it possible to disable that as well?

    Sorry about all the questions and requests, but v1.7 was really simple yet really perfect. It would be nice to have all those things back in v3.0

    Thanks again!

    Plugin Author wpdreams

    (@wpdreams)

    No problem, I don’t mind hearing feedback, don’t worry.

    I think I will remove the keyword suggestions after all, it’s more like a pro feature anyways. I’m going to add a few more themes as well, not sure if I can add the exact copy of the minimal back (the structure of the search changed a lot), but something similar is coming.

    The post edit issue however sounds like a serious problem. I will try if I can recreate that on my test servers and release a fix to that as well.

    I looks like I have to make a new version again, 3.06 coming later today.

    Plugin Author wpdreams

    (@wpdreams)

    Have you updated to version 3.05? It should have solved the post editor issue, the keywords issue and the shortcodes issue as well.

    As for the images, are your images stored on an external source? The image library has got external sources disabled by default, but I just changed it in the 3.05 commit.

    If you are already using 3.05 then you should deactivate it, delete it and download it again. Your settings will remain, no worries ??

    Thread Starter Leandro

    (@leandroprz)

    I noticed you changed a lot of things when I tried to use the old theme but I wasn’t able to do it.

    Sorry, I meant I wasn’t able to edit my own posts here in this forum, but it seems I reported a bug I wasn’t aware of? ??

    I deleted and installed v3.05 but I still have some issues. Images are showing up as broken images and I can still see the shortcodes: https://i.imgur.com/TbvqE9G.png

    All the images are stored along with the WordPress files in the same hosting. When trying to access to the linked image I see on the source code, I get a 403 error.

    This is the shortcode I’m using on many pages:

    [video src="video.mp4" width="640" height="360" autoplay="true" loop="true"]

    Suggested keywords issue is fixed and they are not showing anymore.

    Thanks!

    Plugin Author wpdreams

    (@wpdreams)

    Hi!

    I’m glad that some of the problems are now fixed.

    As for the images: You should maybe try to chmod to 777 the /includes/cache/ folder. I’m not sure if this will change anything, maybe it’s a deeper issue.

    Can you please copy/paste the image urls you get? I might be able to tell based on the url and server responses if there is something wrong.

    As for the shortcodes, looks like we need to go hard mode on this one. By default I left the wordpress “the_content” filter in the code to deal with shortcodes, looks like it’s failing in some cases.
    Let’s change the code a bit to instead of filtering the shortcodes, it will remove them.
    Open up the wp-content/plugins/ajax-search-lite/includes/search_content.class.php file and go to line 326, you should see this:

    if ($_content != "") $_content = apply_filters('the_content', $_content);

    Now, change that line to:

    if ($_content != "") $_content = strip_shortcodes($_content);

    It should now remove every shortcode from the content without exceptions.

    Thread Starter Leandro

    (@leandroprz)

    I checked the /includes/cache/ folder and it was already set to 777.

    Here’s a link to a broken image:

    https://leandroperez.com.ar/wp-content/plugins/ajax-search-lite/includes/timthumb.php?ct=1&cc=FFFFFF&q=95&w=70&h=70&a=c&src=http%3A%2F%2Fleandroperez.com.ar%2Fwp-content%2Fuploads%2F2013%2F07%2Fcat-12-2013_010.jpg

    I found that piece of code in line 651 inside search_content.class.php, I guess it’s that one because now the shortcodes aren’t showing anymore.

    Thanks!

    Plugin Author wpdreams

    (@wpdreams)

    Ok. I’ve tried to open the timthumb link based on the url you sent me: https://leandroperez.com.ar/wp-content/plugins/ajax-search-lite/includes/timthumb.php

    It gives me 403 error as well, which probably means that the permissions are not right. I mean it’s not accessible from outsite. Can you check the permissions on that file (ajax-search-lite/includes/timthumb.php) as well? Some servers does not like (or even allow) 777 on php files. So you should try 777 then 755, then 666, then 655. If none of them works, then the permissions are locked via SSH. I’m almost 99% sure, that this is the case, because 403 indicates an execution forbidden, or read-write forbidden error.

    If still no luck, then please mail the server admin with the above mentioned link, and ask him why it is not accessible. He will 100% help you.

    I hope that it’s only a simple permission problem tough.

    Thread Starter Leandro

    (@leandroprz)

    After trying your suggestions I realized there was an htaccess file that was causing the problem, I edited a few lines and now I can see the images.

    Thank you very much!

    I’m not sure when it happened but search results turn up nothing but “No Results!” We disabled all other plugins and it still didn’t work. See https://www.yourvirtualworld.tv/cms/advanced-search-2/ . Uninstalled then reinstalled the same most recent version. Still broken. Any suggestions?

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    @mountain-dude Per the forum welcome please post your own topic.

    https://www.ads-software.com/support/plugin/ajax-search-lite#postform

    This topic is marked resolved already and those don’t get much attention. It’s the best way to get support for your problem.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Results not showing with new version 3.0’ is closed to new replies.