Jump to content

wbmnfktr

Members
  • Posts

    2,228
  • Joined

  • Last visited

  • Days Won

    58

Everything posted by wbmnfktr

  1. Is your project_logo field limited to 1 file only? If not... either change the limit in the settings to 1 or place your image code into a foreach() I'd recommend the first option.
  2. ? ? ? ? ? Ok...now this changes everything. Unfortunatelly... I have no idea right now. ?
  3. Same here... Win/Chrome, Win/Firefox. There aren't that much dates/days but it seems to work pretty well. Or I don't understand the problem.
  4. You could try the language-alternate fields method. It works pretty well with images, maybe it works with the comment field as well. On the other hand... why is it so bad to have a discussion in several languages below an article? It's actually the same content only in different languages. So why hide opionions that are in another language? But hey... it's your project. ?
  5. In contrast to you and several others here my focus is more towards frontend development, some technical SEO stuff and only a few bits of real programming. Some hooks, some minor module stuff but nothing fancy. So I looked for something that is super easy to use with everything I need for my jobs. I used and tested a lot of tools but at the end I stayed with Laragon as it's doing exactly what I need. In the last few days I started to use PW Kickstart from @bernhard which adds another layer of comfort to my workflow. As it works as expected I feel no need to change my setup.
  6. That's a nice addition to Bracket Pair Colorizer 2.
  7. Something like this? <?php foreach($page->repeater_1 as $field) { echo "{$field->repeater_heading}"; echo "{$field->repeater_body_content}"; // look for children if( $page->children ) { // for each child foreach( $page->children as $child ) { // the child repeater field output foreach( $child->repeater_1 as $childRepeater ) { echo $childRepeater->fieldName; } } } }?>
  8. Firefox has some nice features while debugging grid layouts. At least they feel more solid than those in Chrome. I use Opera once in a while but only for very basic tasks. Somehow it feels clunky and slow. While Chrome was my daily driver for a long time I recently started using the Brave browser for casual browsing. For now I tried to unsubscribe again and added those mails to the Spam list in Gmail. Maybe this helps.
  9. That sounds weird but... the good new are... it's probably not a server issue. ? Just a few questions to understand things better. Has your user superuser rights/privileges? What's your username? Admin? Check your access roles in Access > Users. Are all pages affected or only some pages? (you said some pages don't update) what can be changed? what can't be changed? what have pages with/without changes you can/can't save in common? templates? fields? What can/can't be changed? Do you get any error messages? What do they say? Do you see any changes in the backend? After saving a page: can you see and any new timestamps in Settings (tab) > Info?
  10. Do you guys receive (unwanted) newsletters from Mozilla/Firefox as well? For a couple of weeks now Firefox seems to push their new Premium version to those who use their sync-service. I tried to unsubscribe a few times but... it doesn't work. ?
  11. That's far from the best and ideal solution to go on vacation but did you change something within the path that @teppo mentioned? Even if so... the index.php is still somewhere else than that path. It's either weird or a good moment to change and set up a better and more secure environment.
  12. There are a few things that came up in my mind right now. First I thought it looked like a failed git/SVN merge of some kind but afterwards it looked liked a failed upload from FileZilla. At least they both look pretty similar somehow. As you stated that there are more instances of other sites and CMSs on that hosting you might want to try to set up different users for different sites. I guess you are using a US hosting company such as DreamH*st, H*stgator or Blueh*st, *2, or another 3.99/month mass-hosting ... I had several similar issues with these companies in the past - but to their rescue - they offer different users on a account to separate installations/instances of different sites. TL;DR: what @teppo and @louisstephens say seems to be the case... someone got somehow access to that hosting. Maybe even through a nifty trick in W*rdPress.
  13. What kind of error? What did it say? Just tried to upload files with © in it and... well it worked as expected. The © was translated to c. In this case I'm using ProcessWire 3.0.123. Update: tried it on a 3.0.98 now and even there it works without problems.
  14. You can actually add it to those "Quick create"-versions as well. It should work. Add the line to your configuration and give it a try.
  15. Mh... makes we wonder.
  16. Thank you @Jonathan Lahijani... my reading list for the weekend just became way more interesting with this.
  17. Oh... kay... now I understand and get almost the whole idea here. This might be too good to be true but maybe your client already has a CSV, XML or something similar with each and every possible configuration... you could import and use. With such a foundation/starting point you could even take a lot of stress on the client-side.
  18. Forget my idea for a second. It is based on a (maybe) wrong assumption. Reading your previous posts and the explanation again... there is a few things I don't get. WHO defines the total code. Does your client say "Product D with Source Z,D, and H has total code [WH-ATS-OEVER]"? If so... you could take the total codes (defined by your client) as a leading instance and use my idea (probably). If not... you could go the way @dragan recommened and create your very own total codes. This is kind of hard to understand because of the huge amount of product-source-bundles you can possibly create. And another thing... what if a product has only one light source and not ten or seven or four? Can they even be mixed in that way or is there another dependency?
  19. That's possible and needed actually. Products product #1 product #2 product #n Sources source #1 source #2 source #2 Total codes total code #1 product #2 ref source #1 ref total code #2 product #2 ref source #2 ref total #n product #1 ref source #n ref
  20. Maybe they renamed it for whatever reason. Try to add the line to your configuration. I guess it should work in your version as well.
  21. What's the leading identifier in this whole product-source-total code setup? the product the source the total code Right now you add sources to a product... but what if you turn this around and add products and sources to a total code? As I understand it: product source ->total code How I would try it: total code product source With the second setup (product + source = total code) you could use the PagefieldPairs module and sync references to make it available across all products/sources/total codes. Are there any more details you can share to show the kind of setup and bundling of products and sources?
  22. You're welcome. If there are any details about your project/idea and some details from your analytics. Let me/us know. I guess we can help you to find the best solution available.
  23. I know from a trusted source that some of you use Laragon as their prefered Windows DEV solution. Due to a recent conversation I noticed that there might be a nice little feature some of you may not know about. Laragon offers the Quick app option with some tools already predefined. In order to have ProcessWire there as well you just have to add one (two with a comment) line to your Laragon configuration. # ProcessWire ProcessWire=composer create-project processwire/processwire %s Just in case you want to start your next project a little bit faster.
  24. Well... I stumbled across this almost by accident and... I really like love it. 1 remote file 1 setup file Ready to go Almost as easy as setting up a new project in laragon. <?php /** * Universal Starter Default * * @author wbmnfktr, webmanufaktur.net * @version 1 * */ $password = $this->randomPassword(16); return [ 'pw' =>'https://github.com/processwire/processwire/archive/dev.zip', 'profile' => 'https://github.com/webmanufaktur/pwbmultiblank/archive/master.zip', 'settings' => [ 'timezone' => 368, // vienna 'dbUser' => 'root', 'dbPass' => '', 'dbTablesAction' => 'remove', ], 'recipes' => [ function() { $this->installModule('FieldtypeRepeater'); $this->installModule('HannaCodeDialog', 'https://github.com/Toutouwai/HannaCodeDialog/archive/master.zip'); $this->installModule('ImportPagesCSV', 'https://github.com/ryancramerdesign/ImportPagesCSV/zipball/master'); $this->installModule('InputfieldPageAutocomplete'); $this->installModule('LazyCron'); $this->installModule('MinimalFieldset', 'https://github.com/Toutouwai/MinimalFieldset/archive/master.zip'); $this->installModule('PageHitCounter', 'https://github.com/FlipZoomMedia/PageHitCounter/archive/master.zip'); $this->installModule('PagePathHistory'); $this->installModule('ProcessDatabaseBackups','https://github.com/ryancramerdesign/ProcessDatabaseBackups/archive/master.zip'); $this->installModule('ProcessExportProfile', 'https://github.com/ryancramerdesign/ProcessExportProfile/archive/master.zip'); $this->installModule('ProcessForgotPassword'); $this->installModule('ProcessJumplinks', 'https://gitlab.com/rockettpw/seo/jumplinks-one/-/archive/1.5.54/jumplinks-one-1.5.54.zip'); $this->installModule('ProcessMenuBuilder', 'https://github.com/kongondo/MenuBuilder/archive/master.zip'); $this->installModule('ProcessPageClone'); $this->installModule('TextformatterHannaCode', 'https://github.com/ryancramerdesign/ProcessHannaCode/archive/master.zip'); }, ], ];
  25. You have my attention... please tell more. ?
×
×
  • Create New...