Jump to content

markus_blue_tomato

Members
  • Posts

    192
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by markus_blue_tomato

  1. On 9/7/2021 at 5:05 PM, d'Hinnisdaël said:

    @markus_blue_tomato I've noticed that blurhashes aren't regenerated when images are replaced via drag-and-drop in the admin. Have you run into this or is this a known limitation of the module? Best way to reproduce is: clone a page with a populated single-image field, drag a new image into the image field of the cloned page and save. The blurhash still looks like the old image from the page it was cloned from.

    Hm, that sounds like a bug. I would appreciate an PR or Issue Report in Github since I'm very busy the next weeks.

    • Like 1
  2. I have a page with multilanguage support. Processwire always redirects to the default language if no language is in the URL-path.

    E.g. /my-page/ --> /en/my-page/

    But when I have a querystring in the URL, the whole querystring is lost: /my-page/?search=xyz --> /en/my-page/

    How can I solve this? I didn't find anything regarding language URL redirects in the .htaccess

     

  3. On 4/10/2021 at 3:20 PM, StanLindsey said:

    This is great @ryan - Quick question. 

    Digital Oceon doesn't automatically balance between all the read only nodes as RDS does. 

    Is it possible or is it on the roadmap to allow adding multiple nodes in PW and PW distributes between that list of nodes. 

    Could be as simple as an array of dbReaders, with PW randomly selecting from the array for each read request. Or round robin. 

    That would allow it to be much more flexible setup and support self hosting read replicas for example. 

    Otherwise fantastic work this is great. 

    Oh, good to know. Currently I have one Read/Write Node (for the Admin) and one Read-Only Node for the Frontend.

  4. 7 minutes ago, ryan said:

    Next week I also get my 2nd shot of covid vaccine, and I'm told it may slow me down a bit for a day, but will be well worth it.

    Lucky you! In slow vaccinating Austria we have a word for my little feeling called "Impfneid" which means some kind of "vaccination envy/jealousy" ;-D

    • Haha 1
  5. corporate.blue-tomato.com is a new Website about the Corporate behind Blue Tomato. You can find informations about the history and values of Blue Tomato and also all open job positions.

    image.thumb.png.4074a7fb6ae29bed7becd38112f3f049.png

    Used Modules 

    ProCache
    ProcessGraphQL (used with React on the job overview page for searching/filtering the jobs)
    ProFields: Combo
    ProFields: RepeaterMatrix (Used for some kind of a "PageBuilder")
    SeoMaestro
    TemplateEngineSmarty / TemplateEngineFactory

     

     

     

    • Like 10
  6. 2 hours ago, dadish said:

    @markus_blue_tomato I assume job_group is a page field. Page fields in GraphQL return Page interface that has only built-in fields (id. name, url...). If you want to get custom fields like (title, job_group_id...) you need to use fragments.

    
    {
      jobDetail {
        list {
          id
          job_name
          job_group {
            list {
              id
              name
              ... on JobGroupPage { // <== you need to use the actual type name here
                title
                job_group_id
              }
            }
          }
        }
      }
    }

     

    Thanks works! 

  7. 5 minutes ago, dadish said:

    Make sure you have rights to see it in insomnia. You probably not authenticated in insomnia, which means you're a guest user and those fields are not configured to be accessible by the guest user. Can you check if my assumptions are correct?

    Yes this was the problem. I had this option on "No". I changed it to "yes" and gave the role "guest" view-access.

    Thank you! I thought the fields are vissible also to guests if this option is on "No"

    image.thumb.png.f4be5dcbf4bfd9d9b211fe0dc9f3aa03.png

  8. 3 minutes ago, markus_blue_tomato said:

    Thanks for your help!

    No I get an "This page has no process asigned" Page in the Result

     

    Aaah, I added to the page the correct Process Module. Now I see the fields here but still not in Insomnia Client...

    image.thumb.png.e9bbcbe0a235820212dfa759f5a59d76.png

  9. Hi @dadish,

    I played a little bit with the module but can't get my fields into GraphQL. I only use some FieldtypeText and FieldtypeTextLanguage fields but the don't appear in the schema.

    Any ideas why? I use the Insomnia client here because on the default GraphiQl I get this "Syntax Error: Unexpected <EOF>" error. 

    1743748658_Bildschirmfoto2021-02-11um21_29_46.thumb.png.74e806ab7ec57b20c0aa587813c9ea96.png

    992306395_Bildschirmfoto2021-02-11um21_29_24.thumb.png.37ed2931f8d8a36dc1e6404df01f168c.pngAny i

×
×
  • Create New...