Problems after hosting company upgraded to Debian 10
By
caffeineben, in General Support
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By luischacon
Hello how are you, I need help on how I can solve this, update a module and now I don't know what to do
-
By quickjeff
Hi Guys,
I have been debugging a site for the last 2 hours and cannot solve the issue.
I have a site running on 3.0.148.
I installed the Kongondo Blog module and was updating the templates to include the website style.
Once everything was set and done, I checked the page tree to see an error appear.
Template must be assigned a name before 'filename' can be accessed
The same error appears in templates.
Debugging Steps
I checked the templates in the server to ensure I didnt accidentally delete the namespace. Deleted cache in browser and server under assets Still no go.
Any help is appreciated.
Thanks!
-
By gswoodman
Hello all,
I have recently installed ProcessWire as I am learning to develop my own personal website.
The installation process was completed, pressed 'Login to Admin' and I am receiving a 404 error.
I am using a GoDaddy Shared Hosting Package with Plesk installed.
Does anyone have any experience with using ProcessWire on a shared hoasting package?
Many Thanks.
-
By alexcapes
Hi,
I have a small module I created that copies across field content from one page to multiple other pages.
I just added a repeater field and while it copies across to the other pages it has caused timeout/memory issues with PHP. I think this is because of the multiple fields within the repeater (title, text caption, image) each being copied multiple times.
I thought one way to help would be to not copy images across as they're not needed in the other pages.
However I'm unable to figure out how to copy a repeater field excluding one field within the repeater itself.
This is my current code:
// Inline gallery 1 if(count($page->article_inline_gallery_1)) { $translation->of(false); $translation->article_inline_gallery_1->removeAll(); $gallery = $page->article_inline_gallery_1; foreach($gallery as $item) { $translation->article_inline_gallery_1->import($item); $translation->save("article_inline_gallery_1"); } } At the point that each repeater imported as a whole ->import($item) could anyone help to exclude one of the fields within the repeater?
-