Show Posts

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.

Messages - CerealGuy
121
Support / Re: Create a static page for Imprint
« on September 8th, 2015, 01:28 PM »
Should be possible with SSI.php, but I never did that. Maybe have a look how you can do it with SMF.
http://www.simplemachines.org/community/index.php?topic=390247.0

I think the main thing should be the same but maybe some variables changed...
Try it and if you get some problems, I will try to help you.
122
Support / Re: Recent Forum Topics in Board Index
« on September 6th, 2015, 10:32 PM »
Über Allgemeine Einstellungen -> Startseite kannst du das ändern.
123
Support / Re: Is there the blog for Wedge
« on September 6th, 2015, 10:31 PM »
Das kannst bei einer Forum Kategorie den Typ ändern.
124
Archived fixes / [Cookies] httponly not correctly set
« on September 4th, 2015, 10:54 PM »
Wedge already wants to do that (setting httponly) but it misses some true arguments on setcookie().
Httponly basically forbids the browser/js to access document.cookies which prevents bad exploitation of xss (otherwise the cookie could get stolen).
https://www.owasp.org/index.php/HttpOnly

https://github.com/C3realGuy/wedge/commit/71a066380d1301a82c95cc5144039edceca98c9e
125
Bug reports / [Aeva] Re: Non-SSL on SSL Connection
« on September 4th, 2015, 10:46 PM »
The preprocessor is nice, really like it. Had a look at node.js the last days, and felt quite familiar with stylus and the idea of a css preprocessor. Maybe some wedge.js would be the shit and get the attention it would have deserved.

Anyways i created a pull request with a working solution, thats all i can do. If you have a better idea, any critics i will listen up and try to improve it.
126
Bug reports / [Aeva] Re: Non-SSL on SSL Connection
« on August 25th, 2015, 12:45 PM »
Here is another thing:
https://github.com/contao/core/issues/6511

It's possible to let the browser decide whether to use ssl or not. But IE8 does not support that. Maybe when wedge drops support for IE8 we could get rid of that "workaround".
127
Support / [Aeva] Re: Need help implementing Soundcloud
« on August 11th, 2015, 07:52 PM »
Nope didn't get it working...
Problem is that Aeva isn't to well documented :D Debugging is also not really easy.
Perhaps @Nao has some tips for us :D
128
Plugins / Re: Documentation for plugin authors
« on July 24th, 2015, 12:18 PM »
Quote from Sabre™ on July 23rd, 2015, 05:38 AM
The first few pages of this thread, although quite aged, were Very informative. :+1:
Thank You for this info, I'm trying to find more of what I don't yet know I need :blink:
I'm not 100% sure, but I think what is missing here is the mods.xml part. There's not much you need to know about, if I remember correctly it's working the same like in SMF (i never did a real plugin/mod for smf so i don't know).
If you need some help, just ask, I'm using wedge's plugin system since months and it's awesome ;).
129
Bug reports / [Aeva] Re: Non-SSL on SSL Connection
« on July 15th, 2015, 03:51 PM »
https://github.com/C3realGuy/wedge/tree/dev_ssl

Works for youtube, on every other site you simply have to replace http:// with <PROT> if the site supports ssl.
130
Bug reports / [Security] BBCode in SQL Database
« on July 15th, 2015, 03:00 PM »
Why are the default bbcodes in the sql table {prefix}_bbcode? Wouldn't it be better to have those in the php code?
Also it's maybe a security issue to eval the validate_func from the sql database.
131
Quote from steveyos on June 27th, 2015, 12:35 AM
I decided I'm gonna wait until we can just install internet software like .exe's you can delete this thread
:lol:
132
More details about those errors would be useful.

EDIT: Aaand why do you edit your post? Now it has less information than before :D
133
Support / Re: Suche eine german language
« on June 19th, 2015, 02:20 PM »
Du musst aus dem languages repo den ordner german nach core/languages in deiner wedge installation kopieren. Dann kannste die Sprache in dein einstellungen umändern.
134
Bug reports / [Aeva] Re: Non-SSL on SSL Connection
« on June 13th, 2015, 10:33 AM »
Only started TW3 some days ago, it's fun but i'm not (anymore) a video gamer. But it was the first game where i enjoyed the dialogues and short sequences. I like it but i won't complete it. Not because of the game, i just can't pay attention to a game this long :D

Will try to make my idea on this to some code in the next days.
135
Bug reports / Re: Shorten Subjects in Stats
« on June 11th, 2015, 11:43 PM »
Pulling this one out again, but the fix wasn't the best thing to do.
Better would be to fix this thing via css.
Code: [Select]
dl.stats dt {
  clear: both;
  float: left;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 50%;
  height: 1.2em;
  white-space: nowrap;
}
But this needs an additional class for stats with diagrams. Will create a branch on github.

https://github.com/C3realGuy/wedge/tree/dev_statistics