Jump to content

AndZyk

Members
  • Posts

    678
  • Joined

  • Days Won

    10

Everything posted by AndZyk

  1. What is the line 6 in your header.php file? This line obviously causes the error. The include works, because if it wouldn't, there would be no error. Have you tried to add the namespace in the first line of your header.php? I think you need it to use the new functions API.
  2. Hi @ridgedale, it is recommended to include your files like this: include("./header.php"); Like mentioned here. But I prefer to make an extra folder "includes" and use the wireFileInclude function: wireIncludeFile("./includes/header"); Cool thing about this function is: PHP file ending is assumped You can pass variables as array: wireIncludeFile("./includes/header", array( 'homepage' => $homepage )); Regards, Andreas
  3. The most important CMS-updates in April by t3n: http://t3n.de/news/joomla-drupal-mehr-wichtigsten-819564/
  4. AndZyk

    CDS Service

    Thank you all for your feedback. @rick The translations will follow over the next days. Thank you, I have corrected this. @Robin S You both are right. I drilled it down a bit and removed the largest variation for desktops. @szabesz I have forgotten to run the logo through SVGO. Now it is smaller. @tpr I know it is really subtle, for now I want to leave it in there, because it adds a nice touch. But I get your point.
  5. AndZyk

    CDS Service

    Sorry to here that. I never noticed a major slow down. I think this is probably hardware related. Could you please share your specs (OS, Browser, Display size), so I could look into that? I wouldn't like to remove this effect.
  6. AndZyk

    CDS Service

    Thank you for the kind words. I totally forgot about http/2. I will look if it is possible to enable http/2 on the server.
  7. AndZyk

    CDS Service

    The CDS Group is an established service partner of leading manufacturers and trading partners in the IT and high-tech sector. We relaunched their service website using the latest ProcessWire. Building this website was fun, especially because of the latest additions to ProcessWire, like the recently introduced markup regions and AdminThemeUIkit. It is really easy to brand the new admin theme with a few lines of code, in my case 7 (see a glimpse in the screenshot below). Besides that, this website makes heavy use of the Repeater Matrix, to be as flexibel as possible. The front-end was build with Bootstrap 3 and the icons used are an custom icon font generated with the IcoMoon App. For a better usability, every textarea can be edited in the front-end. www.cds-service.com Modules used: AdminThemeUIkit Front-End Page Editor Repeater Matrix ProCache Markup Sitemap XML Email Obfuscation (EMO) Database Backups Jumplinks Tracy Debugger Regards, Andreas
  8. I meant no coverage since the release of version 3. Meanwhile Mike from @cmscritic answered on my question via the contact form with this: I was always under the assumption, that this website contains only articles from selected authors. It seems that I could write him an article, but I think there are more capable members in this forum to write an article. Also is english not my native language. But first, they should fix their register page which currently cannot be found. Maybe @Jonathan Lahijani can fix this? Regards, Andreas
  9. After my initial question via the contact form of the CMSCritic site in October 2016 was ignored, I asked @cmscritic again and will ask here too: Why doesn't @cmscritic cover ProcessWire 3 at all? Neither the first release of version 3 nor the latest stable version 3.0.61? For a site that calls itself: ... I find this really sad. I don't want to bash them, I would like just to know an explanation.
  10. ProcessWire is mentioned in the repository Awesome UIkit:
  11. I recently made a project with Kirby, because we needed a file based CMS and while working with it, I really enjoyed their cheatsheet and search function. I think the new redesign of the website could benefit a lot of such a build in cheatsheet and seach function. Besides that the first visual impression was also state of the art. Just to be clear, I don't want to talk about those CMSs, just want to give some examples.
  12. Hello @opalepatrick, I don't have any experience with CSP, but there was already a little discussion about this topic in this thread: From what I understand is, that you could use CSP in your front end with PHP if you like. But for the back end it is not possible, as you already have experienced. Regards, Andreas
  13. For simple mails, you could just use the core WireMail API functions.
  14. Ok, so it is lossy. But my point was, that in comparison to TinyJPG it doesn't visually alter the image with darker colors and blur.
  15. You mean the web service tinyjpg.com? Never heard of it before. Compressed with TinyJPG (87 kb) But I think this web service is using lossy compression. At least I couldn't find a clear statement on their website. So this web service is out of question for me, because I am only looking for loseless ways to compress images. But I might be wrong. I don't think so. Looking into the developer tools, I see no difference to my original images. Here an interesting post about tests with Guetzli: https://www.34sp.com/blog/speed-testing-googles-guetzli-jpeg-encoder/
  16. I had some time now to try out Guetzli and have to say, that it is really memory hungry. But the results on the other hand are impressive too. I made some tests with good old Lenna: Uncompressed (312.31 kb) Compressed with JPEGOptim and Jpegtran (ImageOptim default) (291.87 kb) Compressed with Guetzli (127.8 kb) From 312 kb to 127 kb is indeed impressive. For anyone who doesn't like the command line. The newest alpha of ImageOptim 1.7.1a4 also includes Guetzli, but there it is disabled by default and you will be warned, if you activate it.
  17. Thank you for the hint. Nice to see, that it is already in discussion. Wow, I didn't thought that this encoder needs so much performance.
  18. Loving the new admin theme. It is clean, easy to brand and all of those additions over the last weeks come in really handy. I am excited whats coming next.
  19. This may be of interest for anybody seeking for ways to compress images. Google open sourced a new JPEG encoder „Guetzli“ (catchy name): Announcement GitHub repository I am not quite sure, how this new JPEG encoder could be used except with the command line. Maybe some apps (f. e. ImageOptim) will implement it in their interfaces or maybe it could be used with an module? Haven't even tried it out yet and it sounds performance intensive, but I am glad that they sticked with JPEG and didn't introduced another exotic format. Regards, Andreas
  20. It is also easy to use Bower with CodeKit, but I still prefer to use it with the command line. For a while now, I skip every folder in CodeKit I don't work in: assets modules vendor wire For example if I had upgraded TracyDebugger with the Upgrade module, CodeKit always wanted to compile scripts and styles. Also pausing CodeKit (CTRL + ALT + CMD) is helpful before making big changes to the files.
  21. This page field had never a default option in all of the admin themes.
  22. Just be careful not to build a mystery meat navigation.
  23. The permissions inside your config file were detected during your installation of ProcessWire and seem to be alright. This is the thumbnail used for the admin created from your original image. This is obviously the original image. But strange, that this one has permission 600. Sorry, but I have no explanation for this behavior. Maybe someone else here can help you or you have to contact the support of your hoster.
  24. Welcome @Amr Magdy, if your hoster doesn't allow file permissions 600, you could try the next higher permissions 640: https://processwire.com/docs/security/file-permissions/#potential-permissions-for-writable-directories-and-files Regards, Andreas
  25. Welcome @Schwab, This is already implemented with the „quick-tree“ page list panel. This one is a matter of preference. In my opinion, I find the extra additional clicks for dragging or editing a page alright, because I don't want me or someone else to accidentally move a page. If you want to quickly edit or view a page, you could use the long-click actions. I find them very useful, but they should be promoted more obvious. Regards, Andreas
×
×
  • Create New...