Jump to content

huseyin

Members
  • Posts

    78
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by huseyin

  1. As there is no answer... My english knowladge is limited. Probably you did not understand the question. Will try to (re)explain. How do you user input data sanitize? Is only PW sanitizer enough or what is your strategy against xss?
  2. Hello, if you deal with user input (Form data, Url variables etc) are your using only PW Sanitizer api or any more actions?
  3. Not an answer, but question; What is your impression, is it worth to make the change? I also wanted to give it a try, but not had the first step still..
  4. I have no idea the latest alert. May be this could help; https://processwire.com/docs/security/file-permissions/
  5. Did you include the pw index.php in test.php (additionaly processwire namespace could be required. I am not sure. Please try)
  6. Hello, Did not tried this. But i thing a scenario as following will work. Install PW under a subpage. Like www.domain.com/pw Create your site as usual. In a php file where you want to use pw include the index of pw like; include("pw/index.php"); This should be enough. (not sure if the namespace needed anycase)
  7. Hello, the echo suggestion was only because you tried to echo the $catalogue array. In your case the problem is php is running on server side and ajax is running on client side. So you need to transfer the serverside pulled data to client side first. This could be done with a json post call. (there may be many other ways but this one is my favorite which i use often) You can pass also some variables via ajax to your php so make your filtering right while calling data. If you have not used ajax json post before google it. There are many results. Example : https://www.webslesson.info/2017/06/jquery-ajax-call-to-php-script-with-json-return.html Hope this helps...
  8. Because it is an array. --------------- If you want to echo all data on the page anyway ( which you put in $catalugue) Why not directly echo it in the foreach loop instead of putting it in to an array? Basic Example; foreach ($allarticles as $onearticle) { echo '<div>Article Number : '.$onearticle->id.'</div>; echo '<div>Article Title : '.$onearticle->title.'</div>; . . . For running Proceswire codes outside of the templates folder you need to include the index.php on top of your php file.
  9. Our effort seems to be prized.. I see many new members on the forum with their first posts....
  10. Answer to your question "... if this is doable with Processwire " ; Processwire is by far the best option for such a challenge.
  11. Had the same feeling after 10 years work with TYPO3.
  12. I think the same. I do not worry to face all the effort to code the system. I am only afraid of safety.
  13. I have a new project; an ecommerce site. Have read nearly all messages about Padloper. There is no roadmap, no estimated time, no plan, no information. So how can i trust such a project and how can i be confident that a possible problem will be fixed when it occurs? So Conclusion; I will start to create the shop myself.
  14. I have real strange feelings when i think about letting all frontend users enter the admin backend. May be i have to change my vision about the backend first.... Will try it...
  15. I plan to use this module as duplicater. How is it handling database name? I want to create a template PW site and clone it for new projects. So i need to change the database name for every new clone. It should not overwrite former clones databases on the same server. Can achive this with this module?
  16. Thank you. This is clear answer.
  17. I know the "Submit a site" form on the PW Showcase site is creted with formbuilder. By submitting the form it save the data as a PW page. So it creates a page. What i want to know is; Assume i have created page like showcase page at the above example. Can i use the formbuilder to let someone edit this pages data (like address change, phone number change etc)... 1- if this page was created by formbuilder. 2- if this page was NOT created by formbuilder.
  18. Can anyone help me? Need to know this before buying. Is my question not clear enough?
  19. Hello, question to those which have FormBuilder Pro already; Will i be able to edit pages in FrontEnd which are not created with FormBuilder? So simple regular processwire pages.
  20. Hello, if i understand right, this should solve your problem; if($page->hasChildren()) { // code for page with children } else { // code for page without children }
  21. You can't have pages with same name. May be it is the title. Could you share your whole find code and the for each code to list the results
  22. Wow, this is really amazing. Thank you that you took time to explain all this details. I will read them once more and take notes.
  23. Hello, i usually make a very basic plan (say a A5 paper) and start my project. (We say this is a turkish type of project planning) This way i need to correct many thing later while work on the peoject. Want to how others make the planning of a project. How detailed are you planning in advanced before begin coding or templating? Write down all workflow with tables and field names and relations? Drawing every page layout? Do you use ant tools or software for planning the outline of a project? Thank you in advance for your shares...
  24. Hello, we were using TYPO3 for the last 10 years before we met ProcessWire. I regret the time before ProcessWire. So i want to ask you which Shopping Cart are you using for client projects? For now we use CS-Cart. But it is expensive and really difficult to modify for custom requests. May be there is an alternative shopping cart solution like ProcessWire istead of TYPO3. Await you suggestions and if possible with pros and cons. Thank you.
  25. No problem, your wellcome. I could learn much from your project. I have a website where i want to have user registration and let users add their company and products or services related to theese companies. I have not build a website with api user registration and api user managed content before. So little bit afraid of doing unsecure logic. Do i need the pro login or is it ok with the regular login module. What have i to take care especialy for secure user driven site. The site is : www.kentvitrini.com News, business directory, event calendar. Categorised by cities.
×
×
  • Create New...