Jump to content

pmichaelis

Members
  • Posts

    73
  • Joined

  • Last visited

Posts posted by pmichaelis

  1. In a multilingual environment I get the following error, wehen sorting menu-items

    TypeError

    method_exists(): Argument #1 ($object_or_class) must be of type object|string, null given
    File: .../modules/MarkupMenuBuilder/ProcessMenuBuilder.module:2602

    2602: if($language != null && method_exists($pages->get($itemID)->title, 'getLanguageValue')) $itemTitle = $pages->get($itemID)->title->getLanguageValue($language);// title of each PW page in this array

    This works for me:

     

    // multilingual environments
    if($language != null && $itemID && method_exists($pages->get($itemID)->title, 'getLanguageValue')) $itemTitle = $pages->get($itemID)->title->getLanguageValue($language);// title of each PW page in this array


     

    • Like 1
  2. 1 minute ago, Juergen said:

    Hi @pmichaelis,

    it is indeed a little bit hidden, but you will find an example of a single and a multiple file upload field inside the example of the contact form at

    https://github.com/juergenweb/FrontendForms/blob/main/Examples/contactform.php

    Best regards

    Ahh! There it is. Thank you!
    Maybe you should also integrate it here:
    https://github.com/juergenweb/FrontendForms/blob/main/Examples/inputfieldexamples.php

  3. On 12/31/2022 at 6:20 AM, torf said:

    That's a very handy module. Thanks a lot.

    Where I got a bit into trouble is adding multiple classes to a table, as it keeps replacing every space with an "-" and makes it therefore impossible to add multiple classes (like for instance "table table-striped" gets saved as "table-table-striped". I suppose that's the sanitizer function. Have you got any idea for a workaround?

    Hello @torf,

    I pushed an update a minute ago. Please have a look, if the issue is resolved.
    Happy new year.
     

    • Like 1
  4. Hey everybody,

    I just uploaded a small textformatter module for wrapping tables with a div container in order to display responsive HTML tables in the frontend.

     

    TextformatterWrapTable

    Processwire wrap table module is a textformatter module for processwire CMS/CMF. It is wrapping markup tables with a div container.
    wrapping tables with div container simplifies the process of displaying responsive tables in the frontend.

    The css classes for the wrapper and the table are configurable.
    .table-responsive / .table

    by default the module produces the following markup:

    <div class="table-responsive">
    <table class="table">
    ...
    </table>
    </div>

     

    Link to Repository
    https://github.com/pmichaelis/TextformatterWrapTable

     

    • Like 8
    • Thanks 2
  5. Hey,

    I searched the forum, but I couldn't find any post with a topic of the problem that I am facing with the module. 

    I setup multilingual menues nd have different roles which have the menu-builder permission. As soon as Editors save a Menu, the custom title translations of the menu are gone. Menu Item titles of the default language are editable as a non-admin user, but all other language titles are ignored / deleted on save.

    Are only admin users allowed to edit title translations?

    Thanks for a short hint on that.

  6. Hey,
     

    I keep getting errors when I try to visit the upgrades admin page.
    I thought it was a memory limit problem and increased the memory, but I still get the errors.
     

    /processwire/setup/upgrades/	
    Allowed memory size of 134217728 bytes exhausted (tried to allocate 4096 bytes) (Zeile 1266 in /var/www/htdocs/wire/core/WireHttp.php)

    Any hints? Never had problems with the upgrade module.

  7. 5 hours ago, thomasaull said:

    @pmichaelis If the error is thrown in line 131 it's likeley there is an error with the JWT Authorization. Maybe the Token you're submitting is not valid, maybe something else. Hard to tell with the little information you provided.

    @thomasaull It seems that the authorisation headers are not present.

    Added the following line to the htaccess:

    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    auth headers are stored in following variable

    $_SERVER['REDIRECT_HTTP_AUTHORIZATION'];

    Please don't ask why.

  8. Hey everyone,

    I did see, that other users were struggling with the problem, that there are no Markers displayed in the frontend, but I could not find any replies to that problem. 
    If I render a map, the coordinates are correct, but the marker icon is not displayed. It displays in the backend, but not in the frontend, also if if but the path to a custom image in the map options. Nothing. 
    Does anyone have the same problem?

    Thanks for any hints

  9. The jwt auth mechanism is producing errros on a live system.
    I allready looked for "Wrong number of segments", installed the module again, but the error is still there.  Any hints on that?

    DATUM/ZEIT BENUTZER URL TEXT
    vor 2 Minuten
    2019-03-29 13:22:58
    api /api/v1/items Error: Exception: Wrong number of segments (in /cms/site/modules/RestApi/Router.php line 131). File: /cms/index.php:64
  10. Hey Thomas,

    I had some issues yesterday with the jwt-authorization. On a local development server (vagrant, ubuntu, apache). The authorization headers were empty. Therefore the getAuthorizationHeader method in Router.php returned null and the token was not returned. I made a small modification to the method and it works for me. Perhaps it is not the cleanest way, but it's ok for now. Just to let you know.

     

    // apache
    if (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) {
    	foreach (apache_request_headers() as $key => $value) {
    		$headers[strtolower($key)] = $value;
    	}
    }
    else {
    	foreach ($_SERVER as $key => $value) {
    		$headers[strtolower($key)] = $value;
    	}
    }

     

  11. Hey,

    Thanks for that  module.

     

    in the module description it says:

     

    Authorization: JWT

    To use JWT-Auth you have to send a GET Request to http://yourhost/api/auth with two parameters, username and password. The API will create and return you the JWT-Token which you have to add as a header to every following request:

     

    Actually I think it has to be a POST Request. In the "DefaultRoutes" the Route is defined like this.
     

    ['POST', '', Auth::class, 'login', ['auth' => false]],

     

×
×
  • Create New...