Jump to content

diogo

Moderators
  • Posts

    4,285
  • Joined

  • Last visited

  • Days Won

    79

Everything posted by diogo

  1. The database was named by the developer, or even the hosing server. If you have access to the hosting control panel, you might be able to upload files via FTP. In that case you could upload a "test.php" file to the root directory of the site (this directory would contain the "wire" and "site" directories and the "index.php" file) with the following code in it: <?php include("index.php"); echo $pages->get(2)->httpUrl; Than you can open the url http://mywebsite.com/test.php and the answer will show up. I also attached the file so you can download it πŸ‘‡ test.php
  2. Clearly I didn't make my point efficiently. I would hope the heavy use of emojis could even point out the lightheartedness of what I was writing. I referred to Cargo because people were talking about it, the idea was not to defend it on this particular situation but to try show a different side of it that people might have missed. To make it clear, I do agree that it's not the best tool to use for a client, and I admit that I went on a tangent to the conversation. That said, I would like to point out one or two things: Wow, I have to say, I'm finding it really hard to believe this whole paragraph, but this statement is particularly mind boggling. Of course I believe what you're saying is true, but, being originally a graphic designer myself and having worked for the web with many others, all I can assume is that you are meeting the wrong graphic designers. Graphic design, or design in general, is not just about artistry and creativity, but a very technical craft. I genuinely feel that you are not paying the same respect to another profession as you are demanding for your own.
  3. I have to chime in here to say that I love the Cargo website myself πŸ™‚ I think we should take our developer hats off when thinking about this kind of page builder. In the case of Cargo, it's not even aimed primarily at professional designers, but artists in general. We are talking about people with a strong desire to experiment visually on their own website, and who may not have the money to invest upfront on a more robust tool. For them, the subscription plan that Cargo offers is quite nice, especially because they don't have to pay while building the website. Just browse through their site directory, and you will find some real gems β€” they might not appeal to you, but there are some very interesting solutions. I actually think the people at Cargo did a pretty good job at simplifying the job of building a website, with some original solutions for common problems. Just as an example, there is no concept of header and footer. Everything is a page (where did I hear this before? πŸ€”) and if you pin them, they appear on every webpage of the site. Because it works in such a different way then we are used from web dev and other page builders, it needs some tinkering before you get the hang of it. But we have to think that for someone who never built a website before, that doesn't pose a problem at all. Ok, enough ranting... just want to add that I also love their newsletter (don't expect any technical stuff there), that I open religiously every week, even if I don't use the service πŸ˜…
  4. All props to Jan! The PW people are definitely not an easy crowd for a page builder, but PAGEGRID is very well integrated in the system, with all the content that you add to the page saved as PW pages (a bit like with repeaters). Also, with PAGEGRID being just a PW field, like any other, you don't lose any of the flexibility of PW. It's not for everyone β€” it won't appeal to pure developers that don't care so much about design, and because it requires some knowledge of how CSS works, it may also not appeal to designers who don't care at all about the platform. Hopefully, there will be enough people in that middle who will appreciate it πŸ™‚
  5. Thanks again for catching the font issue @monollonom! Actually it was not Haas Grotesque causing the problem with the vertical metric. The problem was that the font was not loading at all, probably due to the file being corrupted and you were probably seeing the Helvetica present on your computer. This also must have happened when transferring the site to the server. Thanks again!
  6. Thanks Ryan! We just take the vertical scroll position and convert it to translateX values on the rows, using requestAnimationFrame() to make it smooth. Well, PAGEGRID is doing it πŸ™‚. There was a second <html> added by $config->prependTemplateFile. We forgot to remove it when we moved it from local to a new install in the server 🀣 Thanks for catching this! Thanks Romain! Thanks for catching the problem with the font. For now we added a max-height only for Firefox using @-moz-document url-prefix(). We'll see if there's another version of Neue Haas Grotesk that doesn't have this problem.
  7. Hey! I would like to announce that there is a new ProcessWire powered collaboration between me and Jan Ploch πŸ‘‰ @jploch. When I moved to Hamburg, I contacted him through the forum and we ended up working at the same shared office. Meanwhile we collaborated on some projects and then started our own company (a GbR, in Germany). We named it KONKAT Studio. Now we are publishing our brand new website konkat.studio As you may know, Jan developed a page builder for ProcessWire called PAGEGRID. At first, we were going to develop our website the usual way, but then we decided that we should take PAGEGRID for a spin and beat the hell out of it, to see what we could come up with πŸ˜„ We had this idea of three rows scrolling in different directions, and because PAGEGRID has scroll animations built in, we managed to do it all without writing a line of code. We may write a case study soon for those who are interested.
  8. There's pretty much always a sensible reason when it comes from Ryan πŸ™‚
  9. They answered from PH. Must have been something with my account. They "refreshed" it, and I managed to post the review πŸ‘
  10. I'm having trouble posting a review. I write it, press the post button, and absolutely nothing happens 🀷 Anyone else has had this kind of trouble on PH?
  11. @mleu That's a very old post. Could you give more details about your problem please?
  12. @eutervogel I corrected that for you. And there's nothing to be sorry about πŸ™‚
  13. Ok, this is a bit puzzling. The string is there, but empty. If you add more items to the repeater, you get an empty string on all of them? Maybe you could also create a new tinymce field and add it to the repeater to see if it behaves in the same way.
  14. And, according to your screenshot, you didn't. The text formatters selector is empty. Since you have Tracy installed, What do you get in the tracy dumps if you bd() the body? <div id="content"> <?php foreach($page->sections as $x) : ?> <?php bd($x->body)?> <?= $x->body ?> <?php endforeach ?> </div>
  15. Hm, the content is being striped by a text formatter or by some setting in TinyMCE. Do you have any text formatter added in the body field? You could also create a new item in the repeater and write only "test" in the body to see if works with the simplest content possible.
  16. Do you get any result when you output the body unformatted? <div id="content"> <?php foreach($page->sections as $x) : ?> <?= $x->getUnformatted('body') ?> <?php endforeach ?> </div>
  17. Every repeater item is given an ID that you can access inside a foreach with $item->id (or $x->id, in the case of your foreach). You can see on the screenshot that you posted, that the ID of your single repeater item is 1110. This would be just to see if your foreach is correct, but as I pointed out before, the most important is to understand why the body isn't even appearing in the array. You are sure you added the body to the repeater field, and not to the home template itself?
  18. You say you created the field body in the repeater, but in that case, I would expect it to appear here besides the image field: To test the foreach, can you change your code to $x->id instead of $x->body to see if the IDs show up?
  19. Here you go πŸ˜‰ https://codingpad.maryspad.com/2013/07/19/interview-with-ryan-cramer-processwire-cms-founder-and-lead-developer/ Here are the interesting bits for this particular topic: Edit: I knew there was another one https://www.cloudways.com/blog/processwire-ryan-cramer-interview/
  20. @wbmnfktr I edited your post to remove the automatic embedding of the twitter feed and replaced it by the link only. It was huge πŸ˜„ @Pete Should we deactivate it? Doesn't even make sense to embed the whole feed when you link to it 🀨
  21. On a less positive note, this is a very interesting, and a bit scary, talk https://www.humanetech.com/podcast/the-ai-dilemma
  22. Gone! The best spam is the one that starts nice discussions πŸ˜‰
  23. Moderator note: @ngrmm I understand that this thread is aimed at German speaking developers, but to keep the moderation manageable, we only allow English in the forum. Could you please edit the content of your post to be in English?
Γ—
Γ—
  • Create New...