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.
1742
Importing into Wedge / Re: Importer tool
« on January 29th, 2014, 10:47 AM »
For instance, attachments/p2 in my source folder is trying to be copied to attachments/p2 in the new forum, and it gives me an error message saying it doesn't exist.
I've given up on this, and committed my current work (i.e. the MySQLi conversion for Lorenzo), but feel free to give it another try. In the meantime, all I can say is: it looks like the new version is working. Phew... ;)
I've given up on this, and committed my current work (i.e. the MySQLi conversion for Lorenzo), but feel free to give it another try. In the meantime, all I can say is: it looks like the new version is working. Phew... ;)
1743
Importing into Wedge / Re: Importer tool
« on January 29th, 2014, 10:17 AM »
Okay, I think I'm done with the mysqli upgrade...
I'm now fighting with custom attachment folders, or something, which Pandos added support for. Unfortunately, he forgot to create said folders... :P
I'm now fighting with custom attachment folders, or something, which Pandos added support for. Unfortunately, he forgot to create said folders... :P
1744
Support / Re: No rank stars
« on January 28th, 2014, 11:31 PM »
I'm guessing this is an importer problem.... Right?
TE, what do you reckon? Indeed Wedge changed star.gif into rank.gif so that it's semantically closer to the truth.
TE, what do you reckon? Indeed Wedge changed star.gif into rank.gif so that it's semantically closer to the truth.
1745
Off-topic / Re: Just want say
« on January 28th, 2014, 11:29 PM »
Thanks!
I can't compare with Bloc when it comes to design, but I'm pretty proud of Wedge on everything else. Still not enough, though, even after 3 years of work, I can spend at least another 3 just on improving it!
I can't compare with Bloc when it comes to design, but I'm pretty proud of Wedge on everything else. Still not enough, though, even after 3 years of work, I can spend at least another 3 just on improving it!
1746
Features / Language revs
« on January 28th, 2014, 11:22 PM »
[Commit revision 5284ac7]
Author: Nao (Signed-off)
Date: Tue, 28 Jan 2014 23:10:03 +0100
Stats: 2 files changed; +2 (insertions), -2 (deletions)
Date: Tue, 28 Jan 2014 23:10:03 +0100
Stats: 2 files changed; +2 (insertions), -2 (deletions)
- Fix for the installer. (Install.*.php)
1747
Archived fixes / Re: Issues with CDN's
« on January 28th, 2014, 07:01 PM »
- Attachments not showing up
It looks like those resources are being served out of the reference domain
with a "Content-Encoding: none" header. This causes some problems with decoding the response (confirmed by Google).
But this can be easily fixed.
1748
Archived fixes / Re: Issues with CDN's
« on January 28th, 2014, 06:59 PM »
Well, I got started on it earlier today, and then got pissed at how annoying it is to convert... You know, some conversions are no-brainers (just add an 'i'), others require switching params... Meh!!
I'll probably finish that tomorrow.
I'll probably finish that tomorrow.
1749
Plugins / Re: Plugin request - Join date and location in posts
« on January 28th, 2014, 06:59 PM »I just tested it and it worked like a charm for Location.
(Well, I wouldn't have posted the code if I hadn't already tested it on my local site, but at least you've proven that it's easy to do for anyone else, too!)
I need to learn more about templates in Wedge, but this is a good start. I will try to make my own for join date or member since info.
1750
Features / Re: New revs
« on January 28th, 2014, 05:31 PM »
[Commit revision 176edca]
Author: Nao
Date: Tue, 28 Jan 2014 13:14:11 +0100
Stats: 2 files changed; +3 (insertions), -5 (deletions)
[Commit revision 915a2c4]
Author: Nao
Date: Tue, 28 Jan 2014 13:15:09 +0100
Stats: 1 files changed; +1 (insertion), -1 (deletion)
Date: Tue, 28 Jan 2014 13:14:11 +0100
Stats: 2 files changed; +3 (insertions), -5 (deletions)
- Incorrect smiley upload path. (ManageSmileys.php)
- Unneeded globals. (ManageSmileys.php, OriginalFiles.php)
[Commit revision 915a2c4]
Date: Tue, 28 Jan 2014 13:15:09 +0100
Stats: 1 files changed; +1 (insertion), -1 (deletion)
- One of the captchas was still using the older font. (captcha-recomposeanim_shadow.php)
1751
Plugins / Re: Plugin request - Join date and location in posts
« on January 28th, 2014, 04:59 PM »
Just a like isn't gonna cut it... Make sure to keep me posted on this. :whistle:
More fields can be added this way, but if they're not in $msg['member'], you'll have to add them manually through some plugin or ask me to do it in the main codebase.
More fields can be added this way, but if they're not in $msg['member'], you'll have to add them manually through some plugin or ask me to do it in the main codebase.
1752
Plugins / Re: Plugin request - Join date and location in posts
« on January 28th, 2014, 04:51 PM »
I'm a bit surprised; I *thought* that basic fields like Location were configurable. It turns out that you have to create a new field indeed, at which point you can determine if it should appear in posts or not.
I can probably write something that will let you choose any fields to show in the user box. Still, I'm not into that kind of stuff... I thought Pete wrote something for it. Maybe not.
It's not too hard to add Location to your user box, but unfortunately, Join Date isn't in $msg['member'] to begin with.
For Location, I would create a custom.xml file in /core/skins (and all of the skins I want to modify), with:
Code: [Select]
This will add the Location field right before the custom fields list.
You can change the target template function, of course, and the location of your target function ('before', 'after', or 'override' if you want to completely remove the custom fields code.)
If you do things this way, you'll never have to worry about Wedge overwriting your changes when you update your files.
Well, as I said... Wedge templating is very powerful! :P
I can probably write something that will let you choose any fields to show in the user box. Still, I'm not into that kind of stuff... I thought Pete wrote something for it. Maybe not.
It's not too hard to add Location to your user box, but unfortunately, Join Date isn't in $msg['member'] to begin with.
For Location, I would create a custom.xml file in /core/skins (and all of the skins I want to modify), with:
<?xml version="1.0"?>
<template name="template_msg_author_cf" where="before">
global $msg, $txt;
if (!$msg['member']['is_guest'] && !empty($msg['member']['location']))
echo '
<li class="location">', $txt['location'], ': ', $msg['member']['location'], '</li>';
</template>
This will add the Location field right before the custom fields list.
You can change the target template function, of course, and the location of your target function ('before', 'after', or 'override' if you want to completely remove the custom fields code.)
If you do things this way, you'll never have to worry about Wedge overwriting your changes when you update your files.
Well, as I said... Wedge templating is very powerful! :P
1753
The Pub / Re: Wedge repo -- installation feedback
« on January 28th, 2014, 02:26 PM »
Read more docs. There are multiple solutions.
I won't commit to a 'fix' because this feature is only temp.
I won't commit to a 'fix' because this feature is only temp.
1754
The Pub / Re: Wedge repo -- installation feedback
« on January 28th, 2014, 01:38 PM »
Lol... It's a typical mass upload error that's been here since the SMF days. It's not related to Wedge at all.
Just search for Aeva Media error 2038 on Google. :P
To be more specific, most of these 2038's can be fixed by adding a crossdomain.xml file to your forum's root, with this content:
Code: [Select]
Replace myforum with your actual URL, of course.
It might be another problem, but it's always about domains and subdomains, to my knowledge.
Rewriting mass upload to use Ajax is one of my next projects. But not a very priority, I'm afraid.
Just search for Aeva Media error 2038 on Google. :P
Posted: January 28th, 2014, 01:34 PM
To be more specific, most of these 2038's can be fixed by adding a crossdomain.xml file to your forum's root, with this content:
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*.myforum.com" />
<allow-access-from domain="myforum.com" />
</cross-domain-policy>Replace myforum with your actual URL, of course.
It might be another problem, but it's always about domains and subdomains, to my knowledge.
Rewriting mass upload to use Ajax is one of my next projects. But not a very priority, I'm afraid.
1755
Archived fixes / Re : follow_me() bug, shows up from time to time.
« on January 28th, 2014, 01:31 PM »
I'm definitely not experiencing these. :-/ (And I'm in Firefox 27. Which uses the same codepath.)