Jump to content

rjgamer

Members
  • Posts

    82
  • Joined

  • Last visited

Everything posted by rjgamer

  1. Hello. 2 years later I retested the case and still: The table of a field in the database does not get deleted. Why? And is there a clean up function? I've created a text field called "test", executed a few manipulations (added to template, saved text, etc.) and then I deleted it later on. But the table "field_test" ist still in the database. Thanks.
  2. Any solution to catch a custom exception (e.g. RuntimeException) before ProcessWire does? I can catch it like in the first post above, but ProcessWire throws it anyway. Edit: Dont know why. But now it works. Strange.
  3. Hi. Again me with a question. How does the migration of modules work with RockMigration? There is a watcher, but it only watches files and no database changes. Example: I've installed a new module installed with a few custom configurations on my dev environment (e.g. the Duplicator module). Now I want to have the module installed on prod environment too. Does RockMigrations with watcher really catch the module installation and configuration or what is the best way to do handle a new module installation and configuration? Thanks for your support, and no... I don't really need a first class VIP support video from @bernhard again. But you are free born of course😀
  4. Hi, I want to use comments module for a new web project. Can I redisgn the form output completely based on current Bootstrap standards? If yes, how? Thanks.
  5. Yes, but $input->post helps only when the data got send as FormData. But you can post data also as json in the body of request (fewer code in JavaScript). Native PHP example for reading them: // Takes raw data from the request $json = file_get_contents('php://input'); // Converts it into a PHP object $data = json_decode($json); Looks like PW has no functions. So I will use the native solutions from PHP. No problem 🙂
  6. Thank you! URL hooks looks like the easiest way without overhead for a a few API calls. Did PW offer any solution for POST request with JSON body? Or do I need to use native PHP functions?
  7. Hi, I've a few ajax calls from the frontend, which I handle in the _init.php file in the template folder. The response is always json. The code works, but is there a "better" place for such code than in the _init.php? The functionality on my enviroment is some kind of signature/login validation which should be called on every page, idenified by a query param (e.g. /example/path?foo=1). Dummy example: if (input()->get('foo')) { // do foo and response json $foo = [ 'foo' => 'bar' ]; header('Content-Type: application/json; charset=utf-8'); echo json_encode($foo); exit; } if (input()->get('bar')) { // do bar and response json $bar = [ 'foo' => 'bar' ]; header('Content-Type: application/json; charset=utf-8'); echo json_encode($bar); exit; } Thanks.
  8. Yes, when echoed in a HTML tags it got only outputted once. But if this is the case with markup regions, then the code out of html tags will be executed two times and does hurt the performance. Or not?
  9. Hi, I've a simple echo output on the top of a template file. But ProcessWire outputs the echo 2 times. Does this mean the template file gets loaded 2 times? Or is there a misconfiguration on my side? I use markup regions as output strategy as you can seen with pw-id="content". Thanks for your support!
  10. Thank you! Will give it a try again. Update: Sorry, I was in hurry. I just saw you made a video for me. This is like VIP support 😀
  11. Hi. I have tried out RockMigration and have a few questions (and still dont get it, I how it should be implemented in a running website on dev and prod stages). I have a working website. Can I generate a fully migrate.php file or do I need to create it manually with the code hints of each field/template? Last one would be a real pain if there are many fields. If I have a field added and want to remove it later on in development process. Then how can I different the state of the field in the migrate.php? Top to down, first added and then removed in one run? But how would the migrate.php looks then? Are there any advanced examples of migrate.php for learning the basics and inspiration? Or advanced docs? Thanks.
  12. Last update. My fix was to add the following command to my npm script: --no-ghost-mode "browser:sync": "browser-sync start --proxy dev.local --no-notify --no-ghost-mode --files public/site/templates/**/* public/static/**/*", The commands disables the mirror of all clicks, scrolls & form inputs via browser-sync. Source: https://browsersync.io/docs/command-line
  13. lol.... issue posted and problem found. It looks like it is a combination of browser-sync as proxy when running ProcessWire unter localhost:3000. When I want to switch the tab, injected browser-sync reloads the page. But why I dont know.
  14. Hi, I've a field of FieldsetPage mapped with a few fields. E.g. If I now want to disable the "required" state of title I need to switch to the tab "Input" of the field mapped to the Fieldset. But when I click "Input" the page completely reloads and I'm landing on the admin site with the page tree. I'm using the latest version 3.0.210. Does anybody else have the same problem? It is a relatively plain installation. I just have RockMigration installed and uninstalled. And TinyMCE installed. Thanks for your support!
  15. I am getting errors when using cron.php Can you check/test it? I am on my phone and cannot access the error message properly. Thanks.
  16. I cannot see the default value settings for image fields on the latest PW versions. Did I miss something?
  17. I've a regular updated PW installation (3.0.191) which is more than a year old. I cannot find any AdminStyleRock module. Why? And how can I install it the best way?
  18. I like the backend theme. Good job. Any chance to get access to it?
  19. Hi, I am not happy with the limited features of the free comment module. Now I am thinking to buy the Form Builder Pro, but I am not sure if it can be use for custom comment system. Can anybody tell me more about the possibilities to create a custom comment system? Can I change the output of each input field for Bootstrap oriented stylings? And can I output the sent data in the frontend? Thanks.
  20. Thanks a lot. Is there any possibiliy to add a custom field to the comments?
  21. Hi, I want to replace the comment output classes with custom classes. Because I need the output formatted for Bootstrap, with a few other tweaks. I'm rendering the template with this code: <?= $page->comments->renderAll() ?> How can I replace the default classes CommentForm and CommentList with custom classes before the instance got created? Thanks.
  22. Strange. There are no default value settings anymore in PW 3.0.181. Does anybody have the same issue?
  23. Looks like the same issue I have with page repeater. It would be really cool to get this supported.
  24. Since the last update of the Upgrades module, there are two packages of duplicator: One can be upgraded, the other not. And when I install duplicator, only the module "Duplicator" got installed. I've had to install "ProcessDuplicator" manually. Thanks to this info here. It's look like something smaller is messed up since the last few PW updates. Or not?
×
×
  • Create New...