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.
91
Features / Re: New revs
« on July 22nd, 2016, 12:56 PM »Edit:No not the problem that postarea breaks up.Quote from CerealGuy Do you have this problem on wedge.org too?
However this is still not looking good on Wedge.org.
Reply#8
92
Bug reports / [Behaviour] Keep post data on Login
« on July 21st, 2016, 11:57 PM »
Following problem occurs from time to time:
When I'm, trying to create a new post and during this the session expires, the content gets lost. I think that's true to all $_POST related stuff. $_GET stuff is fine because of the redirection after the login.
Idea: Put all $_POST data in a hidden form when the Login form is getting displayed and try to send that back to the original form/action. I will try to do that.
How is SMF doing this?
When I'm, trying to create a new post and during this the session expires, the content gets lost. I think that's true to all $_POST related stuff. $_GET stuff is fine because of the redirection after the login.
Idea: Put all $_POST data in a hidden form when the Login form is getting displayed and try to send that back to the original form/action. I will try to do that.
How is SMF doing this?
93
Features / Re: New revs
« on July 21st, 2016, 11:30 PM »
@Freñiçh did you try using the file from github and not modifying it on your own?
The CSS preprocessing of wedge is quite resistant to failure, but you never know? Can't reproduce it with Mozilla Firefox 47.0.1. Do you have this problem on wedge.org too?
And did you try using a different browser?

@Nao can we split this off-topic discussion? Or is it fine that the New revs topic is alive? :P
The CSS preprocessing of wedge is quite resistant to failure, but you never know? Can't reproduce it with Mozilla Firefox 47.0.1. Do you have this problem on wedge.org too?
And did you try using a different browser?

