Jump to content

sekru

Members
  • Posts

    28
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Germany

Recent Profile Visitors

1,335 profile views

sekru's Achievements

Jr. Member

Jr. Member (3/6)

10

Reputation

  1. Font Awesome no longer provides the metadata as a file. Instead, they have set up a Graph QL API, which can be used to query all information about the icons. Even a text search (like on the FA page) is possible. So your search will work perfectly again. All info about this can be found on the blog: https://blog.fontawesome.com/font-awesome-icon-metadata/ You can also query old versions. So it should be possible that your project still works. The used version has to be configured of course. But you could add some extensions in the module settings: - Free and Pro Version - possibly own kit version - Selection of styles Maybe I should fork RockAwesome better? By the way, I use Font Awesome in many web projects and RockAwesome is a great help!
  2. Hello Bernhard, today officially FontAwesome 6.0.0 came out. The metadata that RockAwesome is built on is no longer included. I have integrated the new GraphQL interface locally into the module to search for icons. Would you be interested in adding it directly to RockAwesome? The interface is accessed directly from JS. ciao Sebastian
  3. Now I am affected by the problem again. When I leave my ISP through a VPN tunnel, everything works (with slightly reduced speed). Either my ISP uses a different backbone from Europe to America, or the DoS protection blocks the IP address range I am in.One argument against the DoS protection is that the outage seems to depend on the time of day.
  4. Hello, I have a problem with the ProcessWire website. Access is extremely slow from my Internet connection. No page on processwire.com loads normally. The forum or downloads are unusable. A new dial-up with a new IP does not bring any improvement. Also my iPhone is affected. But as soon as I leave the WLAN here and surf over mobile data, everything is blazing fast. My internet connection is otherwise very fast (170 Mbit down, 39 Mbit up, 8ms ping). Provider 1&1 in Germany. Am I blocked by the DoS protection? Greetings Sebastian
  5. I don't have a solution yet. Looks like it has something to do with Markdown. For whatever reason. I hope that @ryan can fix it.
  6. $value->of(false); echo '<p>'.$sanitizer->truncate( $value->body , 300, array('type'=>'sentence', 'keepFormatTags'=>true)).'</p>';
  7. Hello, is this a bug? If i use $santizer->truncate to shorten a CKEditor-Text, the URL is left in the text (as you can see at the image). Hope, someone can help me. Sebastian
  8. This line helped me: $m->save('gruppenzuordnung'); Tank you, guys!
  9. Hello, it ist frustrating: if I remove an item of a repeater with help of the API, all images in my page get lost. I have absolutly no idea, why. $gruppe = (int) $input->get->gruppe; $mitarbeiter = (int) $input->get->mitarbeiter; $m = $pages->get($mitarbeiter); $m->of(false); $delGruppe = $m->gruppenzuordnung->get("gruppe=".$gruppe); $m->gruppenzuordnung->remove($delGruppe); // If I remove this line, no images are lost $m->save(); The lost image is in $m->image. It has nothing to do with the repeater $m->gruppenzuordnung. They remain on the server as file, but not in the database. Has any one an idea? thx, sekru
  10. Hello, i'm not familiar with GitHup, so i post it here. I've noticed a strange bug: I have a RepeaterMatrix and added a type called "gallery" with a field called "images2". I put some images in there – ok. To show the number of images in die Item header, I add this in the RepeaterMatrix: {matrix_label} [• {images2.count} Bilder]. Now I want to add some more pictures, but these pictures don't appear! If I remove the "{images2.count}" from Item header, the "lost" pictures suddenly appear. If I add it again, they're gone. Is'nt it crazy? It took me some time, to find the connection between the problem and the counter in the item header... I'm using the latest dev-Version 3.0.32. If it is a bug, can someone add it on GitHub? Thanks, sekru
  11. Cache and cookies are not the problem. Same error ( ERR_EMPTY_RESPONSE ) in Google Chrome. It took only half of a second till the connection is "interrupted". I tested it with PHP 5.6 (modul), PHP 5.6 (CGI) and PHP 7 (CGI). It's always the same.
  12. PHP 5.6 is the same problem. I tested on the same server. I guess, it's a problem on this server. But I have no idea to solve it.
  13. Hello, I have a problem on my production web server (All inkl, Germany). I can not save pages with a Repeater and an Image inside there. Firefox says: "Error: Connection interrupted". Nothing in the ProcessWire-Logs. The Problem only appers, if the Repeater-Field ist loaded/opened. Otherwise everything is ok. Has anybody an idea, how I can narrow down the problem? PW 3.0.22 (and 17), PHP 7.0.6 Thanks sekru
×
×
  • Create New...