Jump to content

Mike-it

Members
  • Posts

    66
  • Joined

  • Last visited

Everything posted by Mike-it

  1. @ryan: Reopening this old thread... Searching for a short word (three letters) via the search.php template (which uses the ~= operator) works as described in pw 3.0.148, but does not seem to work anymore in 3.0.165. Attached the images Pre and Post upgrade on a clean installation of the Minimal Site Profile from v 3.0.133 to v 3.0.165
  2. Solved! found this topic Thanks to @bernhard that did: Translate file /wire/modules/Inputfield/InputfieldDatetime/types/InputfieldDatetimeText.php Set path: /wire/modules/Jquery/JqueryUI/i18n/jquery.ui.datepicker-de.js
  3. With the new ProcessWire 3.0.165, also the Module has upgraded to Version 1.0.7 but now there are 2 abandoned translations, right for language file. Any idea on how to solve?
  4. @adrian works like a charm, thanks!
  5. I have an external php script (launched by cron) that uses ProcessWire (i.e. by including index.php, as explained here). I have the ProcessRedirectIds module installed, and when I run the script I get this warning: Notice: Undefined index: REQUEST_URI in /var/www/www.mysite.example/site/assets/cache/FileCompiler/site/modules/ProcessRedirectIds/ProcessRedirectIds.module on line 66 Obviously there is no REQUEST_URI in this case, but the module seems not aware of this possibility...
  6. Sorry guys I just bought the dev. license of Padloper 3.0, (confirmation email is attached) but the download link takes me to 404 page, also the link sent to the email confirmation doesn't work... I have not yet received a response from the seller antti ? . Does anybody is in direct contact with him and can warn him of the problem? Order Invoice # 3188 Date 2020-02-04 Thanks in advance
  7. Thank @adrian, just upgraded to ProcessWire 3.0.141 now back working, and everything seems to go faster...
  8. Hi after upgrading to ProcessWire 3.0.140 and trying to edit the field "mapmarker" from admin i got: Fatal Error: Uncaught Error: Call to a member function prepend() on null in /var/www/www.designupgrade-test.com/wire/core/Fields.php:1066 Stack trace: #0 /var/www/www.designupgrade-test.com/wire/modules/Process/ProcessField/ProcessField.module(1412): ProcessWire\Fields->getCompatibleFieldtypes(Object(ProcessWire\Field)) #1 /var/www/www.designupgrade-test.com/wire/core/Wire.php(380): ProcessWire\ProcessField->___buildEditFormBasics() #2 /var/www/www.designupgrade-test.com/wire/core/WireHooks.php(813): ProcessWire\Wire->_callMethod('___buildEditFor...', Array) #3 /var/www/www.designupgrade-test.com/wire/core/Wire.php(442): ProcessWire\WireHooks->runHooks(Object(ProcessWire\ProcessField), 'buildEditFormBa...', Array) #4 /var/www/www.designupgrade-test.com/wire/modules/Process/ProcessField/ProcessField.module(1020): ProcessWire\Wire->__call('buildEditFormBa...', Array) #5 /var/www/www.designupgrade-test.com/wire/core/Wire.php(380): ProcessWire\ProcessField->___buildEditForm() #6 /var/www/www.designupgrade-test.com/wire/core/WireHooks.php(813): ProcessWire\Wire->_ca (line 1066 of /var/www/www.designupgrade.com/wire/core/Fields.php) I also noticed that Compatibility is till 2.7 any chanche to upgrade to 3.0 ? Does anybody solved in some way that issue?
  9. Same for me, after Update to: 3.0.140 Does anybody encounter also analogue problem with mapmarker? I've just tryed to open the field and: Fatal Error: Uncaught Error: Call to a member function prepend() on null in /var/www/www____/wire/core/Fields.php:1066 Stack trace: #0 /var/www/mywww/wire/modules/Process/ProcessField/ProcessField.module(1412): ProcessWire\Fields->getCompatibleFieldtypes(Object(ProcessWire\Field)) #1 /var/www/mywww/wire/core/Wire.php(380): ProcessWire\ProcessField->___buildEditFormBasics() #2 /var/www/mywww/wire/core/WireHooks.php(813): ProcessWire\Wire->_callMethod('___buildEditFor...', Array) #3 /var/www/mywwwit/wire/core/Wire.php(442): ProcessWire\WireHooks->runHooks(Object(ProcessWire\ProcessField), 'buildEditFormBa...', Array) #4 /var/www/mywww/wire/modules/Process/ProcessField/ProcessField.module(1020): ProcessWire\Wire->__call('buildEditFormBa...', Array) #5 /var/www/mywww/wire/core/Wire.php(380): ProcessWire\ProcessField->___buildEditForm() #6 /var/www/mywww/wire/core/WireHooks.php(813): ProcessWire\Wire->_callMethod('___buildEditFor...', Array) #7 /var/www/mywww/ (line 1066 of /var/www/www.440-hz.it/wire/core/Fields.php)
  10. As simple as helpful, very appreciated! Thanks! For full compatibility of the module I would add in the settings "you admin path" because the default "processwire" may not always be used. And (as in my case) this leads to a page not found. Or alternatively in the readme file make it known.
  11. Assumption: Code for Dummies ... Hi, i'm trying to cutomize my menu to add a personal "title" to the link somthing like <a title='$child->mytitle' I've already added a field ("mytitle", type text) in my templates. This is not the right way to do that? Am i so away from the solution? // top navigation consists of homepage and its visible children $homepage = $pages->get('/'); $children = $homepage->children(); // make 'home' the first item in the navigation $children->prepend($homepage); // render an <li> for each top navigation item foreach($children as $child) { if($child->id == $page->rootParent->id) { // this $child page is currently being viewed (or one of it's children/descendents) // so we highlight it as the current page in the navigation echo "<li class='nav-item active' aria-current='true'><a title='$child->mytitle' class='nav-link' href='$child->url'>$child->title</a></li>"; } else { echo "<li class='nav-item'><a title='$child->mytitle' class='nav-link' href='$child->url'>$child->title</a></li>"; } } Any help appreciated, thanks in advance...
×
×
  • Create New...