-
Posts
374 -
Joined
-
Last visited
-
Days Won
8
Everything posted by clsource
-
I was using PHP 7.x maybe thats why I didn't see those errors. I'll check with 5.6.
-
I should check those. What version of php are you using? What is your config for error reporting? Thanks
-
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 )
-
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?
-
Now you can see a fully functional website using this profile http://ninjas.cl
-
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
-
Seems ok. The lang_icon field is set as multilanguage? maybe the contents are set in english but in german are wrongly set.
-
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.
-
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.
- 27 replies
-
- 18
-
thank you
- 3 replies
-
- syncfusion
- free
-
(and 2 more)
Tagged with:
-
I sent the merge request https://github.com/caddyserver/examples/issues/10 so the official examples have processwire
-
I recommend using Flarum http://flarum.org/docs/api/ and its REST API for accessing the data inside processwire.
-
Hi, you could use digits https://get.digits.com https://github.com/mgufrone/digits-php Cheers
-
This is a really good tool. Thanks for creating a PW driver
-
we should add caddy example file for processwire I think
-
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
-
I think https://processwire.com/about/sites/list/cms-critic/ should be removed from the list of pw sites :C
-
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.
-
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.
-
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
-
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
-
I have improved this code please, check the new repo https://github.com/NinjasCL/pw-rest
- 32 replies
-
- 2
-
- helper
- processwire
-
(and 2 more)
Tagged with:
-
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?