Jump to content

Hari KT

Members
  • Posts

    131
  • Joined

  • Last visited

Everything posted by Hari KT

  1. RT @planetphp: Interview with Eli White - Cal Evans http://t.co/bkCdL5f0ir

  2. RT @auraphp: Aura.Cli 2.0.0-beta1 Released http://t.co/Sjz3tXKlNZ

  3. RT @zombywuf: @mhoye @dstufft Experience tells me that that will be the person assigning the job.

  4. RT @rdlowrey: @couac @harikt ProTip: No PHP web SAPI application passes test because you can't respond to Expect:100-continue without the f…

  5. RT @skoop: The amount of times I’ve referred to “Framework as an Implementation Detail” since #symfony_live is amazing: http://t.co/VfEY9b5…

  6. Implementing The Domain Model http://t.co/sNdlKWWCqR . Not sure whether it got the popularity it deserved. Really a good read.

  7. RT @tedivm: @Stof70 Nice! I'm still working to get Stash running on it, but it's getting close (and I'm having more issues with phpunit tha…

  8. Hi Guys, I don't know whether this topic is already discussed or not. I was wondering whether PW already have thought of having an inline editing tool. What am I talking can be seen from demo http://demo.createphp.org/ http://createjs.org/ https://github.com/flack/createphp
  9. Piwik is awesome to track. I have installed piwik 1.0 and did something before for a project. For the current project I am also trying 2.0, which is far better. I can see various use cases with it. One of the good thing is you can call the piwik api, get the image or json and plot or change accordingly on our system. Update : If you don't have a server to manage or install piwik then will be good to go with google analytics. And in 2.0 installation, I didn't have any trouble also.
  10. RT @RedditPHP: Announcing new sub: /r/AuraPHP - dedicated to the Aura Project for PHP. This is the cleanest, most fully-... http://t.co/O8H…

  11. RT @planetphp: PHP 5.5.8 has been released - PHP: Hypertext Preprocessor http://t.co/E2whbVRijy

  12. I recently came accross http://www.rubyrep.org/ . Seems an interesting one. Development of an open-source solution for asynchronous, master-master replication of relational databases that is ridiculously easy to use database independent Currently supports PostgreSQL and MySQL.
  13. Thank you for the fast response. You guys rocks!
  14. Thanks @Soma, that was what I ended up and then the first question comes, "I have removed the global title, but it needs the url always entered.". Seems like I want to set a datetime string format for the url. Thank you for all the support every one have showed. Marking as solved.
  15. That works for order, but I need the date time for saved on a particular day. Saved yesterday , saved today.
  16. Hi Soma, Martjin, Let me make the question more clear with the examples you mentioned. We have Categories->Products ( x1, x2, x3, x4, x5, x6 ) Let us assume the user saves products in the order x4, x1 . Now in the user template we have a field with user_product which is multi page array whose template is product. So when the user save the first one we need to track the time when the product is added. $user->user_product->add($product1); // May be id or page object // Now we need to know when the product1 is added That means we need an extra field for the user to know at what time the product is saved, else we will not be able to keep track of the order in which the user has saved.
  17. ok. So I will move with adding Page field in user template. Sorry I missed to write one more problem, I need to sort it based on the priority ? and also store the date and time of the product when saved. Thank you cstevensjr, Martijn Geerts
  18. If anyone looking for migration tool, do check http://t.co/Zs1wuGTlQc . You can also use it when dealing with @auraphp. Any othr suggestion?

  19. RT @mwop: Posted a new @Apigility "getting started" screencast, demonstrating the full featureset we expose! http://t.co/H94tzwe0uy #api #r

  20. @Martijn Geerts Thank you. What I was wondering is whether that will give you a pain when upgrading to new ProcessWire, when you are editing root templates.
  21. RT @dhrrgn: @harikt Haha, a whopping 7 character. Thanks though. @auraphp @pmjones

  22. RT @dr4goonis: Writing a #ppi_framework module gets launched from a #phergie plugin, and talks to #trello to pull info to the new IRC serve…

  23. Hi Guys, I am looking for the best way what you feel when doing this. Basically the idea is to save the history of a user. Consider we have a bunch of products, and categories. And the user needs a way to save a product and check it for later use. Consider the same as you follow a topic in the PW forum. I was thinking to add a page which have 2 fields 1 ) user_id which is of type Page which is linked to the user template of PW 2 ) product_id which is also a Page which I have built from another template I have removed the global title, but it needs the url always entered. $page = new Page(); $page->template = 'product-history-user'; $page->parent_id = 'parent-id'; $page->name = 'something'; $page->history_user_id = $user->id; $page->user_history_product_id = 'id-of-product'; $page->save(); I also have some more stuffs that needs similar logic. Interested to hear your thoughts to make this better. Update : One more problem I missed to write is, I need to sort it based on the priority, that is why I opted the way. or is there a way we can store the date and time of the product when saved? Thanks
  24. Frameworks Are Good, Components Are Awesome! http://t.co/uWP4bHULy8

  25. Someone have a question on reddit how many lines of code #silex and @auraphp router have http://t.co/AYRvZBJois

×
×
  • Create New...