composer.json
ist nicht richtig. Sie ist für die phpBB 3.2.x-Version. Da muss der Ersteller noch mal nach schauen. 
composer.json
ist nicht richtig. Sie ist für die phpBB 3.2.x-Version. Da muss der Ersteller noch mal nach schauen. KrachWumm hat geschrieben:Warum kann ich den Kalender 3.1_0.9.1 unter "Anpassen" - "Erweiterungen verwalten" nicht aktivieren ??
Der Ordner "calendar" liegt im "ext" Ordner.
Vers. 3.1.10
prosilver
HJW hat geschrieben:Der ordner „calendar“ muss in „ext/hjw“ liegen.
Melmac hat geschrieben:@menz01:
The problem you are facing seems to be related to most modern smartphones using High Density displays leading to the breakpoint being calculated internally in a different way.
In the code changes I provided you would need to setmax-width
to a value lower than half the display's width in pixels in the respective display mode, landscape or portrait.
In portrait mode your phone has a nominal resolution of 1.080px in width, so => 1.080px / 2 = 540px. Subtract 10px or so to be on the safe side and the value you will need to insert may not be exeeding 530px.
The adapted code as in viewtopic.php?f=149&t=233145&start=720#p1378853 then needs to be:
=> (2)=> (3)Code: Alles auswählen
@media only screen and (min-width: 550px), only screen and (min-device-width: 550px) { .weknr { margin: 20px -4px 0 -14px; } }
To be frank: does it really make any sense to have the regular monthly overview displayed in portrait mode? You then can see it but not use it in a meaningful way: you'd need a magnifier glass to be able to read the event entriesCode: Alles auswählen
@media only screen and (max-width: 530px), only screen and (max-device-width: 530px) {
![]()
Why not turn the phone sideways into landscape mode when viewing the monthly overview page? In this case you wouldn't even need to change the code as originally provided with this extension: as long as your phone's resolution in width is beyond 1.600px (backward calculation: 800px * 2 = 1.600px for the breakpoint) the overview will be shown in the desired way. Below this the usability of the displayed overview will be negated anyways
->superman hat geschrieben:Irgendwelches Tips?
superman hat geschrieben:More information about this error may be available in the server error log.
Hast Du bereits in die Fehlerprotokolle des Servers geschaut, ob es hierzu Einträge gibt?superman hat geschrieben:More information about this error may be available in the server error log.