Jump to content

Rudy

Members
  • Posts

    154
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Rudy

  1. How do you folks set up your front-end? Same as your back-end or using completely separate web space? I am rethinking of how to structure my project using AppApi. Cheers Rudy
  2. I just tested on Safari 14.0.3 and it works fine for me. I am using PW 3.0.173 with AOS module if that helps.
  3. @psy You're almost there. The reason why it always starts with Thursday is because when PHP failed to initiate a date, it defaults to Jan 1, 1970, which falls on Thursday. Here is the working code $today = time(); $dayNames = []; for ($i = 0; $i <= 6; $i++) { $daySeconds = $i * 86400; $dayTS = $today - $daySeconds; $day = date('D', $dayTS); $dayNames[] = $day; } var_dump($dayNames); Output: array(7) { [0]=> string(3) "Tue" [1]=> string(3) "Mon" [2]=> string(3) "Sun" [3]=> string(3) "Sat" [4]=> string(3) "Fri" [5]=> string(3) "Thu" [6]=> string(3) "Wed" }
  4. @ryan, did you bump the latest `dev` version to `3.0.172` on Github? I noticed that the Upgrades module did not pick it up.
  5. @bernhard we use https://pageproofer.com to get feedback and bug reports from clients. It also has video recording option as well.
  6. ? for file/media manager and external file storage. Those are top two of our wish list. Thanks Ryan!
  7. @adrian is there a way to let the CSV export to show absolute path to any files/images? I noticed that the exported data only shows the filename itself without any context. Thx Rudy
  8. I am using FormBuilder 0.40 with Stripe field 6 and this error came up as well on 3.0.147.
  9. If you put your site behind Cloudflare, you have to exclude your backend URL (using Page rules) otherwise it will be cached and will disconnect you.
  10. @BillH Your issue is with MySQL connection. Exception: SQLSTATE[HY000] [2002] Connection refused Check your database user/credentials to make sure that you can connect.
  11. @MFox, you need to install PWImage ckeditor plugin, enable it and add it to your toolbar (see screenshot).
  12. @dragan, thanks for replying. We host quite a few PW sites (in the hundreds). They are using AWS Aurora database. I want to take advantage of AWS replicas and being able to separate read and write requests on the database level. Yes, we've already using InnoDB for all of our database tables.
  13. @ryan, would you consider adding the ability for PW to split database connections for read and write? I think it will be really useful, especially for high-traffic sites. Something like this (https://laravel.com/docs/master/database#using-multiple-database-connections) or WordPress HyperDB (https://wordpress.org/plugins/hyperdb/) Thanks Rudy
  14. @Sergio @adrian I think I found the issue. On current `ProcessWireValetDriver.php` please comment out line 59 (That's what causing the bool return) See screenshot.
  15. @Sergio I had the same issue. Been meaning to file a report with Valet but haven't had time yet. https://github.com/adrianbj/TracyDebugger/issues/32
  16. Also noticed ProcessMaker's logo to be quite similar. https://www.processmaker.com/
  17. @Zeka we use http://bugsnag.com to debug remote/production sites. Their free plan is good enough for most people actually.
  18. Sparkpost and AWS SES SMTP also work as well.
  19. @mrkhan please refer to https://support.office.com/en-us/article/POP-IMAP-and-SMTP-settings-for-Outlook-com-d088b986-291d-42b8-9564-9c414e2aa040 Specifically: SMTP server name smtp-mail.outlook.com SMTP port 587 SMTP encryption method STARTTLS
  20. @flydev Thanks! I was missing this bit $field->attr('value', $data['json_config']); Cheers!
  21. Hi, I am writing a custom module that requires storing array of settings in the module config/settings. Is there a built-in fieldtype that allows me to store settings in an array (sort of like Repeater)? I tried using InputfieldAceExtended and InputfieldTextarea to store JSON array. Both times, my data was stored in the module settings (in the database) but upon reload, that information was not retrieved. Thanks Rudy
  22. I encountered the same issue after upgrading to 3.0.118.
  23. https://ckeditor.com/blog/CKEditor-5-v1.0.0-beta-released/ Looks very clean. Hopefully we get to test it on PW soon.
  24. I've integrated Vanilla Forum with a PW site (as a subfolder). It's pretty straight forward to maintain. It also has user map addon. Vanilla Forum Open Source https://open.vanillaforums.com/download User map addon https://open.vanillaforums.com/addon/usermap-plugin
×
×
  • Create New...