Jump to content

clsource

Members
  • Posts

    374
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by clsource

  1. I was using PHP 7.x maybe thats why I didn't see those errors. I'll check with 5.6.
  2. I should check those. What version of php are you using? What is your config for error reporting? Thanks
  3. Odd. Well you can always change the admin password $u = $users->get('ghost'); $u->of(false); $u->pass = 'your-new-password'; $u->save(); put that in the _init.php or another place. (later remove it when its done )
  4. See if the htaccess is active. normally Processwire installer transforms htaccess.txt to .htaccess About that line if (!$canonical) { $canonical = wire('page')->httpUrl; } maybe I should change to isset or not null?
  5. Now you can see a fully functional website using this profile http://ninjas.cl
  6. What are its contents inside the english and german languages? What its the url that echo $language->lang_icon->url returns? May be something in german language its causing the english flag to not having the right path
  7. Seems ok. The lang_icon field is set as multilanguage? maybe the contents are set in english but in german are wrongly set.
  8. I think that should work for small projects. But on bigger ones will become hard to manage. maybe using will be handy on those cases.
  9. Hello, I made this clone of the Ghost Blog System (http://ghost.org) for demo of the Wire Render Pattern as well as a multi language site and menu system. https://github.com/NinjasCL/pw-ghost As always MIT licence.
  10. They were really happy with the Newsletter site of the week and they posted in their website http://labs.jumpitt.com/news/jumpitt-labs-site-of-the-week/
  11. I sent the merge request https://github.com/caddyserver/examples/issues/10 so the official examples have processwire
  12. I recommend using Flarum http://flarum.org/docs/api/ and its REST API for accessing the data inside processwire.
  13. Hi, you could use digits https://get.digits.com https://github.com/mgufrone/digits-php Cheers
  14. Thanks for all your kind comments
  15. This is a really good tool. Thanks for creating a PW driver
  16. we should add caddy example file for processwire I think
  17. Hello folks I made this simple tutorial of explaining my methodology when creating a PW system. https://medium.com/@clsource/understanding-processwire-templates-fields-and-pages-201aecd0a1a4#.osipvjevk
  18. I think https://processwire.com/about/sites/list/cms-critic/ should be removed from the list of pw sites :C
  19. Hello friends, I saw the great videos tutorials that Processwire got in English and German, but not in Spanish. So this is my first video, also was a good practice for learning ScreenFlow and Video Edition. This video covers a simple Installation on a local server using MAMP.
  20. I think they should have hire a in house developer. Its very important in any business to have the right people, sure wordpress its fine for publishing content but that should not be the main reason for ditching out processwire. At least they helped Processwire grow, Hanna Code was made for their use case of migrating a wp site to pw.
  21. clsource

    Jumpitt Labs

    Here my friends at Jumpitt Labs used Processwire as the Main Framework for their website (because I recommend it to them) http://labs.jumpitt.com They are nice folks and make mobile apps and applications in Valparaíso, Chile. I didn´t make their website, I´m just post it to show it here Verification http://isit.pw/?url=http%3A%2F%2Flabs.jumpitt.com Image
  22. Hello folks I have updated the code in my rest helper. Since It was created nearly 2 years ago! Now its much easier to create rest endpoints in Processwire You can download the code here. https://github.com/NinjasCL/pw-rest This is and example simple login code. $response = new Response(); $params = Request::params(); if (!Request::isPost()) { $response->setError(MethodNotAllowed::error()); } else { $username = $params['username']; $password = $params['password']; if ((!isset($username) || $username == '') || (!isset($password) || $password == '')) { $response->setError(Login\Errors\InvalidCredentials::error()); } else { if ($username == 'hello' && $password == 'world') { $response->output['data']['name'] = 'Tony'; $response->output['data']['lastname'] = 'Stark'; $response->output['data']['job'] = 'Ironman'; } else { $response->setError(Login\Errors\InvalidCredentials::error()); } } } $response->render(); Will render something similar to { "data": { "name": "Tony", "lastname": "Stark", "job": "Ironman" } } Any questions or comments are welcome
  23. I have improved this code please, check the new repo https://github.com/NinjasCL/pw-rest
  24. Hello, Processwire its present in Cpanel's Softaculous https://www.softaculous.com/apps/cms/ProcessWire But It's not present in Plesk APS. I think it's a good idea to create such aps and sent it to plesk for including them in their aps system. here is some info that I found. http://download1.parallels.com/Plesk/Doc/en-US/online/plesk-aps-overview/index.htm?fileName=69262.htm http://doc.apsstandard.org/2.1/start/ http://kb.sp.parallels.com/en/115664 anyone has any experience creating aps packages?
×
×
  • Create New...