-
Posts
7,529 -
Joined
-
Last visited
-
Days Won
160
Everything posted by kongondo
-
Prevent saving a page if it was changed in the meantime
kongondo replied to MoritzLost's topic in General Support
Timestamps can a be a tricky source of truth in some cases. What if the editor and the script started at the same time? Speaking of which, which process is your single source of truth? The editor or the script? I mean, when there is a conflict, whose changes do you want to accept? I was thinking of something along the lines of what @horst suggested, i.e. separate fields for the script vs the editors. It's hard to get away from a manual intervention if there are conflicts. Given the situation you've described, I'd be very surprised if you manage to avoid manual oversight in case of conflicts. -
Module Module: RuntimeMarkup Fieldtype & Inputfield
kongondo replied to kongondo's topic in Modules/Plugins
Because I tend to be a silly billy often times ?. It's happening because RM is not letting its parent class know that it is handling the processing of its WireInputData Yes, it is. I'll make the changes in the repo eventually, but meanwhile....please open up InputfieldRuntimeMarkup.module for editing. Scroll down to the end of the file. Find the method ___processInput() and un-comment it. The method's body is intentionally blank, so no changes needed there. Save :-). That should do it. -
Won't you hit the limit pretty soon? https://help.unsplash.com/en/articles/3887917-when-should-i-apply-for-a-higher-rate-limit
- 15 replies
-
- media
- stock photo
-
(and 2 more)
Tagged with:
-
A ProcessWire find will perform an SQL query. The important thing (in terms of performance and tools like RockFinder) is what happens next. SQL queries are normally very fast. However, if you then load the results into Page objects, you might get a performance hit depending on the number of results you fetched. RockFinder does not load Page objects, hence remains very fast and performant. It is very much suited to handling large datasets.
-
Yes. They actually are HTML files (ProCache will do the conversion; not you). Welcome to the forums and ProcessWire @Wysardry
-
Loving the name ? A README?
- 15 replies
-
- 2
-
-
- media
- stock photo
-
(and 2 more)
Tagged with:
-
German language pack (de_DE) with formal salutation
kongondo replied to dotnetic's topic in ProcessWire Language Packs
You seem to be ahead of Ryan ? .159? Isn't that latest dev? ? -
You mean a tabular view like this? https://mediamanager.kongondo.com/documentation/the-media-manager-admin/filtering-media-and-changing-display/ If that's not it, maybe I could add a setting to show smaller thumbs or even not at all. I'll that on my todo/to_think_about.
-
Great! Was it a 'media-manager-installed-in-a-subfolder-issue'? I'd like to find out if the issue occurs in other setups as well. Thanks.
-
i install localhost processwire but i dont know nwxt step
kongondo replied to dr Dogma's topic in Getting Started
If you can access the frontend, just do this in one of your template files then check out the output in the frontend: echo $pages->get(2)->name; That should give you the name of your admin. Delete then code when you are done. -
Did you install Media Manager in a subfolder? If yes, sorry, it's a bug that occurs if you've installed Media Manager in a subfolder. It got fixed a while back but I haven't committed yet. For now, please do this: Change this line in ProcessMediaManager.module around line #154: "template=media-manager-settings, parent={$path},include=hidden" to this: "template=media-manager-settings,include=hidden" If that's not it, then please supply more details about your setup. Thanks.
-
Multiple new pages via API fails - Timeout/500 error?
kongondo replied to Erik Richter's topic in API & Templates
Actually you don't ? . You will just get pages with 'untitled-some-hash' as names and without titles. But glad it's working ? -
Glad you got it sorted ? ! Regarding SSL, have you tried the free Let's Encrypt?
-
Filter folder structure, download, file-import in PW
kongondo replied to hellerdruck's topic in General Support
Please let me know how it goes. Post questions related to MM in its support forum here:- 10 replies
-
- filesmanager
- files
-
(and 4 more)
Tagged with:
-
It is fine to ask here. If it it is not directly related to ProcessWire, you can post in the dev forum. https://processwire.com/talk/forum/25-dev-talk/ I noted that you posted two different links. To get accurate help and as quickly as possible, it is best to post as much descriptive information as possible. These include: What ProcessWire version are you using? Did you change something in the code just before the banner stopped working? Etc Please repost the link to your site.
-
Multiple new pages via API fails - Timeout/500 error?
kongondo replied to Erik Richter's topic in API & Templates
What version of ProcessWire are you on? I suggest you install the module TracyDebugger to try and catch any errors. Is this site online? If not, also set $config->debug = true. What is $period? Just wondering whether there is something causing an endless loop. I see also that you are not setting a title (and there no name as well) in your code. Is that intentional? I don't know if that could be the issue. This bug/issue has been reported before and I have personally experienced it as well. I have never found a solution. I have never been able to reproduce it. It just comes and goes. -
Filter folder structure, download, file-import in PW
kongondo replied to hellerdruck's topic in General Support
There isn't, I am afraid. Now that I think about it, maybe I should set up an online demo. Otherwise, you can purchase a copy (fully refundable within 7-days' of purchase date) to test.- 10 replies
-
- filesmanager
- files
-
(and 4 more)
Tagged with:
-
@crusin316 Whilst that site might be running ProcessWire, you still haven't show how you question is related to ProcessWire. ProcessWire does not output markup and it certainly does not output banners. You will need to be more clearly than that. I have removed the second link as well until you can clarify how your question is a ProcessWire issue.
-
@crusin316, Removed your link. Either you are in the wrong forum or your intention is to spam. Otherwise, please confirm that your question is related to ProcessWire, in which case, welcome aboard ? .
-
Multiple new pages via API fails - Timeout/500 error?
kongondo replied to Erik Richter's topic in API & Templates
Server's probably running out of memory. Maybe you are adding and manipulating images? Maybe show us the code? Otherwise, you can create in batches or using CLI. $pages->uncacheAll() in the loop also helps. Btw, if you have a single parent, better to fetch it outside the loop (although ProcessWire would probably save it in cache so as not to call it again and again). -
Excellent! Glad you got it sorted. Happy coding ?
-
i install localhost processwire but i dont know nwxt step
kongondo replied to dr Dogma's topic in Getting Started
yoursite/processwire In your case then, localhost/processwire/processwire (unless you changed admin name during installation) -
Cool! Let us know how it goes ? .
-
Are you using the forum search? It has improved over the years but it still can't rival Google. There are a number of Google CSE implementations. See the one in my signature for instance (best forum search).
-
Is this the profile you want? https://github.com/dadish/pw-skyscrapers-profile Please see the instructions there.