This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
76
Support / Re: Class-DB changes?
« on September 23rd, 2016, 12:10 PM »
I don't think that I used that function ever, seems to be a more internal used function. But we have no idea what @Freñiçh is doing ^^
77
Support / Re: Class-DB changes?
« on September 23rd, 2016, 10:34 AM »No i do not have made any custom changes.Quote from CerealGuy on September 22nd, 2016, 06:30 PM @Freñiçh did you do any custom changes to those files on your own?Yeah that comment is known by meQuote from CerealGuy on September 22nd, 2016, 06:30 PM This is the commit which most likely makes trouble for you. I didn't roll it out on my installs, no time in the moment.
https://github.com/Wedge/wedge/commit/14c4ea60a02c04787834ad73ccaa86e793b3cc18
Most changes are just replacing '$db_string' with '$query'. This change should not do any trouble, but who nows?
The next thing is renaming 'query_get' to just 'get'.
This can be bad, normally there should be a 'depreacated dummy function' for this, maybe some plugins are using this function and now don't work anymore.
What really makes me wonder is that you don't get any errors. Can't believe that you just can't connect to your *sql server and that's it. The changes are on the Class-DB file, but not in the connection parts.
78
Yeah... On a daily basis, I think it's easier to circumvent the naggers than adapt to the peculiarities of Linux.
Stick to the tool/os which gets shit done best for you. That's what matters :lol:
79
Support / Re: I want a wedge support 5.2 PHP IS it Possible
« on September 22nd, 2016, 06:32 PM »
Why do you want support for an old php version? XY Problem?
http://mywiki.wooledge.org/XyProblem
So, what do you REALLY want to do? :D
http://mywiki.wooledge.org/XyProblem
So, what do you REALLY want to do? :D
80
Support / Re: Class-DB changes?
« on September 22nd, 2016, 06:30 PM »
@Freñiçh did you do any custom changes to those files on your own?
This is the commit which most likely makes trouble for you. I didn't roll it out on my installs, no time in the moment.
https://github.com/Wedge/wedge/commit/14c4ea60a02c04787834ad73ccaa86e793b3cc18
This is the commit which most likely makes trouble for you. I didn't roll it out on my installs, no time in the moment.
https://github.com/Wedge/wedge/commit/14c4ea60a02c04787834ad73ccaa86e793b3cc18
81
Features: Theming / Re: Skins
« on September 4th, 2016, 02:27 PM »Do you have any additional skins readily available for download?
Without being in the know regarding how to code skins I'm/we're pretty much stuck with the default 3-4 skins, hence the question.
Otherwise, a quick guide how to change colours would also do just fine :)
82
The Pub / Re: Donators group showing up on Website Credits page
« on August 27th, 2016, 01:54 PM »
You need to fill $context['site_credits']['donations'] with users in Credits.php. Guess you didn't do that already?
83
Archived fixes / Re: Overflow Bug
« on August 25th, 2016, 11:36 AM ».postarea
@if $can_flex
display: flex
flex-direction: column
@else
display: table-cell
@endif
@if firefox // firefox needs special treatment
@if $can_flex
flex: 1 0 49em
@else
width: 78%
@endif
min-width: 49em
vertical-align: top
@else
width: 0
@if $can_flex
flex: 1 0 1em
@else
position: relative // Needed for quick-edit in IE 6-8.
@endif
@endif
padding: 0 15px
/* Soft-merged posts shouldn't have a background. */
https://github.com/C3realGuy/wedge/commit/7e9ffb61f1a32ea85d047699b7b62ee578933d93
I had to rebase the dev branch to be on head with the master/upstream but now I can't create a pull request on that branch any more :lol: Git is a love/hate relationship.
84
Archived fixes / Re: Overflow Bug
« on August 24th, 2016, 12:16 PM »
Give this a try:
Code: [Select]
EDIT:
This is the best i could figure out yet. Zoom in + Zoom out works quite good in both firefox + chrome.
Code: [Select]
For sure this needs mobile and browser specific adjusting...
.postarea
@if $can_flex
flex: 1 0 0
@else
display: table-cell
width: 78%
@endif
min-width: 9em
padding: 0 15px
vertical-align: top
EDIT:
This is the best i could figure out yet. Zoom in + Zoom out works quite good in both firefox + chrome.
.postarea
@if $can_flex
display: flex
flex-direction: column
flex: 1 0 49em
@else
display: table-cell
width: 78%
@endif
min-width: 49em
width: 0
padding: 0 15px
vertical-align: top
For sure this needs mobile and browser specific adjusting...
85
Archived fixes / Re: Overflow Bug
« on August 21st, 2016, 01:18 PM »
Ouh Middle Click? I just discovered another "middle click bug". Open a menu item in a new tab with middle click and the parent menu doesn't hover anymore. All other menus are working.
86
Archived fixes / Re: Overflow Bug
« on August 19th, 2016, 02:32 PM »
Didn't see any problems in Chromium, but what I saw just ago, this fix doesn't work with firefox. Firefox just completely ignores the width thing.
87
Bug reports / [Behaviour] Re: Keep post data on Login
« on August 12th, 2016, 01:50 PM »If you plan on putting $_POST/$_GET data in hidden inputs, remember that if done slightly wrong is a potential security risk, very similar to the one fixed two or three years ago for the admin login function.
88
Bug reports / [Behaviour] Re: Keep post data on Login
« on August 10th, 2016, 03:30 PM »
This works until your session expires. The bigger the length the smaller the chance of losing your stuff. Still this is something that bugs me, and should be done better (in my opinion).
89
Features / Re: New revs
« on July 24th, 2016, 10:33 PM »Firefox 47.0 Mozilla Firefox,and FireJail 47.0 both for Linux Mint (perhaps that's the problem ??)
changing width setting browser makes no difference
90
Features / Re: New revs
« on July 23rd, 2016, 01:20 AM »
Hmm which firefox version are you using exactly? What happens if you play around with the width setting of .postarea in your browser (with the dev tools). Try changing it to inherit or 75%.