-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By greene000
There is a site https://carnesmechanical.com/ on the WordPress CMS engine on the server, you need to transfer it to Processwire to another server. About 1000 pages. Write how much you are ready to undertake?
-
By franciccio-ITALIANO
Hello to all. I would like to create an app. So I need to learn at least one programming language. I got informed online, and discovered that javascript with node.js, is the revolution of recent years, because it's faster than php. I wonder: if I develop an app with javascript and with a javascript framework (e.g. Meteor), is there a way to integrate processwire work? I know that processwire supports the transformation of the site into an application, but would it be as simple as Meteor? With the Meteor framework I have my app online in 10 minutes, and without even knowing javascript! (Knowing javascript would serve to personalize it). I should then install the app in a SUB-DOMAIN. If I study php, instead, and if I use a php framework (e.g. Laravel), how long does it take to have my first working app? Is it easy to process Laravel's components? Is writing forms for processwire apps with php a very complex job? Is it better to use Meteor and start with javascript? What would you recommend?
-
By abdulqayyum
Hy Processwire community,
There are some problem in fileCompiler cache.
when i change under the directory \site\templates\ it must change under the directory /site/assets/cache/FileCompiler/site/templates/
but it does not update and functionality working with /site/assets/cache/FileCompiler/site/templates/ directory.
In this case please suggest me how i clear fileCompiler cache?
what i have to clear it manually?
Thanks AbdulQayyum.
-
By abdulqayyum
Hy everyone,
i am using loginRegister module for front-end user login.
In this module user can login with Email/username, i am showing with Email. done
but not showing Email in Forgotton Password section. there still showing with username.
i want to show Forgotton Password with Email instead username. and should reset with email.
please help me in this section, how i can set it with Email.
Thanks AbdulQayyum.
-
By abdulqayyum
Markup-Google-Recaptcha is not working with LoginRegister module in Forgotton Password Form.
Here is my code
wire-> modules -> process -> ProcessForgotPassword.php
protected function step1_renderForm() {
$form = $this->modules->get("InputfieldForm");
$form->attr('action', './?forgot=1');
$form->attr('method', 'post');
$field = $this->modules->get("InputfieldText");
$field->attr('id+name', 'username');
$field->attr('class', 'redesign-field forgotPassFeild');
$field->setAttribute('placeholder', 'Username');
$field->required = true;
$field->label = $this->_("Forgotton Password");
$field->description = $this->_("If you cannot remember your password to access the affiliates portal. simply provide your username in the box below and we'll send you a reset link via email.");
$form->add($field);
// Calling MarkupGoogleRecaptcha Module.
$captcha = $modules->get("MarkupGoogleRecaptcha");
// rendering form with recaptcha
$captcha->render($form);
$submit = $this->modules->get("InputfieldSubmit");
$submit->attr('id+name', 'submit_forgot');
$form->add($submit);
$this->session->userResetStep = 1;
// rendering form
$out .= $form->render();
// getting captcha script
$out .= $captcha->getScript();
return $out;
}
I am following this one example.
please suggest me how i can show MarkupGoogleRecaptcha in forgotton password.
Getting log error
Thanks,
Abdul Qayyum
-