-
Posts
2,927 -
Joined
-
Last visited
-
Days Won
19
Everything posted by szabesz
-
I woke up this morning and this was the very first forum topic I had read. I was really happy to start the day with a ProcessWire success story, it made my day. Thank you for sharing it with us and keep up the good work! Cheers from the other side of the Globe
-
In addition to all the above. @Sipho If you want to make sure hidden pages never show up accidentally (say they have a template, guest access, and someone happens to know/figure out its URL) then you can turn hidden into password protected with @adrian's great PageProtector module easily: Another tip when dealing with related data: you might want to take a look at @Robin S's cool module: Hope this helps too.
-
Oh I see, banging on open doors again Thanks for the info!
-
Hi @bernhard Thanks for putting all the work into sharing this module. What came to my mind was that I do not really like providing code in admin input fields, except when it is a few lines of code. So wouldn't it be possible (optionally maybe) to provide paths to files instead?
-
I was also thinking of using DataTables(.net), but paying for the editor is not something I'm after, so I looked for alternatives and found this one: http://w2ui.com/web/demos/#!grid/grid-21 W2UI is quite feature rich, besides using its Grid I will also use the other UI elements such us Layout, Form, Field, etc... Ajax will be needed to wire them up, of course. First time I'm building something like this, it will be quite an adventure, I'm sure
-
We'be been missing you! Hope you've had a great time.
-
This is cool! Thanks a lot. In the near future, I want to port some WP sites with galleries to ProcessWire, so I will definitely give it a try. I put it on my loooooooong todo list
- 41 replies
-
- photoswipe
- module
-
(and 1 more)
Tagged with:
-
GET variable in each address returned by $page->url ()
szabesz replied to PawelGIX's topic in General Support
just for reference: we have "shortcuts" since version 3.0.16 https://processwire.com/api/ref/wire/add-hook-method/ related:- 4 replies
-
- get variable
- url overrride
-
(and 2 more)
Tagged with:
-
Installation stops after database information page
szabesz replied to devlisa's topic in Getting Started
You might also want to peek under the hood and see what is rendered in the browser, maybe a partially rendered page? That reminds me of this: Are you sure you php ini settings are ok? -
I was thinking of it too, but even in that case the password reset should work but he reported the opposite.
- 7 replies
-
- reset
- locked out
-
(and 1 more)
Tagged with:
-
Installation stops after database information page
szabesz replied to devlisa's topic in Getting Started
Hi, so you passed "Database Config" (see on this page too) but "Admin Panel Information" is missing from the page while "Test Database and Save Configuration is there"? Any PHP error log entries? You might have a HTTP Host name issue. Try to use 127.0.0.1 instead of localhost. Edit: added missing link to @clsource's blop post -
Meaning you exported it and installed ProcessWire while choosing it during the install process? It should work, however, normally I just copy over all files and the database too, adjust site/config.php and .htaccess and it should work if requirements are met. In some rare cases you might also need to trucate the cache table of the db, see: urlSegments are integral part of the system, they should work if everything else works too I guess.
- 28 replies
-
- 1
-
-
- urlsegment
- filter
-
(and 1 more)
Tagged with:
-
"published" and "modified" always have the same value
szabesz replied to Marcel Stäheli's topic in API & Templates
+1 I would not rely on system internal values for such a thing since you should let your editors decide what date to pick, and they should not change system internal values whatever they may be. BTW, I often push it a bit further and create an "Event Date" too, to signal when a particular event took place (if appropriate, of course, so such a field is optional). -
Something (someone?) must have changed your site I guess. Loosing all passwords and at the same time you have a site that "somehow" changed? Do you have a backup? BTW, more troubleshooting tips can be found here, for example: https://processwire.com/docs/tutorials/troubleshooting-guide/page2 https://processwire.com/docs/install/troubleshooting/#general-troubleshooting-upgrade-tips
- 7 replies
-
- 2
-
-
- reset
- locked out
-
(and 1 more)
Tagged with:
-
I've run into the very same issue today when copying a site from one server to another. Deleting all records of the cache table solved the issue.
-
Hi, this is the diff which should help (before and after): -INSERT INTO `templates` VALUES (2,'admin',2,8,0,'{\"useRoles\":1,\"parentTemplates\":[2],\"allowPageNum\":1,\"redirectLogin\":23,\"slashUrls\":1,\"noGlobal\":1,\"compile\":3,\"modified\":1474288506,\"ns\":\"ProcessWire\"}'); +INSERT INTO `templates` VALUES (2,'admin',2,8,0,'{\"useRoles\":1,\"parentTemplates\":[2],\"allowPageNum\":1,\"redirectLogin\":23,\"https\":1,\"slashUrls\":1,\"noGlobal\":1,\"compile\":3,\"modified\":1498842443,\"ns\":\"ProcessWire\"}');
-
A bit OT but it is Friday afternoon after all, so it is time to relax a bit Funny clip I've just come accross:
-
How much does a gender reassignment surgery cost?
-
Cool new feature in CodeKit 3.2 (one might never use it but who knows...): Styling Remote Websites
-
Rendering unpublished pages to unauthenticated user
szabesz replied to ZGD's topic in General Support
I see, I do not have experience in this area (others might join the discussion to help you out ) but as a tip: you might be interested in this one: -
Rendering unpublished pages to unauthenticated user
szabesz replied to ZGD's topic in General Support
Why would a page query redirect to 404? Am I missing something? We are not talking about accessing those pages directly via the browser, are we? BTW, $pages->get()returns one page only, if you need a PageArray with more than one Page in it, you can use find() with include=all, eg: $pages->find("template=product, include=all"); -
Rendering unpublished pages to unauthenticated user
szabesz replied to ZGD's topic in General Support
Hi https://processwire.com/api/ref/pages/get/ Quote: "Use this method when you need to retrieve a specific page without exclusions for access control or page status." Is it what you are looking for?