Jump to content

hheyne

Members
  • Posts

    82
  • Joined

  • Last visited

About hheyne

  • Birthday 12/08/1971

Contact Methods

  • Website URL
    www.secondsol.com

Profile Information

  • Gender
    Male
  • Location
    Bad Zwischenahn, Germany

Recent Profile Visitors

5,596 profile views

hheyne's Achievements

Full Member

Full Member (4/6)

22

Reputation

3

Community Answers

  1. I have found the fix for this. It's easy. Just update ProcessWire to a newer version. https://github.com/processwire/processwire-issues/issues/1143
  2. Hello, am having a question regarding the suppression of errors on the Browser. We are using some API calls from within via AJAX called PHP files. If there's an error occuring the message is visible within the Dev-Tools of Firefox or Chrome. Is there a way to suppress these messages on a production server? It's showing the paths to the called scripts which could be an issue (at least for the auditing teams). The message comes in German but I will try to translate it as good as possible here: Many thanks in advance for any advises
  3. Hi, I'm wondering if there is an easy way to let it run on mobile devices e.g. iPhone. If I open it, the content in the lightbox won't scroll when I drag the conten within the iframe. The content behind is scrolling. Is it a but in my setup or is this normal behaviour?
  4. I think I found a little glitch in the module. I've installed the module within a subdir based pw instance. Then the module won't find the nessecary js and css files. The field shows on the page edit page only a blank value and not that it find's no data. I fixed it - for me - with the following change at line 64 in file site/modules/FieldtypeRockGrid/FieldtypeRockGrid.module.php: After that it seems to work for me. Many thanx for the great module!!!
  5. What happens if you exchange the png file with a jpeg file?
  6. Hi awebcreature, I'm actually developing 2 projects which are similar to this. In on project it's possible to manage time entries for projects an in the other project the people can manage keys, smartphones, cars, clients, entries for clients, documents which are nessecary for clients. So my advice is that you plan everything on a white sheet of paper and then you can code it with ease in ProcessWire. You can manage the structure of the project with the help of ProcessWire
  7. Hi pppws, you can do this by defining an extra field e.g. URL as textfield. The you can implement a hook which saves the URL of the page into this field. I've done this for one project. This code can be used within the hellword Module. It's very simple. It saves the URL into the field shortname and fullurl when the user saves the page. In my project the field is locked, but you can define it the way you want. I hope this helps. public function init() { // add a hook after the $pages->save, to issue a notice every time a page is saved $this->pages->addHookBefore('save', $this, 'example1'); } public function example1($event) { $page = $event->arguments[0]; if($page->template->name!="presse-post" && $page->template->name!="presse-postev" ) return; $page->shortname = wire( "sanitizer" )->pageName( $page->shortname, Sanitizer::translate ); $page->fullurl = wire( 'pages' )->get( "/presse/" )->httpUrl() . "r/" . $page->shortname; }
  8. As evan mentioned above, ProcessWire lacks support of shop modules. I built 3 Shops with ProcessWire within the last year. The first one with the help of Padloper, the other two (b2b-shops) without Padloper. Take the time to write down evertything about the structure of your producst and then you can start developing your own very flexible solution for your customer. By the way, it's very easy to do complex imports (XML or JSON) and exports of products or orders (PDF - pages2pdf, XML, JSON) for other systems. So there is no need to manage the orders within ProcessWire. The import can be startet manually or via cron by night. But you can do this also... maybe not so shiny as in magento or shopware. In one solution the customer can put everything with an import into the shop and the orders run back via email into the system. The customer nearly never uses the backend.
  9. Hi, I have a problem with the automatic cropping of pictures which are in other orientations. The automatic correction of pw works like a charm and the manual cropping works also fine. But the automatic cropping gives me the other orientation in which the picture was uploaded. Is there any fix for this?
  10. Hello everyone, I have a site which was updated from pw 2.7 to 3.0.x upto 3.0.47. Now we have the problem (which was not initial there after last update) that it's not possible to save most of the pages in backend. If I push the save-button it leads to a white page. I can't see anything within the log-files. Debug mode is on. I have uninstalled most of the modules. Only the basic modules are activ. Is there a way to get more informations why pushing the save-button leads to a white page. Btw if I try to copy a page I get an Popup which says undefined. The same happens when I try to move a page to the trash. A hook was the problem. I used a exit instead of a return.
  11. Hello everyone, I made it. Thank you very much for the detailed informations above. Actually I have a new project with 5.000 or more datasets. I tried the three solutions. Native DT, Ajax DT ans SSPDT. Has anyone some tricks to speed up the generation of the data in SSP. It tooks around 4 Seconds to generate the data (10.000 records). I think it should be faster on the real server which will have 128GB of RAM with SSD. The testserver has only 4GB RAM and SSD on a virtual host.
  12. Hi Horst, thank you for the hint. Yes with repeater_slider_repeater it works like a charm.
  13. Hi horst, thank you very much for explaining this. I tried it but it's the same thing. My repeater-field ist named slider_repeater and the corresponding template is also named slider_repeater. Under it there are subpages which are named home like the pagename of the page which contains the slider field. My line is slider,1280,573,slider_repeater,home_final Only if I write it without any of the to template-names the button will be shown on the page home. It doesn't matter if I use only one of the. Only none of them works ;-) In this project it's not critical. But I think this could be something people are desire for. Best Regards
  14. Hi horst, thank you for your work on this modul. Is there a problem when I use it within a repeater? When I define an image-field like this: slider,1280,480,home_final the slider-croping-button don't appear on the page. If I define it without the template it works.
×
×
  • Create New...