-
Posts
3,029 -
Joined
-
Last visited
-
Days Won
20
Everything posted by szabesz
-
Sure! No client should be allowed to play with their own site. It's a serious tool, not a kindergarten toy Thanks for sharing!
-
The strange thing is that a few months ago I also installed ProcessWire on DSM and the site works. I do not need it because it was just a test, so I left it there sitting. The interesting bit is my config.php with this in it: $config->dbHost = '192.168.0.10'; $config->dbName = 'example_db'; $config->dbUser = 'root'; $config->dbPass = 'example_pass'; $config->dbPort = '3306'; Maria DB config panel reads: Port 3307 If I change the config to 3306, it cannot connect... I have no incentive to figure out what is going on because my Synology is slow so I use my online account instead. I just wanted to point out what fun it can be to deal with DSM (I have other, non related issues with it, so I often get upset when using Synology...)
-
Unified Documentation Resource for Processwire
szabesz replied to Orkun's topic in Wishlist & Roadmap
We have already discussed it, this idea got some "likes" too: https://processwire.com/talk/topic/11998-growing-processwire-in-2016/?do=findComment&comment=111499 If it is possible to check this forum's data then it would be possible to give edit rights to only certain forum members based on that, for example.- 11 replies
-
- 1
-
-
- documentation
- resource
-
(and 2 more)
Tagged with:
-
Yeah, it is a valid argument, I do understand
- 23 replies
-
- template
- website template
-
(and 2 more)
Tagged with:
-
Probably it is not that slow after all, considering your nice UIkit admin theme tutorial you did not spend all that time on it in vain, I'm sure! Thanks for the tuto, btw. In order to gain a deep understanding of something complex, one has to spend a considerable amount of time dealing with it but if it is something useful I think it is worth it. I have CodeKit 3 because I do not have the time to learn the command-line in this case. I compile site.less which is the source of the "main" css file, containing mostly all rules for the frontend. Source files are stored like this: The images alias is needed and it points to .../bower_components/uikit/src/images so that site.less compiles with the hard coded icon paths in UIkit. I tested including separate components only, but it is a pita to do so and I did not gain too much regarding the file size of site.css so I simply include them all.
- 23 replies
-
- 1
-
-
- template
- website template
-
(and 2 more)
Tagged with:
-
I do not know what sort of wizardry you are practicing but I only spent half a day figuring out the setup I use all the time ever since. Note that I discard the UIkit theming feature (the so called included build process) as I find it useless. I prefer my simple method. In my site.less file I do: @site-bower-path: "../../../../"; @site-font-path: "../../"; @import "@{site-bower-path}bower_components/uikit/src/less/uikit.less"; @import "@{site-bower-path}bower_components/uikit/src/less/components/_import.less"; @import "site_conf.less"; //my configs, site specific CSS and other LESS stuff @import "uk_conf.less"; //changing UIKit variable values and adding UIkit hooks @import "site_utils.less"; //utility classes I'm not a CSS preprocessor expert so I'm sure there could be more useful setups but it already makes customizing UIkit 3 easy, like in the case of: https://www.szepelet.com
- 23 replies
-
- 3
-
-
- template
- website template
-
(and 2 more)
Tagged with:
-
Because there are lots and lots and lots of ready-made plugins/modules/forntend-themes they can install without writing a single line of code. Maintaining such a site is another story, of course... Oh, and they came first, not ProcessWire
-
Adding to the answers above some recommended readings: https://processwire.com/talk/topic/1947-can-only-move-pages-if-can-edit-parent/?do=findComment&comment=18302 https://github.com/ryancramerdesign/ProcessWire/issues/588 https://processwire.com/blog/posts/field-permissions-overrides-and-more-2.6.2/ https://processwire.com/blog/posts/language-access-control-and-more-special-permissions/
-
[solved] Changing permissions of a children of admin template
szabesz replied to nickngqs's topic in General Support
Did you logout/login the client user?- 4 replies
-
- 4
-
-
- children
- permissions
-
(and 1 more)
Tagged with:
-
Possible to layout pages this way? (Page Tree Q)
szabesz replied to joer80's topic in General Support
If you happen to use the UIkit Admin Theme then its very easy to craft any sort of custom GUI just by using its styles. -
Sure I've been doing it for a while. However, built in support would be most welcome.
-
This hard coded icon path issue of UIkit is a pita, it can be fixed by using symlinks (at least on *NIX systems) but that is a workaround and not a solution. So true! I've already raised the same concerns. Changing the logo and the colors should be built in. The former is already supported, sure. But what about the colors?
-
Unified Documentation Resource for Processwire
szabesz replied to Orkun's topic in Wishlist & Roadmap
I couldn't agree more Maybe that is why I already proposed: https://processwire.com/talk/topic/17348-is-pw-becoming-more-popular/?do=findComment&comment=150914 "...I propose to make 2018 the year of the documentation, so to speak. What if we could stop hunting for new features for a while and concentrate on the following in 2018..."- 11 replies
-
- 4
-
-
- documentation
- resource
-
(and 2 more)
Tagged with:
-
Unified Documentation Resource for Processwire
szabesz replied to Orkun's topic in Wishlist & Roadmap
Sure. The issue is that there is more. For example the Blog is also full of organized info. At least one blog post is organized... but the all the blog posts as one entity is not really. Maybe one an endpoint which is actually a search feature that can search them all at once? Merging all this stuff looks like a mighty task.- 11 replies
-
- documentation
- resource
-
(and 2 more)
Tagged with:
-
+1 Plus @mindplay.dk last visited the forums in Oct 2015 and seems to be working on non-PW related projects.
-
I'm not aware of any additional work on this. Please give it a thumbs up at my GitHub request and you might also want to express why. New features are often added to ProcessWire when it is asked by lots of us...
-
Maybe not the best solution but you might want to export a profile and reinstall the system.
-
It would not be explicit but another thing I forgot to note is that there is no /product-categories/ nor /skin-concerns/ pages accessible by design, so what would happen if someone tried to go there? Thanks, not yet done just happens to be live
-
There you go: https://www.szepelet.com/products/ There are two parent categories: product-categories and skin-concerns but the tree is: - products - categories (not this one nor children are frontend accessible directly) - product-categories - cat 1 - cat 2 - skin-concerns - cat 1 - cat 2 I did not want to do product-categories/body-care because there would also be skin-concerns/body-care but those two body-care categories are not the same, even though they are called the same (client's request...). So I explode and implode parent_child in order to create these "combo categories" on the fly by using URL segments. But this is just one example, any kind of tags an categories are good candidates for URL segments.
-
https://processwire.com/api/ref/sanitizer/textarea/ "If using returned value for front-end output, be sure to run it through $sanitizer->entities() first." So it depends, if you do not trust your email client then use entities() too. It cannot hurt I think to use it, but you can experiment, of course.
-
"Please note the default 255 character max length setting." https://processwire.com/api/ref/sanitizer/text/ Maybe?
-
They spend too much time on social media The two "P"s are not even close, not to mention the rest. As for placing the emblem in front of the logotype: that is the most common way to produce a horizontal logo, naturally.
-
+1 Along with a hard to miss notification maybe?
-
If your project's budget permits: https://www.youtube.com/watch?v=Bohhf3aK8gU Unfortunately, I do not have ProDrafts (yet) but it seems to save with AJAX (and not just when AutoSaving) so you might wan to investigate how it actually works.