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
107
Features / Re: Simpleportal or equivalent Portal system
« on December 6th, 2015, 06:41 PM »
You would have to code a portal plugin on your own, there is no one finished yet. Depending on your needings, this is more or less easy.
108
Features / Re: About Sphinx search engine
« on December 6th, 2015, 06:36 PM »
Without a doubt you can port this mod to wedge, it's just not done yet :D.
109
Support / Re: Aver Media 2.1 disappointment
« on November 9th, 2015, 04:38 PM »
Never used Aeva Media on SMF, but it's a known problem and there's a easy workaround.
Have a look here:
http://wedge.org/pub/support/8783/error-on-aeva-2-10-installation/
110
Off-topic / Re: How did I miss that..?
« on September 14th, 2015, 01:15 AM »
Umm... don't know exactly what to say except of THANKS A LOT!
Didn't even know that there's something like a private board :D
111
Bug reports / [Aeva] Re: Non-SSL on SSL Connection
« on September 13th, 2015, 10:46 PM »
For node.js there is only one bigger forum software, and that's nodebb (which I totally don't like, it's to "modern").
So yeah maybe you had better switched to node.js :lol:.

Umm when we're already in this topic, maybe we get ON topic again ^^
Is it possible that the short post previews on Notifications don't go through that <URL>/<PROT> replacement stuff?
If you don't know exactly, I will have a look on it...

112
Support / Re: How best to involve the Cookie Bar
« on September 13th, 2015, 10:39 PM »
Quote from Nao on September 13th, 2015, 03:04 PM
It can all be done with non-destructive code (i.e., code that you add to a custom file in the skins folder, and that will not be rewritten everytime you update your forum files.)

However, I'd be curious to know why this is 'required' for you..?
I know that Europe in general has a directive about something like that, but it's more of a strong recommendation than a law or anything, AFAIK. I certainly never received an e-mail from anyone telling me about this. :P
Germany is quite strict with this (in general with all laws).
113
Support / Re: Help installing Wedge
« on September 12th, 2015, 12:32 AM »
Normally LAMP should be enough, have a look into your error files, they should give you a hint about what's wrong.
114
Support / Re: How best to involve the Cookie Bar
« on September 10th, 2015, 06:45 PM »
You can insert you own javascript code with add_js.
Code: [Select]
add_js('window.cookieconsent_options = {"message": "This forum uses cookies to offer you a better browsing experience please let it out this small and very dangerous files can you and your PC Make no harm Learn more in the privacy policy... by me "," Dismiss. ":" Allow "," Learn More ":" More Info "," link ":" http://internetblogger.de/forum/datenschutz.php "," theme "," dark-floating "};');

And the url to the cookieconsent.latest.min.js you can add like this:
Code: [Select]
add_js_file("// s3.amazonaws.com/cc.silktide.com/cookieconsent.latest.min.js", true);
115
Support / Re: Create a static page for Imprint
« on September 10th, 2015, 03:16 PM »
Quote from Alex L on September 10th, 2015, 03:09 PM
Yes, thank you, it works. You've done all the work :)

This custom.php so I can create additional sites such as the Privacy Policy and About-Me page. That's very good.
The only problem is the integration into the menu. You need to edit the source file, or write a small plugin. If you would write a plugin for this, you could also get rid of the SSI stuff (which is nice, no question but ?action=impressum is even nicer :D). And you wouldn't  need to edit the source after each update ;).
116
Support / Re: Create a static page for Imprint
« on September 10th, 2015, 02:55 PM »
This is working, only problem is, that i don't know how to set the page title yet.
Setting $context['page_title'] or $context['page_title_html_safe'] should work but doesn't...

Code: [Select]
<?php

function template_custom_main(){
  echo
'
                        <span class="clear upperframe"><span></span></span>
                        <div class="roundframe"><div class="innerframe">'
;
                        echo
'
                        <div class="cat_bar">
                        <h3 class="catbg">Hello everyone</h3>
                        </div>
                    <p>This is a custom page example. pretty cool, huh.</p>'
;
                        echo
'
                   </div></div>
                  <span class="lowerframe"><span></span></span>'
;
}
//Path to SSI.php
require(dirname(__FILE__) . '/core/SSI.php');

[
s]$context['page_title'] = "Custom Page";[/s]

//Load (template_)custom_main
wetem::load('custom_main');

//Display theme stuff
wetem::render();

EDIT: Got it working:

Code: [Select]
<?php

function template_custom_main(){
  echo
'
                        <span class="clear upperframe"><span></span></span>
                        <div class="roundframe"><div class="innerframe">'
;
                        echo
'
                        <div class="cat_bar">
                        <h3 class="catbg">Hello everyone</h3>
                        </div>
                    <p>This is a custom page example. pretty cool, huh.</p>'
;
                        echo
'
                   </div></div>
                  <span class="lowerframe"><span></span></span>'
;
}
//Path to SSI.php
require(dirname(__FILE__) . '/core/SSI.php');

//Load (template_)custom_main
wetem::load('custom_main');

//Page title. This will appear in the browser
$context['page_title_html_safe'] = "Custom Page";

//Display theme stuff
wetem::render();
117
Support / Re: Create a static page for Imprint
« on September 10th, 2015, 12:28 PM »
The Problem is that wedge uses a new (and better) template system. Try to remove the template_header() and template_footer() stuff.
I will try it on my own, there are more differnces than i thought first. But anyway give it a try :).
118
Support / Re: Unable to view themed format on new install of wedge
« on September 9th, 2015, 08:54 PM »
You didn't set the correct file permissions.
Change them and everything should work fine.
119
Support / Re: Unable to view themed format on new install of wedge
« on September 9th, 2015, 12:13 PM »
The url is not working for me.
Check your php errors and have a look into your browsers developement tools. There you should get a hint whats wrong. Or fix the url an let us get a view on it :D
120
Support / Re: Remove NoFollow attribute from the Wedge Forum
« on September 8th, 2015, 03:33 PM »
Easiest way would be to edit the source or write a plugin which does that for you (mods.xml). Never stumbled across an "on board" solution for this in wedge but I never needed this :D.