Jump to content

Rudy

Members
  • Posts

    154
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Rudy

  1. I've got a dashboard app that uses Hubspot API to pull client info for a given domain name. I can share this with you. Our usage is very vertical but it will give you some sort of a start.
  2. Looks like the new CMS Critic website is back on WordPress again. I am curious to why WP (again) and what prompted the switch away from PW? Perhaps @cmscritic can comment on this? Thx Rudy
  3. @bernhard, good one! I think you still get error messages even if it's not fatal. We have over 200 PW sites. Errors like these pops up every day and it's filling up my designated mailbox. Exception: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '41-0' for key 'PRIMARY' Ideally, we should be able to tunnel all errors to Mongo or ELK stack where I can review errors from each site and fix accordingly. What do you think? Rudy
  4. Hi all, Is there a way to turn off fatal error notification without nullifying or commenting out: $config->adminEmail Thx Rudy
  5. Hi @Mike Rockett I am using url segment to sort pages by year. Something like /news/2018/, /news/2017/ etc Is it possible to automatically redirect /news/ to /news/2018/ using Jumplinks? Thx Rudy
  6. Hi all, Happy New Year! Is there a setting to control the amount of Kb of comment text? One of my clients tried to reply to a comment posted and his reply got cut off. I checked it and it's only 2,351 characters. I noticed that maxComment is set to 80K in the module so this did not exceed the max yet. Thx Rudy
  7. Security by obscurity. That's where ProcessWire is currently in.
  8. FYI, Craft CMS announced yesterday that they will use CKEditor 5 for their upcoming release (3.0) https://craftcms.com/news/dot-all-2017-announcements
  9. Have a look at my vidcap below. Did I miss anything?
  10. I updated mine to 1.6.0 and CKEAddons is not showing up on the list anymore. See screenshot.
  11. Hi @enrico, There is already a front end login/user registration module https://github.com/ryancramerdesign/LoginRegister As far as front-end content editing, you could use https://processwire.com/api/modules/front-end-editing/ Hope this helps Rudy
  12. I am going to try this approach and report back. Thx!
  13. @Nurguly Ashyrov, Your solution is actually quite simple and should work in my current case. A proper authentication (oAuth or JWT or even a simple token exchange) would be ideal. My current use case: I have a master PW website with all the content. I also have 5 other websites that draw content from the master site. Essentially I want to treat the master site as an API server, serving data via GraphQL. Thx Rudy
  14. @flydev, yes I tried passing the value in the third argument as well. If this works out, we can potentially store email templates as pages rather than files.
  15. Hmm, according to the documentation https://processwire.com/api/ref/page/render-field/ it states that $page->renderField takes $value as third argument. // usage with all arguments $mixed = $page->renderField(string $fieldName, string $file = '', $value = null); But in reality, I haven't been able to pass data to the rendered output.
  16. I am trying to get creative and store both HTML and text email template as a page on PW rather than a regular PHP file. My code to render the html $html = $pages->get(6090)->renderField('html_body', '', array('message' => $reasons, 'stripe_id' => $stripeId)); Where html_body is a textarea field with my HTML email template. I am trying to pass the two variables using <?php echo $options['message']; ?> <?php echo $options['stripe_id'] ?> HTML renders fine but it didn't render the variables. My question is, did I miss anything? Is this doable or do I have to save template as a file? Thx
  17. hi @Nurguly Ashyrov, I am planning to use this module to share content from one site to another. I got it up and running on my staging server but I would like to restrict access to the API data. How would you set up authentication to consume GraphQL data remotely? Thx Rudy
  18. We've been running Gitlab CE (self-hosted) for the past 2.6 years. It's been stable so far. If your firm has multiple developers that require access to private repos, hosting a Gitlab CE is cheaper and gives you more control.
  19. @Roych, are you using AdminOnSteroids module on your PW site by any chance? We encountered this issue before.
  20. Hi @dweeda Try <link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates; ?>styles/NavUserHdr.css">
  21. Hi @kongondo I am getting Empty file upload result error upon upload. The file got uploaded though. I am running 0.0.9 Thanks Rudy
  22. Do you need a temporary hosting place? I have room to spare in case you need it.
  23. Hi @kongondo, FYI, your documentation website is down at the moment.
  24. @adrian, that's exactly what I was after. Let me try it. Cheers!
  25. Is there a module/core function to batch activate locale URL? Thanks Rudy
×
×
  • Create New...