Jump to content

dynweb

Members
  • Posts

    111
  • Joined

  • Last visited

  • Days Won

    2

dynweb last won the day on July 4 2024

dynweb had the most liked content!

Profile Information

  • Gender
    Male
  • Location
    Strasbourg

Recent Profile Visitors

6,448 profile views

dynweb's Achievements

Sr. Member

Sr. Member (5/6)

114

Reputation

  1. Hi @teppo, I have a FieldsetPage field that I would like to index (including its subfields like Repeater, RepeaterMatrix...), but the field is not listed in the backend under "Select indexed fields". And consequently not indexed, nor the fields it contains (that are in the list of fields to index). Using the latest version, 0.38.6. Am I missing something? Thank you. Problem solved, I forgot my compatible fields override. Sorry for the noise.
  2. Hi Juergen, I'm trying to get me head around FrontendForms, but some questions/problems remain... Hope you don't mind. How can I prevent outputting the success message after successfully submitting the form? $form->setSuccessMsg(' '); is working (setting the message to a space), but not very elegant... Thank you
  3. On module install, I get the following: Warning: file_get_contents(https://api.github.com/repos/danielmiessler/SecLists/contents/Passwords/Common-Credentials/10-million-password-list-top-100.txt): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in .../html/site/modules/FrontendForms/FrontendForms.module:455 Seems the password file has moved....
  4. After further investigation, I come up with this one: https://github.com/processwire/processwire-issues/issues/2055
  5. When trying to save a field with FieldtypeDecimal, I get the following error: Warning: 1265 Data truncated for column 'data' at row 1 And as usual, it seems to be an issue with decimal and thousands separator -- I use "," as decimal and "." as thousands separator. The problem seems to be here: https://github.com/processwire/processwire/blob/44fcf13ea2d7f14a04eed54c29afcc79eb46ec45/wire/modules/Fieldtype/FieldtypeDecimal.module#L75 When the value is sanitized, PW only looks for ".", not for ",". As soon as I change the above line (and the next one) to ",", everything works. Can someone confirm? Or did I miss something? Thank you.
  6. https://github.com/processwire/processwire/blob/4725ece5f86374a8de73d132e54b0ac4c9ae1f09/wire/modules/Inputfield/InputfieldForm.module#L274 There seems to be an upper limit of 255 dependencies, probably for performance reasons.
  7. When I encountered the problem, the limitation was execution time, not file size. Their helpful support can certainly tell you more.
  8. all-inkl has restrictions concerning the execution of shell scripts: https://all-inkl.com/wichtig/anleitungen/skripte/sonstiges/per-skript/shellskripte-ausfuehren_304.html I don't use Duplicator, so I know nothing about its inner workings, but the shell script restrictions at all-inkl are real (have been there).
  9. The $config->pagefileSecure option should take care of point 1 and 2. Not sure how you could do point 3 if there is unauthorized access to your system. You would have to encrypt the files but unencryption keys could not be stored on the server and would have to be communicated to authorized users by other means. And any authorized user who can unencrypt a file can also distribute an unencrypted version of it...
  10. You can put a FieldsetPage inside a FieldsetTab, this should work.
  11. I agree that the Sendy interface is a bit cluttered, but the application itself works very reliably. I'm using it in production for some time now. It is regularly updated and updates are easy to deploy. It is cheap (pay once, no subscription) and has no restrictions concerning the number of clients, subscribers, lists, emails, sender domains... Sending through Amazon is not only cheap (no subscription needed), but also very reliable. No more complaints about newsletters in the spam folder (unlike Mailgun, Sendgrid...). It has a basic API -- it is easy to to integrate with PW. You can let your users build their newsletter with ProcessWire and then send the HTML code via API to Sendy, creating a new campaign. In Sendy, you can handle the selection of mailing lists and all campaign related settings. The most important data from Amazon is directly available in Sendy: number of mails sent, opened, bounced. Hard-bounced Emails are automatically blocked in Sendy, that helps a lot maintaining a good reputation with Amazon. Your users will never have to login to the confusing Amazon SES interface to understand what happens. Except for a few obfuscated files (license check, etc.), the Sendy source is accessible and can be modified, if necessary.
  12. Yes, it seems that font-family declarations do not work here. To style the headings menu entry, TinyMCE takes the corresponding font-family from your content_css (in this case: whatever you defined for h1) and applies it inline. But webfonts are not displayed, only the font fallbacks (Arial, sans-serif...).
  13. This can be done in the "Custom style formats CSS" field. Something like this to change a <h1>: #Headings h1 { font-size: 1.8rem; line-height: 1.1; text-transform: uppercase} /* My headline 1 */
  14. You can use our own stylesheet for the TinyMCE editor. In the TinyMCE settings, field "Default setting overrides JSON text", you can add something like this: { "replace_content_css": "/site/css/tiny.css" }
×
×
  • Create New...