Jump to content

Manaus

Members
  • Posts

    219
  • Joined

  • Last visited

Everything posted by Manaus

  1. This is the error I get, just after the installation routine (DB connection, Profile import, cleanup) Fatal Error: Uncaught Error: Class 'ProcessWire\Pages' not found in /home/mysite/domains/domain.mysite.it/public_html/wire/core/ProcessWire.php:526 Stack trace: #0 /home/mysite/domains/domain.mysite.it/public_html/wire/core/ProcessWire.php(302): ProcessWire\ProcessWire->load(Object(ProcessWire\Config)) #1 /home/mysite/domains/domain.mysite.it/public_html/index.php(52): ProcessWire\ProcessWire->__construct(Object(ProcessWire\Config)) #2 /home/mysite/domains/domain.mysite.it/public_html/install.php(119): require('/home/mysite/...') #3 /home/mysite/domains/domain.mysite.it/public_html/install.php(1809): ProcessWire\Installer->execute() #4 {main} thrown (line 526 of /home/mysite/domains/domain.mysite.it/public_html/wire/core/ProcessWire.php) The only error I get from the logs. Attached is same but with colors Thank you very much
  2. Hello, I tried to install PW on a subdomain. Installation was perfect, all requirements met, all lights green. After installation I got a blank page. No errors whatsoever. I tried to change the php version up and down, no change. I read somewhere here in this forum that htaccess might be to blame, but I did not change the one PW put on my server. I checked also the server log, asked support about it (client denied by server configuration). They say it's up to the User, server is ok. On frontend I got a Fatal Error: Uncaught Error: Class 'Pages' not found in wire/core/ProcessWire.php:575. Removed install.php and install folder. Nothing. Debug in config file is set to true, php version is 7.4 for PW 3.x. Database tables were created. One note, the domain is a third level domain, so abc.mydomain.com etc. Installed PW many times, this time I'm not getting meaningful data from the app. Thank you very much for any hint.
  3. I understand that the native Processwire engine provided by TemplateEngineFactory is functional to other engines. Nonetheless I find interesting the idea of separating layout and logic, even with php files. The question is: is there a 'yield/block' tag available in this specific engine? Something to use with a layout.php file? Thank you very much
  4. I'm managing my users base with the built in users API. Some of the users are learners, some are teachers. I tag them with the roles property. Now, I would like to have in my webiste a section, let's call it 'teachers' whose children bear the same informations I put in the users pages. That is if I load /teachers/paul/ I see on that page users->get('paul')->allDataBlabla . Is there a way to automatize this process of displaying and if possible also creataing pages under the /teachers/ root page? Maybe intercepting the querystring and doing the logic on a 'teacher' page? Thank you very much
  5. Hello, does it exist a module for managing login and register pages? Or do I need to write the logic myself? Thank you very much
  6. Hello, I'm setting up a multi-author website, where for each Article I can have an author. Pretty basic. Since authors have their profile, I added multiple fields to the user template, such as image, first name, and so on. Now, in the Article template I would like to add the user as author, but I cannot find it in the fields suggestions. So I created an Author field letting me link the 'template' of selectable pages, not the parent, because I cannot find the Users in the suggestions provided. To make the long story short, I need in an Article page a dropdown for selecting a User. That's it Thank you very much
  7. Hello, what setup do you suggest? My client needs to sell access to content (articles, mainly). Pay for reading, maybe also with a subscription model. Thank you very much
  8. I read on the documentation about `find`: So `get` should fetch also unpublished pages. Still not working... I'm using it through the `child` method, I guess `child` inherits `get` functionalities right?
  9. On page A I'm trying to get some fields data from page B, which I need to be hidden/undiscoverable. I'm using `$pages->get` method, but as soon as I make page B hidden/unpub, page A returns error. How can I workaround this? Thanks!
  10. Hello, I need to implement such protocol on my website, is there any resource I can leverage for using it on my website? Thank you very much
  11. Thank you all, I checked and the value does not exist. Since the code that gives problems is used inside an included file (a header) I should foresee whatever case arises: existence or non-existence, etc. Da2's solution works, but I wonder if Twig crashes so easily on a typical conditional case, and if there isn't a pure Twig approach to use. Thanks
  12. In my template I have set a variable called 'noindex'. Now, in my Twig template I cannot seem to use a conditional like this: {{ if page.noindex }} <do this> {{ endif}} because "Method Page::noindex does not exist or is not callable in this context" Should I put all the values within a `view` object, and pass it to the template? Is there a shortcut? I remember that within Smarty it is permissible to use `{ page->index }` within a template, and it works. Thank you very much
  13. Had the same problem, solved by removing the ScheduleCloudBackups module.
  14. Hi, I have a page where I have placed a custom field that has Lorem Ipsum as the label and lorem_ipsum as the name. On the page hosting that field, I would like to print the label. How can I do this? I tried `$page->lorem_ipsum->label` but it doesn't work. To investigate the problem further, I also tried `$page->lorem_ipsum->body`, in case there were several methods to access the various properties of the field. I also tried `name`, but the CMS still considers the field `$page->lorem_ipsum` as non-object. Can I print out the field name without going through the `$fields` object? Thanks
  15. Hello, what is the best way to insert images within the text? Is should be simple and straightforward. I'm using SimpleMDE. Thank you very much
  16. I have never understood what the purpose of render() is. Sometimes I see it applied to the $page object, sometimes to an image, sometimes to an input field object. I searched the cheatsheet, but couldn't find much. I couldn't find any references or explanations in the forum either. Where could I learn what this method is and how it works? Thanks
  17. I like the syntax expressed on the ProcessWire homepage: echo $pages->get('/')->children->each('<li><a href={url}>{title}</a>'); where html tags are generated only if the selector returns results. In contrast to such a code: <li><a href="<?= $page->httpUrl ?>"><?= $page->title ?></a></li> where the external tags are generated anyway. I read that `each` works for WireArrays, is there a method applicable to only one element? for example: echo $pages->get(10)->someMethod('<li><a href={url}>{title}</a>'); Thanks!
  18. I'm querying 3 pages, with this code: <?php function dateToItalian($unixtimestamp) { setlocale(LC_TIME, "it_IT.utf8"); return ucwords(strftime("%a %d %B %Y", strtotime($unixtimestamp))); } ?> <?php foreach ($page->children as $child): ?> <p> <?php echo $child->created." "; echo dateToItalian($child->created); ?> </p> <?php endforeach ?> I get this: 1685722140 Thu 01 January 1970 1685723334 Thu 01 January 1970 1662705715 Thu 01 January 1970 Anyone can explain why?
  19. Thanks Jan, but I can't get it to work It returns 'Undefined variable: loader' when I load the page... I think the code you are quoting is suitable for the Symfony context?
  20. I'm using TwigTemplateEngine for an Italian website, but I get always English dates for `{{ page.created }}` code. I installed the Languages Support module, Languages, Italian Language Pack, used `setlocale('LC_TIME', "it_IT")`, `setlocale('LC_TIME', "ita")`, and the various combinations with LC_ALL, but no. How can I output an Italian date on the page? Thanks!
  21. Hello, I am building a page of events, where I want to show only the coming ones. I tried this <?php $theNow = new DateTime(); // ora foreach ($page->children as $child): $firstDate = new DateTime(); $firstDate->setTimestamp( $child->event_when ); $interval = $firstDate->diff( $theNow ); echo $interval->s; // in seconds if ($interval >= 0) { // show article } ?> Beside returning a `Object of class DateInterval could not be converted to int` error, I ask if there is a method for displaying future events beside this. Thanks!
  22. I need to see some of the pages content in the Pages tree, for a specific template. Is it possible? Creation dates, a couple of fields content etc. Thanks
  23. I'd like to have a title field "First name second name" which is automatically composed by a "First name" and a "Second name" fields. For example, if I have a page with John Ford as first name and second name respectively, I'd like to have the title as "John Ford" (without quotes). Is it possible? Thanks
  24. I'm using a Datetime field for displaying event dates, and I get an English format: Sunday, 8 January 2023 10:00 I put the set_locale function in the page, but no: <?php setlocale(LC_TIME, 'it_IT'); ?> How do I get a datetime in italian format? Thanks a lot
  25. I have a template with an "images" field. I'm trying to display it on the page, I'm using these lines, with results I do not understand. $page->images // teddy.jpg $page->images->httpUrl // void $page->images->url // /site/assets/files/1085/ $page->images[0]->url // error: accessing non-object I thought `$page->images->url` would work, but no. Why is it?
×
×
  • Create New...