angelo, italy Posted March 26, 2019 Share Posted March 26, 2019 Hi guys, I've always used WP but I want to swtich to PW. I'm not sure .... I'd like to know if it's possible to create a website for an online photo contest. The participants of the competition could create their own account, in which they upload their photos. The photos uploaded remain visible only to themselves and the judges. From their account they can make the "entrance fee" payment.The judges of the competition can create their own account... entering they see the photos of the participants and vote photos At the main page I imagine the title of the competition, a button to read the regulation, and a button to register. The website should be in Italian and English. Thank you!! Link to comment Share on other sites More sharing options...
pwired Posted March 26, 2019 Share Posted March 26, 2019 Processwire is light years ahead compared to Wordpress. It depends however on your dead line. When does it need to be ready ? If you just started with Processwire it is going to take some time before you know how to handle it's potential. Link to comment Share on other sites More sharing options...
Tom. Posted March 26, 2019 Share Posted March 26, 2019 We have used ProcessWire for exactly this many times. It's VERY straight forward using the API. Now, if you don't feel confident in PHP then I would still suggest using WordPress and a plugin, but if you are willing to learn, it will be absolutely worth it as you can built it exactly how you want it and you can use the skills you have learnt for building other things in future. The ProcessWire API is very versatile and consistent, this means learning a way to do one thing such as using hooks gives you worlds of knowledge to do other things. It doesn't take long to pick up the entire API as it's very straight forward. If you need any help, let me know. 1 Link to comment Share on other sites More sharing options...
angelo, italy Posted March 26, 2019 Author Share Posted March 26, 2019 (edited) thank my friends.I am very fascinated by PW .. a lot! I am confident on front end but little back-end and PHP. Can you show me useful resources to learn PW while I build this site? Thanks again Edited March 26, 2019 by angelo, italy wrong word Link to comment Share on other sites More sharing options...
angelo, italy Posted March 26, 2019 Author Share Posted March 26, 2019 16 minutes ago, Tom. said: We have used ProcessWire for exactly this many times. It's VERY straight forward using the API. Now, if you don't feel confident in PHP then I would still suggest using WordPress and a plugin, but if you are willing to learn, it will be absolutely worth it as you can built it exactly how you want it and you can use the skills you have learnt for building other things in future. The ProcessWire API is very versatile and consistent, this means learning a way to do one thing such as using hooks gives you worlds of knowledge to do other things. It doesn't take long to pick up the entire API as it's very straight forward. If you need any help, let me know. 1 hour ago, pwired said: Processwire is light years ahead compared to Wordpress. It depends however on your dead line. When does it need to be ready ? If you just started with Processwire it is going to take some time before you know how to handle it's potential. How long? I'm confident in front-end but no php...... 😕 Link to comment Share on other sites More sharing options...
Tom. Posted March 26, 2019 Share Posted March 26, 2019 7 minutes ago, angelo, italy said: How long? I'm confident in front-end but no php...... 😕 It would be impossible for us to give a time scale on your speed of learning. For the entrance fee if you use https://www.foxy.io/ - you could have something like this built in two weeks (judging that your learning as you go along). I would also encourage you to learn AJAX if you don't already know it as it would help improve the user experience for this. Link to comment Share on other sites More sharing options...
angelo, italy Posted March 26, 2019 Author Share Posted March 26, 2019 28 minutes ago, Tom. said: It would be impossible for us to give a time scale on your speed of learning. For the entrance fee if you use https://www.foxy.io/ - you could have something like this built in two weeks (judging that your learning as you go along). I would also encourage you to learn AJAX if you don't already know it as it would help improve the user experience for this. thanks Tom! Link to comment Share on other sites More sharing options...
pwired Posted March 26, 2019 Share Posted March 26, 2019 Quote I'm confident in front-end but no php...... Here is the good news ..... you don't need to be a full blown php coder to start using Processwire. Neither you need to be an expert in javascript. Even with the php basics you can already start making websites with Processwire e.g. <?php echo "this"; echo "that"; echo "<img src='$image->url' alt='$image->description' />"; access a page $pages->get("/path/to/page/"); output your pictures in a gallery foreach($page->images as $image) { $large = $image->width(500); $thumb = $image->size(100, 100); echo "<a href='{$large->url}' rel='lightbox-smarts'><img src='{$thumb->url}' alt='{$thumb->description}' /></a>"; } ?> Some basic php syntax stuffhttps://processwire.com/docs/more/why-php-syntax/ Did you already go through the Tuto's ? Start it up with Processwirehttps://processwire.com/docs/start/templates/ Processwire Tutorialshttps://processwire.com/docs/tutorials A good read about Processwire and WordPresshttps://www.ionos.co.uk/digitalguide/hosting/cms/processwire/ Anyway, you are not going to find any better api out there than the Processwire api. Feel free to always come back here and ask questions. 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now