Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Wierd bug; can't create threads with just numbers/characters?
blizeH
✭✭
As you can see from the two '24' threads on this forum (1, 2) - really not sure what exactly is going on, but you can't see any of the content or even the ability to edit the thread/posts which is kinda weird. Just created a tester on this forum too and it seems to be working just fine here, yet not on my forum? Any idea what's up please chaps? It's not a huge issue but it'd be nice to have it fixed I guess, cheers! :-)
0
This discussion has been closed.
Comments
If so then delete that and download vanilla again and use the one that comes with that.
Mini: Maybe it's ideal to repackage the Friendly urls addon with the new htaccess file so this doesn't keep happening.
http://www.glosunit.co.uk/comments.php?DiscussionID=2659
http://www.glosunit.co.uk/comments.php?DiscussionID=2658
with this rule:
RewriteRule ^discussion/([0-9]+)/([0-9]+)/(.*/)$ comments.php?DiscussionID=$1&page=$2 [QSA,L]
"http://www.glosunit.co.uk/discussion/2658/24/#Item_6"
is translated into "http://www.glosunit.co.uk/comments.php?DiscussionID=2658&page=24#Item_6"
when you were expecting "http://www.glosunit.co.uk/comments.php?DiscussionID=2658 #Item_6"
You just need to replace "(.*)" by "(.+)" in these 2 rules:
RewriteRule ^discussion/([0-9]+)/([0-9]+)/(.*)$ comments.php?DiscussionID=$1&page=$2 [QSA,L] RewriteRule ^discussion/([0-9]+)/([0-9]+)/(.*)/$ comments.php?DiscussionID=$1&page=$2 [QSA,L]
Your .htaccess should look like this one.