@Nao can we split this off-topic discussion? Or is it fine that the New revs topic is alive? :P
94
Archived fixes / Overflow Bug
« on July 17th, 2016, 01:35 PM »
Sometimes i see overflowing content.
Example:
i got this Error
Code: [Select]
Fix:
sections.css
Code: [Select]
Git Commit:
https://github.com/C3realGuy/wedge/commit/de8ca6bbefb117d75b812e750a6efa6a8d0b6964
Git Pull Request:
https://github.com/Wedge/wedge/pull/34
EDIT:
Fixed: https://github.com/Wedge/wedge/commit/d71cdbe9438a53354866493fd18e63f1a74d228e
Example:
i got this Error
Warning: mysqli_connect(): (28000/1045): Access denied for user 'Zeyad_Ahmed'@'10.2.1.20' (using password: YES) in /home/u289793038/public_html/gz/app/Class-DB.php on line 55
Access denied for user 'Zeyad_Ahmed'@'10.2.1.20' (using password: YES)
Fix:
sections.css
.postarea
width: 75%
Git Commit:
https://github.com/C3realGuy/wedge/commit/de8ca6bbefb117d75b812e750a6efa6a8d0b6964
Git Pull Request:
https://github.com/Wedge/wedge/pull/34
EDIT:
Fixed: https://github.com/Wedge/wedge/commit/d71cdbe9438a53354866493fd18e63f1a74d228e
95
Plugins / Re: how to add template block where I want it
« on May 20th, 2016, 01:19 AM »
You can use mods.xml for this type of stuff.
I did something similiar in my InviteMods plugin. See here:
https://github.com/C3realGuy/InviteMod/blob/master/invitemod/mods.xml
That's the interesting stuff:
Code: [Select]
Another (but maybe not recommendable way) is to use javascript and client side dom manipulation.
I did something similiar in my InviteMods plugin. See here:
https://github.com/C3realGuy/InviteMod/blob/master/invitemod/mods.xml
That's the interesting stuff:
<file name="Profile.template.php">
<operation>
<search position="after"><dd>' . $context['member']['last_login'] . '</dd>' : '', '</search>
<add><dt>'.$txt['im_pa_invited_by'].'</dt>
<dd>'.$context['invited_href'].'</dd>
</add>
</operation>
</file>
Another (but maybe not recommendable way) is to use javascript and client side dom manipulation.
96
Bug reports / [Critical?] ImageMagick exploit
« on May 4th, 2016, 12:57 PM »
Didn't test it yet, i'm using GD2 but people with imagemagick should have a look at their servers maybe.
https://www.imagemagick.org/discourse-server/viewtopic.php?t=29588
Workarounds(?!):
- use GD2
- add imagemagick policies/wait for fix
- disable avatars/file attachements
https://www.imagemagick.org/discourse-server/viewtopic.php?t=29588
Workarounds(?!):
- use GD2
- add imagemagick policies/wait for fix
- disable avatars/file attachements
97
Archived fixes / [AeMe] Re: The database value you're trying to insert does not exist: id_file
« on April 23rd, 2016, 01:33 PM »
Try to debug it, check what's the content of $id_file by inserting something like Code: [Select] before the query gets fired. And then check your error logs in the wedge acp. You should get some number(s). If you only get empty errors, there is something wrong with how the function gets executed, if you get a numer, there is something wrong with the query/db part.
log_error($id_file);98
Archived fixes / [AeMe] Re: The database value you're trying to insert does not exist: id_file
« on April 11th, 2016, 09:03 AM »Although the issue is so old. The bug is still. I could solve it for SMF and for Wedge.
SMF
Aeva-Subs.php (Version 2.10) line 3721change toCode: [Select] WHERE id_file = {int:id_file}',Code: [Select] WHERE id_file = id_file',
Wedge
Subs-Media.php line 3600change toCode: [Select] WHERE id_file = {int:id_file}',Code: [Select] WHERE id_file = id_file',
The reason behind this is that I think we have bigger chances that those fixes get merged into the main branch if we make as little work for Nao as possible and it would be easier to keep track of the bugs and its fixes/changes.
PS: I actually don't think that this fixes the real problem, because with replacing {int:id_file} the argument to the query doesn't get insert any more. So maybe you have no error any more, but maybe the query is now doing nothing any more too.
99
Bug reports / [Aeva] Re: Cache of Aeva-Sites
« on April 11th, 2016, 08:49 AM »The same is also with my board. But since installation.
100
Archived fixes / Re: Some bugs with allow_guestAccess
« on February 8th, 2016, 12:11 AM »But there's a code box overflow bug... Shoot ;)
(First post in this topic.)
width: 75%;101
Importing into Wedge / Re: SMF 2 to Wedge importer errors
« on February 8th, 2016, 12:10 AM »
Just install xampp or something similiar.
102
Importing into Wedge / Re: SMF 2 to Wedge importer errors
« on February 5th, 2016, 12:29 AM »
Try to convert it on you computer and just import the converted database on your webspace.
103
Archived fixes / Re: Some bugs with allow_guestAccess
« on February 5th, 2016, 12:27 AM »
Not for me, but those overflows happen often in firefox. In Chrome i never had one (except for the mobile version).
104
Test board / Width Test
« on January 9th, 2016, 04:48 PM »
Fünf junge Leute mieten ein Campmobil und begeben sich bewaffnet mit Kameras auf die Suche nach Amerikas aufregendster Geisterhausattraktion. Solche Geisterbahnen nicht unähnliche Spukhäuser schießen vor Halloween wie Pilze aus dem Boden der amerikanischen Provinz und locken vergnügungssüchtige Gruselfreunde in Scharen mit ihren zumeist von Laienschauspielern verkörperten Monstern und Slashern. Manchmal jedoch wird aus Spaß blutiger Ernst, und das müssen auch die fünf Amateurreporter am eigenen Leib erfahren.
Gruseliger Mummenschanz liegt im Herbst im Trend, und das nicht nur in Horrorfilmregalen, sondern auch in Amerika, wo hunderte sogenannter Haunted Attractions um Kunden buhlen.
https://youtube.com/watch?v=4CxXdv3a4yQ#
Gruseliger Mummenschanz liegt im Herbst im Trend, und das nicht nur in Horrorfilmregalen, sondern auch in Amerika, wo hunderte sogenannter Haunted Attractions um Kunden buhlen.
https://youtube.com/watch?v=4CxXdv3a4yQ#
105