Posts by dosa

    Setting up a mirror copy of a site for staging and I'm getting this error on my last step in testing it. The CMS works fine, but when viewing the pages, this comes up in most browsers: "cannot decode raw data"


    I'm pretty sure I've seen this before but can't remember the fix. hus_hmd - I'm sure you know this :) A bit of help?

    That changes the whole method of how my search works. Isn't there a way to simply add the filter for the date?


    I tried the above, but again the layout is thrown off. When I try to add the correct template or save the template to the right place, I get blank results.


    You helped me do this in this thread: Use The Image In A Blog Post In Search Results


    I just didn't realize the order was backwards.

    Thanks hus_hmd - this worked mostly. The posts are in DESC order by date now finally, but it's not using the template to layout the design. I added the search-result.html template in, but it's not changing anything.


    So how do I use the search-result.html template on these results?

    Hi all - I realized all my blog searches have the order wrong. So I added the sort and sort-order option. But nothing is happening:


    Blog results template:


    So shouldn't the results be showing the post in ascending order by post date?

    Using Perch Runway 3.1.6 with an updated site that I took from 2.8. None of my textarea items are showing the CKeditor though, as if it's missing the editor. I thought it was installed in the core?


    The code calls out the editor:

    Code
    1. <perch:blog id="postDescHTML" type="textarea" label="Post" editor="ckeditor" html="true" size="xxl autowidth" required="true" />

    Diagnostics says it's installed (see attached) and but the CKeditor is missing (see attached).


    Thoughts?

    Hi. Having an odd license issue. I'm moving a site to a new server. I've put up the old files, database, updated the config file with the details, yet I get a "Sorry, your license key isn't valid for this domain."


    There are TWO licenses my client has. One I bought when the project started, the other he bought so he could manage it. So there are 2 licenses with the domain name. Could that be the issue? I went into the old license and changed the staging domain name I setup. But it made no difference.


    Both license keys don't work. Any solutions to this?

    Ah great to know. Thank you thank you thank you for all your help hus_hmd


    For anyone else looking for the final code for all this, here's how to create your blog search:


    Your master page calls the search content, Blog specific, sorted, using a template:

    PHP
    1. <?php
    2. perch_content_search(perch_get('q'), [
    3. 'apps' => ['PerchBlog'],
    4. 'sort' => 'postDateTime',
    5. 'sort-order' => 'ASC',
    6. 'count' => '9',
    7. 'template'=>'search-result.html',
    8. ]);
    9. ?>

    That template is search-result.html:


    Now the key to connecting everything is in the Layout referenced, blog_search_result.php:

    Which references this last template, post_search_result.html:

    Note the "urlify" links which reuse existing name of the author to make the slug link.

    Debug continued....

    Here you go hus_hmd - the debug message is below in two comments since it's beyond the 10,000 character limit per post.


    Code

    Using this for the search results:

    PHP
    1. <?php
    2. perch_content_search(perch_get('q'), [
    3. 'apps' => ['PerchBlog'],
    4. 'sort' => 'postDateTime',
    5. 'sort-order' => 'ASC',
    6. 'count' => '9',
    7. 'template'=>'search-result.html',
    8. ]);
    9. ?>

    I'm getting 12 results for a search of "test". Yet the page shows the first 9 results, then the second page is blank. In fact ALL searches are showing the first 9 results then all the remaining pages, even if there are 100 results, are all blank. What is missing from the code to where it's following the count, but only on one page?

    thanks ellimondo - I think you have it right! I have more results now, but they aren't laying out properly. Also when I paginate, the next pages are blank. So I imagine I have the perch:before and perch:after tags in the wrong spot?


    hi hus_hmd - here's the debug message after perform a search of "test" and getting 1 results as shown above: