-
Posts
1,835 -
Joined
-
Last visited
-
Days Won
21
Everything posted by Nico Knoll
-
But there is a ... ...
-
Could you post the whole error? Because ProcessModule is a core file and probably the error is somewhere else in the error description.
-
@horst: I added a pull request. I replaced "empty" by "!count" - could you try this manually and tell me if it's working now?
-
I always do it like Soma described.
-
I think it's going to be too expensive for me - but before or after wards or in the launch time we could met nevertheless.
-
@Soma: I sent you a PW
-
I uploaded the module's new version. I think I fixed all open bugs. Could you please try it and tell me if there is anything further todo with it? https://github.com/NicoKnoll/ProcessPreview
-
Well vhost is not the problem - I got it working with XAMPP already. The question is if it works with VM to
-
Hey, since I started developing for the web I used XAMPP. It's a program which comes with PHP, MySQL and a full Apache installation. It works great. But somehow I don't want to merge this with my regular PC. Some time ago I read something about Virtual Machines. It sounds like it is possible to create a Linux Server in it and work with it like with a "real" server. Sounds clean and therefore great to me. But I have no idea how to create it. And is it still possible to use these fake "hosts"-file URLs like "processwire.dev", etc. with it? How does your setup looks like? And is it possible to reset a VM to a certain point? -- Nico
-
Helper class for ConfigurableModule
Nico Knoll replied to owzim's topic in Module/Plugin Development
Nicely done -
I'm finally continuing this module - thanks to Ole who's sponsoring it. Please post all open bugs here or directly at GitHub so I get an overview on what to do (you don't need to repost them if they are already posted here of course). Thanks, nico
-
Simple shop: www.oliver-mark.com/shop/
-
My solution would be: 1. create a new field called "use_wysiwyg" and choose "checkbox" as type 2. create a field "body_raw" or whatever you want to call the body field without wysiwyg 3. Add both fields to your template and save it Now let the processwire magic play: 4. Now click on "body" And go to Visibility -> Show this field only if... and add the following: 5. Do the same thing with "body_raw". Only difference: "use_wysiwyg=0" Now the wysiwyg editor should only appear if the checkbox is checked. In your template do this to get the content: $page->get('body|body_raw');
-
Adding RSS channel to processwire powered site
Nico Knoll replied to qlex's topic in General Support
@qlex: You would need FTP. -
Adding RSS channel to processwire powered site
Nico Knoll replied to qlex's topic in General Support
I'm using RSS on my site like this: 1. Create a template "feed" or "rss" 2. Create a hidden page ("/feed/" or "/rss/" or whatever you want your url to be) 3. Uploading and customize the following file into template directory and update the field names feed.php -
German (de-DE) not maintained
Nico Knoll replied to Nico Knoll's topic in ProcessWire Language Packs
Maybe you could add a "check for new translations" button to the language settings. This button would glob() recursively through the modules folder and collect all of the language files. These files should follow a conviction like "ProcessProgress.de.lang.json" or have some kind of install information in it to let the crawler recognize to which language the files belong. -
Diogo and I met once in Berlin
-
I think I know it too
-
German (de-DE) not maintained
Nico Knoll replied to Nico Knoll's topic in ProcessWire Language Packs
Sounds fine to me - but I'm not sure if it's better if ryan creates these repos as "official Processwire Repos" or like - how we do it now - someone from the community opens it... -
Well i think it depends on the location. Like do we have a room? Or in a pub? Or ... I don't know stuff like this
-
What kind of format?
-
I added caching to DiagnoseModules. (see Pull-Request)
-
500 Internal Server Error Cpanel/Processwire
Nico Knoll replied to mosravo's topic in Getting Started
Internal Server Errors are in 99% of the cases related to .htaccess. The thing is that some servers don't support some .htaccess commands. My approach would be to go through the .htaccess file and comment lines out (putting a # in front of the line). Then reload your page. If it won'T work - go to the next line and put a # in front of it. Until you don't get this error anymore. Then remove the placed # again because now you should now which line caused the error and put the # only in front of this line. -- Otherwise maybe the search function takes you further (because this is a really common question): https://www.google.de/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=site%3Aprocesswire.com%20error%20500&safe=off -
Couldn't you just add something like ?link=abc to the link url? (You still could use $session->redirect afterwards to hide it) Like: <a href="/a-page/?link=abc"> and on /a-page/: $session->set('redirect', $input->get->link); $session->redirect($page->url);
-
Hey Pete, could may add a map with all of the users based on their given location on it? (I think we had this topic already once but I'm not sure ) http://community.invisionpower.com/files/file/3070-member-map/ -- Nico
- 1 reply
-
- 3