Jump to content

justb3a

Members
  • Posts

    321
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by justb3a

  1. I use mysql 5.7.9 – without any problems so far. (PW 2.6 and 2.7). Where do you get this error messages exactly? Maybe I can reproduce this behaviour..
  2. I switched the PHP version, tested 5.4.44, 5.5.27 and 5.6.16 - still not working. EDIT: Works fine using PW 2.6.14 or 2.6.20
  3. I can confirm that behaviour. The variations view displays the different image file sizes (large, small, medium, thumbnail...). Checking one and clicking "Delete checked" just reloads the page but nothing has changed. [Nginx installed via homebrew (Mac), PHP 5.6, PW 2.7.1 - so I guess it's not related to XAMPP.]
  4. This ProcessWire module allows you to import and parse XML files (using xpath) to create or update pages. [detailed instructions at github] Settings After successfull installation go to Setup > Import Pages From XML to start using the XML Importer. This module does not support all available field types. Nevertheless, I've refrained from restricting the supported field types because many of them should work by default. Xpath Mappings If you want to take advantage of references between fields in your xpath mapping then make sure the fields you're relating to are placed before the ones which need the relations. You can access and use any values/fields that you placed earlier in your file. Use $field_<fieldname> to match the desired value. Example: <?xml version="1.0" encoding="UTF-8"?> <songs> <song track="2"> <title contact_id="1">Some song title</title> </song> <song track="7"> <title contact_id="2">Just another song title</title> </song> <contact id="1" name="Sesmallbos" mail="info@test.org"/> <contact id="2" name="Sebigbos" mail="info@exam.ple"/> </songs> context: //song field order: title, track, contact_id, contact_name, contact_mail contact_id must be placed before contact_name and contact_mail first get contact_id : title/@contact_id then use that value as relation : //contact[@id=$field_artist_id]/@name as well as //contact[@id=$field_artist_id]/@mail
  5. @alan, @horst: I've added a hotfix right now – it's fixed! Thanks
  6. @adrian: Could you please open an issue for each topic on Github? The select field in module settings allows you to add these extra fields to other ImageFields (for example CroppableImage). I've never tested it with InputfieldFile but I think this should be supported as well. There could be an additional select list to choose the fields (only list the fields with FieldTypes selected above) but I don't know if this is really necessary. Imagine you add another image field where you want to add extra fields, you had to go to module settings again and select the newly added field. If you don't need it for an image field, just don't touch the settings.
  7. @alan: Did you check that CSRF token validation works? If you load the form (frontend) there should be a hidden input containing a generated name and value: <input type="hidden" id="_post_token" name="TOKEN1234567891X1234567891" value="A1B2c3d4efgHIj5klLmno6pQrstUVwxy" /> As said above, the name and value are generated, make sure it's not hardcoded. Also have a look at your log file (simplecontactform-log), all errors are displayed there. I've never used WireMailSMTP – if you've figured out how to use it, please let me know!
  8. But I'm able to reproduce the PageLink issue: I'll fix that. Regarding the PageTable issue: I never used an image field containing extra fields inside a PageTable. I'll test this later.
  9. I'm not able to reproduce this behaviour, I'll let the pictures speak for themselves: added 5 Image Extra fields, added images, filled content, saved removed 2 Image Extra fields added one more image saved page deinstalled module Image Extra edit page added another image, fill description save page
  10. Operation timed out; Broken pipe; No space left on device. What's next??

  11. hi, I'm quite sure that this behaviour is not related to this module. The spam filter only checks some stuff and if everything is fine it hands the mail over to the mail agent and saves the message. Have a look at your mail log, maybe there is a queue. If the message was saved successfully, the spam checks are passed without any problem.
  12. Thanks for this report. I fixed this issue. Please test it using the latest version (get it from Github or ProcessWire module repository). Furthermore I divided the initial module into two single modules: LanguageTranslatorList to display and edit translation files. This works for twig files as well as for php files. So there is no TemplateTwigReplace dependency. TemplateTwigReplaceLanguageSupport to add twig support for translations as well as enabling the Twig Intl Extension (optionally), requires TemplateTwigReplace and LanguageTranslatorList
  13. RT @harikt: Rewrite author/committer history of a git repository https://t.co/J9DXCa7Oxp via @jaseemabid

  14. also einfach unter der Sitzbank ist irgendwie anders @himg https://t.co/N7IG1upwKU

  15. RT @processwire: Today we're proud to announce that ProcessWire 2.7 is officially released! https://t.co/UaTYoMIBF0

  16. I've never noticed that I constantly invent Apple products like iswitch #vim

  17. Is there a reason for the EXT:vidi matcher object not supporting greater/less/etc. critieria? @fudriot #TYPO3

  18. RT @simpholders: There is finally a new version of SimPholders w/ support for Xcode 7 and El Capitan!Download at https://t.co/QVIL98dDMO  …

  19. I love the plants in the stairwell, gonna steal that idea for my own... #btconf https://t.co/BV4aDJGuOu

  20. Hi @adrian, initially I decided to keep the fields/columns after removing so if you need them again your data/entries are still available. I tested it again right now without any problems. Scenario: image field containing 4 image extra text fields, adding some images, removing one text field, editing/adding/deleting images... everything works as expected. Any ideas? (ProcessWire 2.6.22, PHP 5.6.14)
  21. @Mido: Not the best but simplest solution: include jQuery include SimpleContactForm script include a general js file (main.js for example) which contains the function call you mentioned above To style the confirmation text, modify the template, add a class and add CSS for that class.
  22. I'll be there as well. We arrive monday at noon, joining "An Afternoon with Shopify and Friends" and – of course – the Warm-Up event
  23. v0.0.3 ∞ view at Github clear module cache after save module config data in module settings
  24. Which ProcessWire version are you using? Have a look at your database table caches. There should be an entry named module.instagramfeed-recentmedia. Is the depending “data” field filled? There should be json including your requested images. Have a look at the ProcessWire error log, if something went wrong while authentification / receiving access token there should be an entry. In your instagram client settings, did you activate "Enforce signed requests" (this checkbox must be unchecked!). In module settings is there an access token? Clear the cache for this module in module settings. Make sure you have the username spelled correctly or leave it empty (default: self). I receive your media without any problem:
  25. version 0.0.5 Twig Intl Extension support added The Intl Extension provides the localizeddate, localizednumber and localizedcurrency filters.
×
×
  • Create New...