-
Posts
2,318 -
Joined
-
Last visited
-
Days Won
2
Posts posted by pwired
-
-
Quote
Needs Developer and digital marketing genius ... that understands the business and all aspects of digital marketing ... If you are an expert in social media, FB ads and Google ads even better ...
makes you wonder if they can make up for it with the same level of payment ...
-
-
3
-
-
Quote
.... similar to WOrdFence WordPress plugin ....
You need to get out of habitual thinking when comparing Processwire with Wordpress.
From the beginning, Wordpress was never made for 1) websites 2) safety.
And so, all through the years tons of spaghetti plugins were made for Wordpress to make things work.
Processwire has a completely different Architecture because it is made both a cms and a cmf
with safety in mind to make websites and apps without the need for essential plugins.-
4
-
-
Hi and welcome to Processwire and the Forum.
This returning question has already been asked many times.
You can find all your answers posted for this question
in the forum. Did you search the forum already ? -
Quote
how to better understand ckeditor and it's docs?
Yes I fully agree with that. The CKEditor is used by many in Processwire -
and keeps having returning questions about cumbersome to find configurations -
we should setup a central place to first collect the useful configuration finds
that are now spread over the forum, and then make them for all easy available.
For the love of processwire I will start with this in the coming weekend.-
2
-
-
Quote
how did you find that setting?
I'm always lost when customizing the ckeditor...
I found it with old school nightly searching with google .... and lots of coffee
Can't remember the source webpage anymore, can try to look it up again.
-
Like it or not but when reading both posts, to me Ryan clears it objective and Moritz brings it subjective.
Processwire can hardly be labeled or compared with established cms systems out there because Processwire
gives almost unlimited -never seen before- freedom in how to use it. Only recognizing this unlimited freedom
to a certain level, because of habitual coding and thinking learned from other systems can bring up
such comparisons.-
1
-
-
Who needs Craft when there is Processwire ?
-
1
-
3
-
-
During development, just add the following to your <head>:
<script type="text/javascript" src="https://livejs.com/live.js"></script>
More information:
https://livejs.com/-
2
-
-
I use Laragon all the time. Never have any such problems. I simply work with 2 different browsers: Slimjet Browser for the Backend and PaleMoon Browser for the Front end. The PaleMoon Browser lets me best develop responsive design on smartphones (It lets you even go down to the 50px !!)
-
https://processwire.com/modules/site-simple-blog-multilanguage/
link doesn't work (25feb 21:10 gmt) -
Quote
I also still build websites traditional way, depending on the project, and needs. If I need a CMS and more advanced features, using pw, if need a more basic website, then trying to use SSG. Usually without cms, content in markdown… Just started with SSG sites, but planning to move to it as much as I can.
- Don’t have to keep your front-end files on the same server
- Easier to deploy websites (static sites, SPA). You can deploy your website to github, netlify, cloudflare pages… no server needed
- Easy to build multi websites with one backend
- Easier to collaborate via git
- Easier to share data between websites
- Tooling, preprocessor parsers, purge css, live reload etc…
- Easier to switch front-end entirely, eg: change front-end framework, change static site generator…
Is SSG not mostly being used by coders, git-users, documentation, etc. ? Is SSG really something to use for a client website ?
-
2
-
With all respect to the beautiful website .... but the domain name ?
I have seen a lot of domain names but never something like this.
Think of Visitors outside of Brazil and who is going to memorize
something like arbynatashamarques ? Even on a business card it would
look kind of absurd. A domain name should be short, easy to memorize
and recognizable for a brand, a service, a product, etc. etc.
But maybe this is just me.-
2
-
-
We have given Wordpress enough advantage of the doubt ......
Here it goes again:Give the Client a WebSite that he really deserves ...
with Processwire !-
2
-
-
I feel real good about this scalability and speed tuning with the fields and templates.
Big thanks fly out to the tuning spoon and ryan.-
5
-
-
Quote
making sure he keeps the current community he already has is vital to ProcessWire . . . .
Remember the years before and after the evo exodus to processwire ? The forum was vibrant and full with
starting-coders and beginners and for a long time the forum was praised for fast replying and helping them out.Processwire has already lost almost all starting-coders and beginners like we used to have them in the past.
I asked the forum a few times if there is interest in getting them back but without any reaction.
A clear indication.Processwire is already a fantastic and full grown product so spend less time with adding weekly new xyz features
and instead start spending more time with Marketing the potential of this great product.No secret that this is not going to happen because with Processwire, Ryan is only interested in coding
and is followed by a lot of coders a like in the forum.Another suggestion to make the community grow is to split Processwire up in 2 versions:
1) a version for starting coders and beginners like it was in the beginning
2) a version for experienced coders like we have todayLast but not least: maybe I should not complain about anything
and just take Processwire for what it is and be happy with it.-
1
-
-
Here you have another post with some good links in it
https://processwire.com/talk/topic/12881-processwire-on-iis-in-2016/
-
Don't give them too much attention ... ?
-
Finally an authority that stands up and no longer follows main stream and established behavior.
Trying not to be a sheep doesn't get much support or likesMatomo is not like it used to be anymore
https://matomo.org/pricing/My 5cts for an alternative, I use bbclone a lot as it gives just enough in most cases
https://www.bbclone.de/features.php-
1
-
-
Hi Jan Romero,
Thanks for posting about swiper.js - really stands out from the usual carousel/sliders-
1
-
-
Bumping this thread
If you cannot add extra input fields and labels to the core Comments Form to expand on it, for example Surname, Country, Month, Year, or any other custom field/label, etc etc then what is the use of having it in this limited way in the core ?
Would like to know who is using the core Comments fieldtype in Processwire and in what way, purpose ?
-
With fbg13's jump start code, now it is easy to add some extra code and formatting
and make a working form example out of it.1) Add <?php namespace ProcessWire; on the top of your template to prevent error Class "Page" not found
2) Add action="./" to the form
3) Add labels and a <textarea> section to the form
4) Change the default named submit button into something custom e.g. Send<?php namespace ProcessWire; if($input->post->submit) { $p = new Page(); $p->of(false); $p->template = "test"; // template_to_save_form $p->parent = $pages->get("/test/"); $p->title = $input->post->name . " - " . date("Y-m-d"); $p->fullname_txt = $input->post->name; $p->message_txa = $input->post->message; $p->save(); } ?>
And the form
<form action="./" method="post"> <label for="fname">Full name:</label><br> <input type="text" name="name"><br> <label for="message">Message:</label><br> <textarea name="message" rows="5" cols="20"></textarea><br> <input type="submit" name="submit" value="Send"> </form>
Enter a name, a message and hit the send button a few times
and see magically grow the number of child pages holding
the entered form data.Now you can further process the form data like showing a success page
and emailing the form data. -
Things that I came across about creating/editing pages with the api:
1) Set output formatting state off, for page manipulation
$page->of(false);2) First save page in preparation for adding files e.g. an image
$p->save();So allow me to add 1) here to improve the above example code:
<?php if($input->post->submit) { $p = new Page(); $p->of(false); $p->template = "template_to_save_form"; $p->parent = $pages->get("/parent-page/"); $p->title = $input->post->name . " - " . date("Y-m-d"); $p->submitted_by = $input->post->name; $p->message = $input->post->message; $p->save(); }
-
1
-
-
@fbg13
This is exactly what is needed to know when starting to use $page api with a html form
Big thanks for posting this.
PW 3.0.203 – Core updates + custom fields for comments
in News & Announcements
Posted
Page not found (july 17 - 17:00 gmt) - - tried with 3 different browsershttps://imperavi.com/article
Edit: link is working