-
Posts
1,250 -
Joined
-
Last visited
-
Days Won
5
Everything posted by cstevensjr
-
In order to properly help you, please let us know a little more about your environment (Versions of ProcessWire, PHP and MySQL), to include information about your repeater field and any other changes (fields, modules, configuration) that are unique to your installation. Thanks.
-
This is configuration setting that is needed on your current installation. It identifies your domain correctly. I would suggest you have: $config->httpHosts = array('wackiki.com','www.wackiki.com');
-
Have you tried overwriting both fields with the password that you require? What happens if you do that?
-
When you are logged in as the SuperUser, you have to click on the actual "Bookmarks" item which will then allow you to define (configure) any bookmarks. From my experience, even after you have defined the "Bookmarks", they will not show on the SuperUser display, as shown in your image. You still have to go to the configuration area (click on Bookmarks) and then you can see anything you have defined. I have defined a multitude of bookmarks based on template access. To me it's a great enhancement.
-
Unfortunately in this crazy world, sometimes business interests (Envato, ThemeForest, tutsplus = $$$$) comes before integrity, honesty and a true technical review of some CMS/Frameworks. I must admit that I sincerely believed that tutsplus (as a professional entity) would redeem themselves with a fair and honest review of ProcessWire. Fortunately, our platform has a great future which is based solely on technical innovation and not hype. These types of reviews will not stop the rapid adoption of ProcessWIre by talented and knowledgeable individuals. Our community may be small but it's composed mainly of the highest level multi-talented designers and developers.
-
The Forklift software that I use (Forklift 2, Version 2.6.5) is updated regularly.
-
I utilize Forklift and have enjoyed using it since converting from Windows to the Mac. I have not used any of the other MAC (S)FTP clients.
-
Works great! Thank you again for this fantastic module.
-
Adrian, Thanks for the update.
-
Unfortunately, I ran into a new issue where I'm having a problem adding new categories.
-
UPDATE I was able to figure out where I was going wrong in this module's configuration. For anyone who may not check Github, listed below is the resolution of the issue I opened there. Resolution @adrian, thanks again for your quick follow-up and troubleshooting expertise.
-
I just opened an issue on Github regarding a configuration problem I'm having on a recent installation of this module. It could well be operator error, on my part, however I just need some expert help and assistance.
-
Sounds like you want to run a "LINUX/UNIX terminal" program on MS Windows. https://www.cygwin.com/
-
FYI, PIWIK's take on this: http://piwik.org/blog/2015/05/stopping-referrer-spam/ https://github.com/piwik/piwik/issues/5099
-
Markup/HTML with image managenent goes crazy hundreds of errors
cstevensjr replied to Can's topic in General Support
Are you saying that you have had this issue since January? -
Markup/HTML with image managenent goes crazy hundreds of errors
cstevensjr replied to Can's topic in General Support
What ProcessWire version are you using? -
Install problems: no installation seems to happen
cstevensjr replied to Leonarro's topic in Getting Started
Can you specify what version of PHP your Hosting Provider is using? Any additional information on what your actual problem is would be beneficial. -
You should upgrade your Form Builder to the latest version (I believe wiremail functionality was incorporated in version 0.2.4 and later).
-
Can you please post the code of your "home.php" and "basic-template.php" files? Thanks
- 13 replies
-
- 13 replies
-
I have been transitioning to Page Table from Repeaters for quite some time. I never had a problem with this transition. A few weeks ago, I finally figured out how to display a Page Table on the front end of my websites. Everything worked great. I believe after upgrading to PW 2.6.2 (not quite sure) when I did the next Page Table I could not get my Page Fields to display any more. I normally have an "Updates" Page Table that is made up of 3 parts (Date Field, TextArea Field and a Page Field). Today I created a new installation that had minimal modules and went about structuring my site. When I got to the "Updates" Page Table, it still would not display the "Contacts" title information. The field is setup as indicated: My Contact fields allow for more than 1 person to be listed in the entry. The following is a screenshot of what I have been getting for over 3 weeks. Next I added the "Contacts" Page Field directly to the template and changed the _main.php template file to display the field. $cshcon = $page->crms_show_contact->title; echo $cshcon; I still could not get the Title to display on the Page Field. I finally ended up changing the setting for the field as follows: Once I did that, I could get the title to display as it should Either one of the singular settings worked. It worked on the singular Page Field, as well as on the Page Table. As soon as I changed the field setting back to Multiple Pages, it disappeared again. What caused me the most pain was that whenever I would let the Page Table display the field without the title syntax it would display with the correct Page ID of the particular Page Field. Github issue opened which references this post UPDATE: I was remiss to not include the foreach information: Thanks, tpr for bringing it to my attention. It's been a long day already. $csu = $pages->find("template=crms-updates, crms_status_updates=$page, sort=-crms_start_date"); if ($csu) foreach($page->crms_status_updates as $csu) { echo "<strong>{$csu->crms_start_date}</strong> |"; echo " {$csu->crms_comments} |"; echo " {$csu->crms_show_contact->title}"; echo nl2br("<br />"); }
-
I believe it does submit the form without the page refreshing (if that is what you are talking about). Anyway, the product has a stated guarantee, so you shouldn't have a problem testing it out. Satisfaction Guarantee If you purchase a copy of Form Builder and find it doesn't meet your needs and you won't be able to use it, you may get a full refund within 7 days of your purchase, no questions asked.
-
FormBuilder is a Commercial Module created by the Ryan Cramer (ProcessWire's Creator). The attached link gives more information about this great module. https://processwire.com/talk/store/product/2-form-builder-single/ The other modules you mentioned are freely available to use or you can create your own form capability using ProcessWire and It's API.