-
Posts
436 -
Joined
-
Last visited
-
Days Won
2
Everything posted by zoeck
-
Not a single Demo page is working
zoeck replied to cpx3's topic in ProcessWire Commerce (Padloper) Support
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... -
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.
-
It’s already possible in the UIkit Admin Theme Just Go to Modules -> Core Category Admin UIKit -> Settings -> Masthead + Navigation -> Logo File
-
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 reply
-
- 1
-
-
You know that Padloper is not free? You have to buy a license for it, then there are the downloads 😉
-
Have you changed the variable “$config->httpHosts” in your config.php so that it contains your local url?
-
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.
-
Error: Exception: Method RockFrontend::styles does not exist...
zoeck replied to neophron's topic in RockPageBuilder
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() -
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
-
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');
-
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");
-
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:
-
Login Fails: Admin dashboard (No Errors) on HTTPS Site
zoeck replied to W2me92's topic in General Support
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?
-
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"); });
-
Have you checked if your server supports mod_rewrite? You can check this with phpinfo(), then simply search for rewrite.
-
How to transfer a Processwire site from one server to another
zoeck replied to modifiedcontent's topic in General Support
Sure 🙂 You can have a Look at this thread:- 1 reply
-
- 1
-
-
Check the console of the browser dev tools, you should see an error in the console in the Dev Tools.
-
You can also do this with the Pro modules. They are just PHP scripts like other modules. And you get access to the internal support forums of the corresponding pro modules. Of course you can also just buy the modules and not use them to support Ryan 😉