Jump to content

bernhard

Members
  • Posts

    6,670
  • Joined

  • Last visited

  • Days Won

    366

Everything posted by bernhard

  1. may i ask for a screencast or at least screenshots? i think it's the best way to show what a module does http://www.screencast-o-matic.com/ is free for up to 15min videos and you do not even have to install anything
  2. the only one that also works on historical data and my recommendation: https://processwire.com/talk/topic/9739-google-analytics-referral-spam/?p=94480
  3. me too glad it helped!
  4. hi hansv, welcome to processwire visit your site unter /admin/page go to setup > templates click on filters > show system templates > yes go to family > allowed templates for parents > unselect "admin" now you can select template "admin" for the page /admin then go to /admin > edit process: ProcessHome and then set family for admin template back to "admin" that you can't select it again hope that helps
  5. hi lokendra, sorry that we misunderstood you. to your questions: 1) http://lmgtfy.com/?q=site%3Aprocesswire.com+login 3) http://lmgtfy.com/?q=site%3Aprocesswire.com+excel+import+export 4) maybe ask directly in the corresponding thread? https://processwire.com/talk/topic/4147-excel-like-crud-in-pw-using-handsontable/ listerpro would also be a possibility for editing things on the fly: https://processwire.com/blog/posts/inline-ajax-page-editing-comes-to-listerpro-processwire-2.6.6/ i'm sorry i have no better answeres for you. maybe others have - but your questions are a bit like "hey, how can i build a car?" is it possible with processwire? YES but as i said... there will probably not be a click-click-and-ready solution
  6. hi lokendra, welcome to the forum! [offtopic] two totally free things: 1) coding your own solution 2) asking politely (maybe ? instead of !! ) [/offtopic] besides that: thanks for bringing my attention to handsontable https://processwire.com/talk/topic/4147-excel-like-crud-in-pw-using-handsontable/ regarding your other questions: it totally depends on your skills. PW is in general not the click-click-and-ready thing. login-systems have been discussed several times, please search the forum https://processwire.com/talk/topic/6196-easy-search-on-pw-forums-with-google/ and go more into detail with your questions - i'm sure there are lots of skilled people here that are willing to help you. and listerpro was definitely a good recommendation. it's 40$ and imho totally worth the price (there are also discussions about pricing of the pro modules) good luck with your project
  7. looks amazing! any news on this over a year later? listerpro now has axaj inline editing https://processwire.com/blog/posts/inline-ajax-page-editing-comes-to-listerpro-processwire-2.6.6/ so that's really cool but the excel-like UI could be really comfortable for clients as they are used to it. thanks for creating and sharing the video
  8. now what i found by coincidence makes sense, thank you https://processwire.com/talk/topic/10114-fieldgroups-inheriting-fields/
  9. for reference: https://processwire.com/talk/topic/10470-virtual-template/
  10. bernhard

    Forum Software

    hey joshuag, i would also be interested what kept you away from the new phpbb 3.1? I'm also looking for a forum software and i was not quite happy with my first tries with vanilla. i had a phpbb forum years ago and it still looks almost the same... that can be good (as it looks familiar), but can also be bad (is phpbb dead? google trend does not look nice... https://www.google.com/trends/explore#q=phpbb&cmpt=q&tz=Etc%2FGMT-2 ) would you mind sharing a link to your vanilla forum (maybe pn)? thank you
  11. no you could easily adjust the lightbox to reload the page on close. i didn't try to close it automatically if there are no errors - i'm not a js guru
  12. oh, i thought you know it because it was also a topic here: https://processwire.com/talk/topic/10006-maletschek-nautics-boat-center-at-neusiedlersee-in-austria/ just wanted to know the differences. thanks for sharing
  13. hi tpr, what's the difference to fredi? i know you know fredi and i'm sure there's a reason you did something on your own
  14. what is the advantage over using the built-in cache or procache?
  15. please let me know when you achieved that
  16. i meant processwire weekly news - there was a link to this topic great! thanks again for loader
  17. hi sergio, seems you read the blog thank you for your suggestions. had a look at blitz.io - looks nice but 30$/month is quite expensive. maybe i'll try the free plan when my site is online. thank you
  18. it's using http://leafletjs.com/ and https://github.com/Leaflet/Leaflet.markercluster
  19. do you know the dev directory map? http://directory.processwire.com/map/
  20. your url for the site dota2.dayswithoutincident.net in your sitemap links to http://dayswithoutincident.net/dota2.dayswithoutincident.net and then redirects to dota2.dayswithoutincident.net not sure if thats by intention?
  21. there is no "maxlevel" in processwire - that's just the name that i gave the variable. $page->parents returns a pagearray of all parents of the current page. ->count() counts the number, so you get the level of your current page. you can then add 2 and have your "maxlevel" compared to the given item's level $item->parents->count() good luck
  22. you could limit the child-levels like that: $items = your_selector_including_all_levels; $maxlevel = $page->parents->count() + 2; foreach($items as $item) { if($item->parents->count() <= $maxlevel) { // echo your markup } } that may be not the cleanest solution as you select more data than necessary and remove the unwanted items afterwards, but if performance is not an issue i think that would be an easy solution? ps: didn't check the code! just wanted to show the idea...
  23. just awesome! thanks for this idea
  24. thank you pierre-luc, apache jmeter looks good i've only played around with apachebench so far. i hope i can try jmeter soon. thank you! any other suggestions?
  25. hi guys, i'm working on a project where the goal is to have 1.7 million page impressions per month. that would be 57.000 PI per day 11.333 PI per hour (calculating with 5 hours per day) 189 PI per minute 3 PI per second of course it will heavily depend on the websites setup. i'm planning to use procache and try to optimize everything as good as possible. i would like to get a rough idea of what i would need on server side. is this possible? any server experts here? thank you in advance
×
×
  • Create New...