Krlos
Members-
Posts
176 -
Joined
-
Last visited
Everything posted by Krlos
-
[Solved] Is hosting with Litespeed webserver seamless?
Krlos replied to olivetree's topic in General Support
Me too, there are no compatibility issues on any of my sites, some on version 2.5 and 3. -
I always recommend pwtuts.com, it has great content for beginners.
-
@Robin S is a machine!
-
In your site/config.php file, ensure that the $config->httpHosts is properly updated with only the domain you're currently using, which is plant-directory.something.edu. Since you've switched addresses, you don't need the old domain unless you're maintaining multiple environments (like a dev or staging environment). You can try this configuration: $config->httpHosts = array('plant-directory.something.edu'); If you have a development or staging site (e.g., dev.plants.something.edu), you can include both: $config->httpHosts = array('dev.plants.something.edu', 'plant-directory.something.edu'); ProcessWire sometimes caches configuration files. You can clear the cache by doing the following: Log in to your ProcessWire admin panel and navigate to Modules > Core > Clear compiled files (if you can log in).
-
Is there a way to "concatenate" two images fields together ?
Krlos replied to François Lacruche's topic in API & Templates
I did something similar using image tags. I placed all the photos in an image gallery and assigned the 'cover' tag to the desired photo to be used as the cover. Then: $image = $page->images->find("tags=mytag")->first(); My client actually loved this approach because we created new tags, and they can now assign them according to the position where the photo will be used -
Interesting, does this module work similarly to the Token module in Drupal?
-
Automatic Language Detection and Redirection in Multilingual Site
Krlos replied to Krlos's topic in Multi-Language Support
@Tiberium, Wow... just wow. Thank you so much for providing the code! I really appreciate your help. I’ll give it a try later today and let you know how it goes. Thanks again for your support! -
Hi everyone, I'm working on a multilingual site in ProcessWire with three languages: Spanish (default), English, and Portuguese. I've already implemented a manual language switcher that works correctly, but I would like the site to automatically detect the user's browser language and redirect them to the specific language version. Users with their browser language set to Spanish should be redirected to mysite.com Users with their browser language set to English should be redirected to mysite.com/en Users with their browser language set to Portuguese should be redirected to mysite.com/pt Users with any other browser language should be redirected to mysite.com/en Can anyone guide me on how to achieve this? I would appreciate any advice, code examples, or modules that could help me implement this functionality. Thanks in advance!
-
I recommend checking out PW Tuts pwtuts.com. There, you can find basic concepts that will help you understand the fundamentals and allow you to create quite advanced websites.
-
@TomPich welcome to Processwire! There are two modules that could solve your need https://processwire.com/modules/settings-factory/ https://processwire.com/modules/process-general-settings/
-
Hi @Macrura, I just found your amazing module, how can I enable multilanguage support for fields? Thanks.
-
It's a remote server, not related to my PW site. The API works from postman. He advised to use jquery or similar to query the API, but I don't know how to do the query in curl and then send the PDF report to jquery to download the PDF file. Basically he explained to me that the problem is that if I try to open the file from my PW site the problem occurs, but if I consult the API and pull the report URL and serve it via Ajax or other method it should work.
-
Hi, I don't use much curl and I need to do the following: I have a template in PW, with the following code: userid, reportID are received from a form in this same page. $url = 'https://path.to.API.endpoint'; $ch = curl_init( $url ); $data_string = '{ "userid": "' . $userid . '", "reportID": "' . $reportID . '" }'; curl_setopt( $ch, CURLOPT_POSTFIELDS, $data_string ); curl_setopt( $ch, CURLOPT_HTTPHEADER, array( 'Authorization: AUTHORIZATION KEY', 'Content-Type:application/json' )); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch, CURLOPT_POST, true ); $result = curl_exec($ch); curl_close($ch); $obj = json_decode($result, true); if($obj[0]['status'] === "validated") { $pdf = $obj[0]['reportURL']; header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="report.pdf"'); header('Expires: 0'); header('Cache-Control: must-revalidate'); header('Pragma: public'); header('Content-Length: ' . filesize($pdf)); ob_clean(); flush(); readfile($pdf); exit; } The problem I have is when I run the code above I get this error: {"statusCode":400,"error":"Bad Request","message":"Invalid cookie value"} The API developer tells me that the error occurs because when making the query using POST I am injecting my server's cookies into his server and that is why it gives that error and the call does not go through. He told me that the solution is to take the response from the API and use ajax to deliver the PDF report, but I don't understand how to do all this in Processwire. Any help is very welcome.
-
Hi @da², The provider confirms that the cookie has not changed. We have found that in the normal flow it gives us the mentioned error, but if we force delete the cookies using "clear browser cookies" in the network tab of the chrome inspector and I hit submit the form again then everything works.
-
Hello, This may not have to do with processwire, but I have a website built with processwire that was working normally. There is a form where users download xray scans, the user enters his ID and an id code for the exam, then using curl we call an api to authenticate and serve the pdf file. Now when filling out the form, the result of the call to the server where the API is located returns: {"statusCode":400,"error":"Bad Request","message":"Invalid cookie value"} The strange thing is some combinations of browser - operating system the error does not appear, but in most it does. Any ideas that help me to be able to solve this problem are very, very grateful.
-
Hello, A client informed me that his website was giving error, I went to check and everything was ok. I then went to check the processwire logs and found the following: Many of this: 1 hora antes 27-06-2023 12:59:48 - ? SQLSTATE[HY000]: General error: 1021 Disk full (/tmp/#sql-temptable-3dd889-8a7ab0-0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") In /wire/core/WireSaveableItemsLookup.php line 68 And many of this: 1 hora antes 27-06-2023 13:04:32 - ? SQLSTATE[08004] [1040] Too many connections In /wire/core/ProcessWire.php line 494 About 50 Exceptions in a 2 hours span. Then I checked if there was space in Cpanel and there was no hard drive problem in cpanel. What has happened here?
-
Hi @nbcommunication, yes I'm using: <section class="about-section pt-48 pb-48" style="background-image: url(<?php echo $page->images->render(); ?>); background-repeat: no-repeat; background-size: cover; background-position: center;"> I'm doing it wrong? I thought it was enough to define the sizes in the module configuration.
-
Hi, @Stefanowitsch, can you please explain how you managed to use the module for background images? I have tried to use, but I only get the code for <img> and I'm trying to add my background images using inline css to make it work with Tailwindcss. Thank you.
-
Hola, puedes postear el código? para poder ayudarte.
-
Same as you, deploy and forget. I've noticed that when hosting providers update something, the log file starts growing with warning logs. I usually realize months later. I love PW?
-
I'm trying to use Urlsegment + combo field, but have this problem I can't solve: I have a combo field with some fields and one category field based on a page reference field. When I try to filter content using the first url segment urlSegment1, I get no data, but if I use the page reference page ID it works. Code to filter: $segmento1 = $input->urlSegment1; (in this case "domo") $filter = $pages->find("template=alojamiento, alojamiento_combo=$segmento1, sort=random, limit=20"); This wont work: template=alojamiento, sort=random, alojamiento_combo=domo, limit=20 This works: 1184 being the ID of the page reference field. template=alojamiento, sort=random, alojamiento_combo=1184, limit=20 I also tried, but don't work: template=alojamiento, sort=random, alojamiento_combo.categoria=domo, limit=20 Any help is appreciated.
-
Hello, I'm updating a Processwire 3.0.85 version to 3.0.210. In my hosting is running PHP 7.0. (I know...) I'm installing in my local Mampro running PHP 8.1.13 and 8.2.0 and in both version I get this error: Deprecated: PDO::quote(): Passing null to parameter #1 ($string) of type string is deprecated in /Users/XXX/Documents/Sitios/msonline/wire/core/WireDatabasePDO.php on line 1564 The site is working fine, but I can't log into the admin backend, I get a 404 error and the error above. Any help is very welcome.
-
Merry Christmas @ryan, and all the Processwire community!
-
New post – Implementing and using TinyMCE 6 in ProcessWire
Krlos replied to ryan's topic in News & Announcements
I was testing TinyMCE 6 with tailwindcss and everything works perfect, I tried the tailwindcss prose plugin by simply adding a wrapping div <div class="prose"> and boom... all the text was styled perfectly. Better yet, the classes are not removed, as many times I had to battle with ckeditor not to remove the classes from the source code. Thank you for all the hard work @ryan