-
Posts
4,296 -
Joined
-
Last visited
-
Days Won
79
Everything posted by diogo
-
- 30 replies
-
- 1
-
- Drupal
- get started
-
(and 1 more)
Tagged with:
-
// Add Antti as **the only** author for all the books written by Stephen King foreach($books as $b) { $b->author->removeAll() $b->author->add($ap); $b->save(); }
- 30 replies
-
- 4
-
- Drupal
- get started
-
(and 1 more)
Tagged with:
-
See also these posts by Soma https://processwire.com/talk/topic/352-creating-pages-via-api/ https://processwire.com/talk/topic/2089-create-simple-forms-using-api/
- 30 replies
-
- Drupal
- get started
-
(and 1 more)
Tagged with:
-
Oh... the bot was not well informed sorry bwakad!
-
http://ngo-hung.com/blog/2014/03/21/so-many-php-frameworks Hm, not the best that can be told about ProcessWire on this post. But being cute is nice, i guess...
-
This post https://processwire.com/talk/topic/3579-tutorial-approaches-to-categorising-site-content/ pretty much sums up how you can relate things in PW. Just change "categories" to any other word you want. It doesn't make sense to think in terms of tables when working in PW because PW gives a much more powerful way of organizing content, the tree. Think JSON and XML instead of tables.
- 30 replies
-
- 2
-
- Drupal
- get started
-
(and 1 more)
Tagged with:
-
You have to change everything to double quotes: $template = $pages->find("template=species"); $children = $pages->find("has_parent=$page"); $windows = $pages->find("id=$template|$children");
-
Not that much
-
That would go against my huge curiosity. I'm so hoping that something better than ST appears
-
is there some way to extract word document (.doc) file?
diogo replied to alec's topic in General Support
I suspect there must be an option to use tinyMCE on textareas in form builder, but I don't use it so can't help you there. Edit: sorry, not true https://processwire.com/talk/topic/1743-processwire-form-builder/?p=16361 -
is there some way to extract word document (.doc) file?
diogo replied to alec's topic in General Support
Output tinyMCE? what do you mean? The editor itself on the frontend (http://www.tinymce.com/wiki.php/Installation)? Or the content from the backend? -
is there some way to extract word document (.doc) file?
diogo replied to alec's topic in General Support
I think you would have to use something like this http://docspad.com/ -
Great! I don't know German but I will watch it anyway While the video is downloading I went through the slides and noticed that you have an unnecessary variable in one of them (33). The variable $today is not needed because you use simply "today" on the selector, which is fine, of course. Maybe you had $today on your code because you use it later, but for the presentation I'm guessing, without having watched the video, it wasn't necessary.
-
Thinking of migrating an existing ZEND WebApp into PW
diogo replied to jwaldeck's topic in Getting Started
Interesting idea for a site, I'm quite curious, I'll have to give it a try later For the PDFs, have a look at https://processwire.com/talk/topic/3008-module-pages2pdf/, not sure it can do what you want though -
See how the default profile is organized. Study it well, there are lots of answers there. I read somewhere that you started with the skyscrapers profile, and it must be turning your head around forget that one until you understood the default.
-
I contemplate it all the time. Seriously, I think PW is the only tool I don't contemplate leaving
-
Just received my Atom invitation (can't use it because there's only for mac for now) and have two left to offer. Anyone that wants one send me a PM with the email
-
Hide children of home from indexing (Single Page Site)
diogo replied to alexm's topic in General Support
Also that- 29 replies
-
- single page site
- one page site
-
(and 1 more)
Tagged with:
-
Hide children of home from indexing (Single Page Site)
diogo replied to alexm's topic in General Support
Soma, something is wrong there...- 29 replies
-
- single page site
- one page site
-
(and 1 more)
Tagged with:
-
I'm having great fun with this one http://www.nostarch.com/oojs
-
That's because this is written in Python, and not PHP Did you consider Disqus and alikes? http://explorerhub.com/blog/disqus-intensedebate-alternatives/ If you want self hosted and PHP there's this one https://github.com/jacobwb/hashover The introduction post he links to is quite old, but it seems that they are preparing something new here https://github.com/jacobwb/hashover-next
-
Hide children of home from indexing (Single Page Site)
diogo replied to alexm's topic in General Support
Should work as Reno is doing, but even before we could pass parameters to render() this would be possible by comparing the url with the page being rendered. In your case: if ($page->url == $_SERVER["REQUEST_URI"]) throw new Wire404Exception();- 29 replies
-
- 2
-
- single page site
- one page site
-
(and 1 more)
Tagged with: