Jump to content

szabesz

Members
  • Posts

    3,058
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by szabesz

  1. 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?
  2. 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
  3. Nice work. I wish you used UIkit instead of Bootstrap, otherwise I like them One unwanted artifact I spotted:
  4. We'be been missing you! Hope you've had a great time.
  5. 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
  6. just for reference: we have "shortcuts" since version 3.0.16 https://processwire.com/api/ref/wire/add-hook-method/ related:
  7. 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?
  8. I was thinking of it too, but even in that case the password reset should work but he reported the opposite.
  9. 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
  10. 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.
  11. +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).
  12. 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
  13. 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.
  14. 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\"}');
  15. 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:
  16. How much does a gender reassignment surgery cost?
  17. Can be related?
  18. Cool new feature in CodeKit 3.2 (one might never use it but who knows...): Styling Remote Websites
  19. 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:
  20. 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");
  21. 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?
  22. @clsource You must be the only person on the planet who reads these RSS feeds Nevertheless, this issue should be fixed, of course.
  23. Even though the installer reports that the environment is ok, you might want to share the details of it since it is probably a server issue.
  24. "AllowOverride directive is used to allow the use of .htaccess within the web server to allow overriding of the Apache config on a per directory basis." Just search the web: https://www.google.hu/search?q=what+is+AllowOverride+All Happy ProcessWire tinkering!
  25. Hi, There is a list of reserved words which cannot be used for a Field, see: https://github.com/processwire/processwire/blob/master/wire/core/Fields.php#L36 I do not remember exactly when, but limit was added to this list, hence you cannot upgrade without first renaming the Field in question in the admin. You will probably need to change some code too, in order to accommodate to this change.
×
×
  • Create New...