Jump to content

hettiger

Members
  • Posts

    39
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by hettiger

  1. 2 minutes ago, apeisa said:

    http://modules.processwire.com/categories/premium/

    I agree, that "one shop to rule them all" would be best for everyone. Even better, if it would be integrated into ProcessWire somehow.

    That's exactly what I'm talking about :-)

    Glad to see Padloper is in the list with Ryans Premium Modules. (Must have overlooked it somehow)
    That's already great news. Now it would be amazing if you could purchase it on processwire.com instead being redirected to padloper.pw.

    Also having a unified licensing system in place would be great.

  2. 6 hours ago, Macrura said:

    You can sell them here:

    https://processwireshop.pw/

    Thank you for that link. E-Mail'd the admin :-)

     

    2 hours ago, LostKobrakai said:

    There's also https://www.padloper.pw/, which is also a paid module.

    Thank you too, looks very interesting and I didn't even know such module exists.
     

    What kind of bugs me is that I didn't know about these ...
    That's why I still think we need a solution for that purpose within the existing module directory on processwire.com maybe.

  3. I think there should be an easy way for developers to offer commercial modules like Ryan's pro modules.

    1. More extensive, userfriendly and generally more professional modules will become available
    2. Commercial modules will be attractive for bigger projects in terms of support / reliability
    3. ...

    What is the communities but especially Ryan's opinion onto this subject?

    Are there any paid modules other than Ryan's pro modules available at this time?
    Another option could be donations or maybe licensing for commercial usage only ...

    Please don't get me wrong. I know that contributing is important ...
    This question is about real big and time consuming ideas that you would not implement without a way to monetize.

    Looking forward to your opinions :-)

    • Like 1
  4. If you're interested in running ProcessWire using PHP's built in Webserver this one's for you:

    <?php
    
    /*****************************************************************************
     * Router script for emulating Apache's "mod_rewrite" functionality.
     * This router script is designed for testing ProcessWire instances quickly.
     * Don't use this script and/or PHP's built in Webserver in production.
     *
     * Usage: php -S localhost:8000 -t /ProcessWire /ProcessWire/routing.php
     *****************************************************************************/
    
    $uri = urldecode(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
    if ($uri !== '/' && file_exists(__DIR__ . $uri)) return false;
    
    $_GET['it'] = $uri; // emulate index.php?it=$1
    require_once __DIR__.'/index.php';
    
    

    Enjoy!  :)

    • Like 9
  5. https://processwire.com/talk/topic/2393-processwire-framework/#entry22685

    https://processwire.com/talk/topic/2393-processwire-framework/

    Laravel isn't the only PHP framework. Instead of writing the framework, time is better spent actually writing code

    with your own pre-written modular code that's going to speed up your development.

    Never said Laravel would be the only PHP framework.

    You can do all that stuff in other Frameworks or ProcessWire itself too.

    This is for people that enjoy working with Laravel and want to use it together with ProcessWire.

    • Like 4
  6. Hello there,

    ProcessWire has been the perfect CMS for me so far but I always missed the Laravel way of doing things when working with PW.

    Therefore I've built a package that will integrate Laravel into ProcessWire.

    It's already working out really well and I can imagine a lot of stuff to come in future.

    Anyways I'm hoping for some peoples support / pull requests / ideas / opinions ...

    Here's the link: https://github.com/hettiger/larawire

    Enjoy! :-)

    • Like 20
  7. Hi hettiger,

    Welcome to ProcessWire! :)

    Do you have template cache enabled or using MarkupCache by any chance?

    If it's a multilang site: Does the guest user maybe have a language where the image description isn't filled/translated?

    Cheers

    Thank you Wanze,

    with your help I was able to fix this issue.

    I disabled multilingual descriptions on this image field. (The site itself is not multilingual, but the backend is)

  8. Hello there.

    Since this is my first post in these forums: Thank you Ryan for ProcessWire and thanks to everyone that is supporting him or other users.

    I'm having a strange problem using $image->description. When I'm logged in as the default user I registered during install everything's working as expected. $image->description returns the string provided in the backend. Anyways if not logged in, an empty string will be returned resulting in <img src="url-is-still-working" alt="">.

    I don't really know whats going on. Might be a bug? Here's some code:

    $slides = '';
    
    foreach ( $page->slideshow_images as $image )
    {
        $slides .= '<li><img src="' . $image->url . '" alt="' . $image->description . '"></li>';
    }
    

    I'm running ProcessWire 2.5.3.

×
×
  • Create New...