Should be fixed in r1551
676 2008-03-08 18:11
Re: Search - issue with navigational links with SEF and wildcard character (16 replies, posted in PunBB 1.3 troubleshooting)
677 2008-03-08 18:04
Re: Search - issue with navigational links with SEF and wildcard character (16 replies, posted in PunBB 1.3 troubleshooting)
Hmm, we might actually have to change that, it seems that asterisks are a reserved character and need to be properly encoded.
678 2008-03-08 18:04
Re: Adding PMs plugin (13 replies, posted in PunBB 1.2 troubleshooting)
Where are you downloading your fresh copy from then?
679 2008-03-08 17:58
Re: Adding PMs plugin (13 replies, posted in PunBB 1.2 troubleshooting)
So, before you make the modification (when you're just using a clean version of include/functions.php) it works fine and after it doesn't?
680 2008-03-08 17:57
Re: Search - issue with navigational links with SEF and wildcard character (16 replies, posted in PunBB 1.3 troubleshooting)
That URL works absolutely fine for me on the dev forum.
And what "Access forbidden" message?
681 2008-03-08 17:47
Re: Search - issue with navigational links with SEF and wildcard character (16 replies, posted in PunBB 1.3 troubleshooting)
It's working fine for me using the revision I mentioned.
682 2008-03-08 17:26
Re: Adding PMs plugin (13 replies, posted in PunBB 1.2 troubleshooting)
I would start with a fresh copy of include/functions.php and work from there.
683 2008-03-08 16:46
Re: Feature Request for SEF URLs - "Folder Based (Fancy)" (9 replies, posted in PunBB 1.3 troubleshooting)
Fixed
684 2008-03-08 16:38
Re: Feature Request for SEF URLs - "Folder Based (Fancy)" (9 replies, posted in PunBB 1.3 troubleshooting)
intedinmamma: qubertman means that sef_friendly prefixes it with a -, even in the folder based scheme.
It is something we'll want to remove, so I'll look into it.
685 2008-03-08 16:37
Re: Search - issue with navigational links with SEF and wildcard character (16 replies, posted in PunBB 1.3 troubleshooting)
Fixed in 1548.
686 2008-03-08 16:31
Re: Search - issue with navigational links with SEF and wildcard character (16 replies, posted in PunBB 1.3 troubleshooting)
You need to be more clear. I had to re-read your post a few times before I realized that you were talking about wildcards in the author name.
687 2008-03-08 15:59
Re: Hook requests (151 replies, posted in PunBB 1.3 extensions)
Take a look at PunBB's array_insert function.
688 2008-03-08 15:59
Re: ATOM and RSS Problems in 1.3 Beta (3 replies, posted in PunBB 1.3 troubleshooting)
Fixed the $2 stuff. And the pid links are permalinks to a post, they're being used as they are intended to be used.
689 2008-03-08 14:36
Re: Hook requests (151 replies, posted in PunBB 1.3 extensions)
I believe that's because of the upper case B you're using in some of your examples.
690 2008-03-08 14:24
Re: Hook requests (151 replies, posted in PunBB 1.3 extensions)
Well, I don't know what problem you're having: what happens when you install an extension with that hook?
691 2008-03-08 14:01
Re: Hook requests (151 replies, posted in PunBB 1.3 extensions)
That's to modify pun_rewrite_rules, not pun_url.
692 2008-03-08 13:48
Re: Hook requests (151 replies, posted in PunBB 1.3 extensions)
Herbivor: That's the purpose of co_common
693 2008-03-08 13:48
Re: PunBB 1.2.17 (69 replies, posted in News)
...which is something the MegaPun developers can deal with, not us. We're not familiar with the modification, whereas they are. Therefore, if something with it breaks, they're the ones who need to figure out why.
694 2008-03-08 12:59
Re: If Accept Rules then access to write (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Only allow registered users to write then? Then they have to accept the rules before registering.
695 2008-03-08 12:59
Re: PunBB 1.2.17 (69 replies, posted in News)
Talk to the MegaPun people, that's not a PunBB problem
696 2008-03-08 12:58
Re: Adding to query (question) (7 replies, posted in PunBB 1.3 troubleshooting)
$query['JOINS'][] = array(
'INNER JOIN' => 'forums AS f',
'ON' => 'c.id=f.cat_id'
);
For example
697 2008-03-08 03:50
Re: error when importing into mysql CHARSET (14 replies, posted in PunBB 1.2 troubleshooting)
http://www.gnu.org/software/libiconv/
And I would suggest not using phpMyAdmin for the backup, I would use the DB Management plugin.
And if you would send me the entire dump, I should be able to convert it for you.
698 2008-03-08 03:45
Re: error when importing into mysql CHARSET (14 replies, posted in PunBB 1.2 troubleshooting)
My guess is that phpMyAdmin exported the characters as UTF-8 rather than latin1, which is causing the mixture of collations.
You'll need to use a tool like iconv to convert the file to latin1/iso-8859-1.
699 2008-03-08 03:35
Re: error when importing into mysql CHARSET (14 replies, posted in PunBB 1.2 troubleshooting)
Did you try importing it with the character set set via phpMyAdmin to utf8?
700 2008-03-08 03:23
Re: error when importing into mysql CHARSET (14 replies, posted in PunBB 1.2 troubleshooting)
When importing into phpMyAdmin, does it give you an option to pick the encoding? If so, pick latin1 and see if it works. If not, try picking utf8.
Like I said, exporting/importing can be tricky.