-
Posts
440 -
Joined
-
Last visited
-
Days Won
2
Posts posted by zoeck
-
-
I assume that almost everyone who develops a new website in Processwire works with the Blank profile 🙂
The other existing profiles are more suitable for familiarizing yourself with the system 🙂
-
2
-
-
38 minutes ago, adrian said:
but this invoice has expired so I can't pay.
Have a look here: https://processwire.com/blog/posts/pw-3.0.80/#pro-module-renewals
QuoteI want to renew, but the renewal invoice expired
Just like the renewal invoices are automatically generated, they also automatically expire after awhile. However, this doesn't mean that you can no longer renew, just that the system automatically expired it after a period of time. If you find this to be the case, just send a PM to "ryan" in the forums, or fill out the Contact form and let me know what product you want to renew. I can refresh the expired renewal invoice so that it'll start anew from today. It's simple to do, and we do it all the time.My support/renewal expired two years ago, can I still renew, or do I have to purchase a new copy?
You can still renew, it doesn't matter how much time has passed. Just contact Ryan (see previous paragraph) and we can refresh it here very easily. Your renewal starts from the date you renew, regardless of how much time has passed.You just have to contact ryan 😉
-
1
-
-
On 9/26/2025 at 11:07 PM, adrian said:
How do you renew a module for those reduced prices?
For me it is always 39$ for the renewal.
Just go to this Page: https://processwire.com/talk/clients/purchases/
There should then be a “Renew now” button next to the text “Renew from $39” (only if a renewal is pending)
-
Since it is open source software, you can help to improve Processwire Commerce and provide demos.
Unfortunately, your description of the error just sounds like complaining. You could at least have included the error message that appears...
-
1
-
-
The text animation on the start page doesn't work very well in MS Edge (on Windows 11 24H2).
The edges of the font are not smoothed and the animation also looks better in Firefox.
-
4
-
-
27 minutes ago, HMCB said:
Can we replace the PW logo with our client’s and keep this throughout updates to PW?
It’s already possible in the UIkit Admin Theme
Just Go to Modules -> Core
Category Admin
UIKit -> Settings -> Masthead + Navigation -> Logo File-
5
-
1
-
-
Can you try it if you don't specify the file extension in the download tag?
-
The slider does not change the image size.
The slider is only used to scale the size of the preview in the admin area.if you click on the picture, you can select the edit function. Then you can resize the Image (and save the resized image)
-
1
-
-
5 hours ago, Alpina said:
Nice, but where is the link?
You know that Padloper is not free? You have to buy a license for it, then there are the downloads 😉
-
3
-
-
Have you changed the variable “$config->httpHosts” in your config.php so that it contains your local url?
-
1
-
-
And in the log files from the web server? Are there any entries there?
-
Have a look at the log file of your web server to see if an error message appears.
There are also log files from Processwire in this directory: \site\assets\logs
It may be a problem with the PHP setting max_input_vars (that the maximum number has been exceeded)
-
I don't think there is a coupon code for the ProFields, at least I'm not aware of one.
But with your purchase you are supporting Ryan, the developer of Processwire.
-
5
-
-
It looks as if you are still using the old function in the _main.php file (line 6).
At least that's what it says in the error message
site/templates/_main.php (6): RockFrontend->styles()
-
1
-
-
You should add some more information.
Which PW version is used?
Which language pack are you trying to install? -
You mean something like this?
-
There is also the Croppable Image module
-
2
-
-
Do you have the domains in the config in an array or as a string?
That's how it should look:
$config->httpHosts = array('domain.one', 'domain.two', 'domain.three');-
1
-
-
When I look into the code of the module, there is no way to set “sender_reply” via a function, except via the module config.
But there are some Workarounds:
Or the easier version via the mail header:
$mail->header("Reply-To", "your@replyto.address");-
1
-
1
-
-
It should not be a problem to import the comments via the Processwire API. There is also a thread on how to do this here:
-
1
-
-
Looks like the same problem 🙂
Add this to the config.php file:
$config->sessionFingerprint = 12;
-
You can find the 2.7 Versions here: https://github.com/ryancramerdesign/ProcessWire/tags
But it looks more like you are using a less compiler (lessphp) somewhere in the templates, and it is trying to access the wrong path.
-
Have you adjusted your URL from the web server in config.php? Does the url in “$config->httpHosts” match?
-
8 hours ago, tires said:
Really, i don't understand what you mean right now.
In your hook posted above you use “indexPages()”, but the correct one would be “indexPage($page)” without the s at the end.
Your hook creates a completely new search index each time, not only for the changed page but for all pages.
You have to use something like this (not tested)
$wire->addHookAfter('Pages::saveReady', function($event) { $page = $event->arguments(0); $event->modules->get('SearchEngine')->indexPage($page); $event->wire('log')->save('Page saved', "Page ID: $page->id / Page Name: $page->name / Page Parents: $page->parents"); });
-
2
-
Ajax search optimization high CPU load
in Getting Started
Posted
You can have a Look a the findRaw function: https://processwire.com/api/ref/pages/find-raw/