
Pip
Members-
Content Count
66 -
Joined
-
Last visited
Community Reputation
9 NeutralAbout Pip
-
Rank
Full Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Hi everyone, Is there a way to funnel data from a Google Sheet to a Processwire page? Thanks.
-
Hi @MoritzLost Tried your recommendation. You're right the hero-ability.php was non existing. Recreated it and is now linking automatically! Thanks so much! Happy Holidays!
-
-
Hi @MoritzLost Thanks for making the module. It's really handy for sites that have majorly a lot of pages. I'm working on a game site where there are heroes and their special abilities, items, etc. . Was totally delighted that it was working on my test environment but I noticed that (sorry if it feels snobbish but itemizing helps me think lol) hyperlinking only works on the Body textarea it only works on one page template so it seems I have two templates - hero and hero-ability. They're both in the module settings. I've also counter checked that my textarea fields have the same settings as the Body textarea. Did I do something wrong? Or did I misunderstand something? Thanks.
-
Is there a way to import pages with the parent in the CSV?
-
Hi @horst Yup. All seems successful.
-
PS: Import goes in still btw. Whether if it's correct or not, I have to double check as I've added in hundreds. ๐
-
Hi everyone! Was wondering if anyone been getting this error when you import? Been scratching my head on this. Checked 515 and this is what I got. if($page->id && count($page->get('ImportPagesCSVData'))) { Any idea what's tripping it?
-
Redid the whole thing. It works now.Thanks!
-
Hi guys Just want to confirm something before I go calling the ghost busters or something. So here's aroughsummary.: I'm currently working on a Xampp environment. Each site I work on, I customize the domain from localhost -> confabulations. No .com, .net, .org, etc. I've installed processwire and it automatically sets this in the config: $config->httpHosts = array('confabulations'); Everything works well in Login/Register until one day, I get this error when I register on the site (locally). Which is weird because I have not been customizing the module itself. Not until I change this: $config->httpHosts = array('confabulations.com'); Then it works. I mean sure fine theoretically if I change my vhost etc to confabulations.com it should work. But what I do not understand why suddenly trigger such error when the only modules I have is the Sitemap and Login/Register/Profile. ๐
-
Never had this problem before. But may I know how you create it and what's the name of your template?
-
Tried this. Though theoretically it is sound, email address is still stiff. I got my admin email address still. Worst even if I do this, my Login Register comes out empty. I have do this in order to work (just to have the module work work): Take note: Email address is still the same as admin. I've checked the error logs, everything seems to be in working order.
-
And fast forward to 2020, has anyone figured this out yet? Tried doing this but as expected, it is overwritten. ๐ Changing the config is out of the question because this would mean all other updates will bounce off. protected function sendConfirmationEmail($email, $confirmCode) { $config = $this->wire('config'); $confirmURL = $this->wire('page')->httpUrl() . "?register_confirm=" . urlencode($confirmCode); $mail = new WireMail(); $mail->subject(sprintf($this->_('Confirm account at %s'), $config->httpHost)); $mail->to($email); $mail->from('noreply@domain.com');