Jump to content

diogo

Moderators
  • Posts

    4,320
  • Joined

  • Last visited

  • Days Won

    80

Everything posted by diogo

  1. Great read Kongondo! Soma already pointed out the only problem I noticed.
  2. This looks great Kongondo!! Although I don't know anything about MODX, I will read it tomorrow in the morning in my Kobo reader If someone else feels like, here is the ePub file that I created (Apparently I can't upload .epub files to the forum, so I'm sharing in Google Drive) https://docs.google.com/file/d/0B6RyV62pA8iwTm1BTnNOYmRYRDA/edit?usp=sharing
  3. Hi, and welcome Judging by this sentence, I would say you are in the right place. Still, I would advise you to read Ryan's answer to this post to make a decision about building something like this with PW http://processwire.com/talk/topic/3549-can-i-build-my-project-using-processwire-events-ecommerce-trip-sharing-community/ About your concerns: Yes, the system can handle thousands of users/related pages/numbers of posts etc and it can be scaled up without problems. Scalability is one of the strong points of ProcessWire.
  4. I'm in Germany this week, and noticed that grooveshark unlocker was discontinued. Here is a great alternative http://proxmate.dave.cx/
  5. Study the cheatsheet, especially the $pages and Selectors parts http://cheatsheet.processwire.com/
  6. Of course you can... $pages->get(page_ID)->name_of_field
  7. Well said, because soon you won't like it a lot anymore. You will love it
  8. I'm sorry to tell you this, but I don't think you have any option here. PW requires the .htaccess or an equivalent alternative (some people are running PW on nginx) for securing some directories and for rewriting the urls. I guess you could secure the directories one by one in the control panel, but I don't see any alternative for the urls rewriting... I don't know that much about this, maybe you should wait for another answer.
  9. 3. You can also adapt this method http://processwire.com/talk/topic/3551-small-tip-for-pages-that-will-be-used-with-render/ $path = str_replace ($config->urls->root,'/' , $_SERVER["REQUEST_URI"]); // so it works also when pw is in a subfolder $caller = $pages->get($path)->title; just to give more options
  10. hey, now my first answer doesn't make any sense
  11. And you activated them on the template also?
  12. This module is available on the modules section now http://modules.processwire.com/modules/process-admin-custom-pages/ mods.pw/4Y
  13. Uniformserver was also my favorite for windows
  14. Maybe you could use the .htaccess to redirect /store_item_detail.cfm to /store-item-detail, or any other page you want. Don't ask me, I don't know how to do it
  15. You must be right Wanze, add() doesn't accept a key, only the item, so when you pass a number it assumes the ID, while remove() assumes that it's the key.
  16. Yep, remove() also does't work with me. add() works, pop() works, shift() works and push() also works, why doesn't remove()?
  17. That explains why it worked for me
  18. With me it works on 2.3... How doesn't it allow? You are getting this message? Error found - please check that it is a valid URL
  19. The name is "Elementary OS", "Journal" is their blog
  20. Did you try using the other array methods? $demo->setOutputFormatting(false); $demo->product_group->remove(1024); $demo->save(); or: $demo->setOutputFormatting(false); $demo->product_group->removeAll(); $demo->product_group->add(1040); $demo->save();
  21. I prefer the 4th, but I understand that you have some things that force you to be with Windows. I think running an OS on a virtual box for production is not ideal, depending on your Windows needs, you could also dual boot. Have you considered that? I have http://elementaryos.org/ on my PC and, although it's still in beta, it's super fast and stable (more than Ubuntu and Fedora for sure). Maybe you can try that one Edit: For me it's a great advantage to be running the same system as I have in the server. I installed Elementary some days ago, and Had a Lamp stack running in some minutes, and installed it ad tweaked exactly as I would do in a VPS server.
  22. Should we leave this one here today for public shame?
  23. You have to enable debug mode in the config file to see it.
  24. No Portugal?? I have to spend more time on the forums
  25. Shouldn't it be simply foreach ($input->post as $key => $value) ?
×
×
  • Create New...