Jump to content

pwired

Members
  • Posts

    2,318
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by pwired

  1. Quote

    Maybe I just don't know the use cases.

    general: sqlite and xml databases add greatly to portability
    range: xml database works very well up to the 500 pages website range
    speed: xml database makes a website much faster compared to sql

     

    • Like 1
  2. There have been, and still are, requests for adding sqlite to PW. Perhaps that would give you something to work on commercially.

    Besides sqlite database, how much would it roughly cost to add xml database to PW ?

     

    • Like 1
    • Thanks 1
  3. Quote

    I contacted the server team,

     

    Hi Franciccio,
    So you are doing a Processwire installation on your online host.
    What Processwire version are you installing ?
    Did you check folder permissions, php version, etc. etc.
    Send me a PM and see if I can sort it out for you.

     

  4. All right guys, another blow to the internet freedom. The united states of europe has voted for Article 13 and made it a fact.

    This is of course bad for innovation because little companies are getting a hard time to compete with the dominant platforms. Also independent content makers such as musicians and vloggers will have only a few dominant platforms left to distribute their work. The dominant platforms will get huge power to control public communication and discussions. Less freedom of expression and public discussions and more conformity to what is acceptable to the status quo. Here is a good example. Remember how Apple kicked Alex Jones from the internet ? Only a few days after that, Youtube, Facebook, Spotify and Twitter followed. We'll wasn't that a coincedence, right ? It only shows that these dominant platforms rule the same status quo and the same what is acceptable, instead of ruling their own interpretations of freedom of expression, choice and opinion. These dominant platforms have turned themselves into decision makers ! Deciding for us the people what we should see and hear and what not. If I don't want to see or hear or do agree or don't agree with Alex Jones then that decision is for us to make and not Apple, Youtube, Facebook, etc. It is not about Alex Jones and the content he brings to the public. It is about big platforms taking away our freedom of choice and our freedom of decision what we can see, hear or agree upon on the internet.

    This is in dutch so google translate it to english:
    https://www.nu.nl/internet/5810511/brussel-stemt-voor-nieuwe-auteursrechtenwet-met-uploadfilter.html
    https://www.bitsoffreedom.nl/2019/03/26/europees-parlement-stemt-voor-artikel13-en-nu/

     

    • Like 1
    • Sad 2
  5. Quote

    I'm confident in front-end but no php......

    Here is the good news ..... you don't need to be a full blown php coder to start using Processwire. Neither you need to be an expert in javascript.

    Even with the php basics you can already start making websites with Processwire e.g.

    <?php
    
    echo "this";
    echo "that";
    echo "<img src='$image->url' alt='$image->description' />";
    
    access a page
    
    $pages->get("/path/to/page/");
    
    output your pictures in a gallery
    
    foreach($page->images as $image) {
    $large = $image->width(500);
    $thumb = $image->size(100, 100);
    echo "<a href='{$large->url}' rel='lightbox-smarts'><img src='{$thumb->url}' alt='{$thumb->description}' /></a>";
    }
    
    ?>

    Some basic php syntax stuff
    https://processwire.com/docs/more/why-php-syntax/

    Did you already go through the Tuto's ?

    Start it up with Processwire
    https://processwire.com/docs/start/templates/

    Processwire Tutorials
    https://processwire.com/docs/tutorials

    A good read about Processwire and WordPress
    https://www.ionos.co.uk/digitalguide/hosting/cms/processwire/

    Anyway, you are not going to find any better api out there than the Processwire api.

    Feel free to always come back here and ask questions.

     

     

    • Like 1
  6. Processwire is light years ahead compared to Wordpress. It depends however on your dead line. When does it need to be ready ? If you just started with Processwire it is going to take some time before you know how to handle it's potential.

  7. Something looks wrong here. The avatars in the Latest Topics column are stretched out vertically. Also the whole Latest Topics column has moved upwards out of line with the Welcome to Processwire column.

    • Like 2
  8. My acer laptop wifi started to behave similar and doesn´t work properly anymore with a lot of hotspots I weekly visit.
    It connects to the routers all right but no internet. And yes others around me at the same time always have internet.
    I want to share a simple working solution I found with a D-Link usb wifi adapter:

    d-link.jpg.cf1b219a9069e4e4c28e722ac801f054.jpg

    This little thingy made everything work again.

    Note:
    I tried a TP-Link before but it had installer drivers instead of direct inf drivers.
    The TP-Link installer drivers never worked. So I changed it with this D-Link which
    comes delivered with direct inf drivers which are simple to add and simply do work.
    (Not affiliated, just want to share something that works)

     

     

    • Like 1
×
×
  • Create New...