How to remove id from
-
-
-
Until Usernames are not unique its not possible to do that.
I just implemented a way to do that for Boards.
/board/{title} -
Sick^ Thanks for respond, could i try that on my forum /board/{title} ? or should i download new version that you'll update on woltlab? And if i can do it now, where to edit? Threadpage? or
-
-
Yes you already can use it.
There is in the current version just a bug with german Umlauts.
The controller for the Board is wbb\page\BoardPage -
Yeah seems like its working, but...Cannot be opened,There was a problem with one board aswell named "DSDT/SSDT" and i renamed it to "DSDT" and now its works.. any way to keep the current name of boards?Fixed it by renaming some of the topics.. anyway next question is it possible to remove id's from this
to make it look like http://hackintosh.rs/thread/google-advertising-adsense/
-
<p>No its not possible because Thread Titles are not unique.</p>
-
-
Until Usernames are not unique its not possible to do that.
I just implemented a way to do that for Boards.
/board/{title}Then i dont understand this part.. you told that Untill usernames are not unique.. how come that they are not unique? lets say that if you are /1-Sick^/ "1" <- represents your id that is unique right? i can understand for threads cause they get deleted and that kind of stuff.. hm.. maybe im wrong.. but this whole concenpt doesnt make a sense to me..
-
Ok so i'll try to explain a bit deeper.
Every Object (Board, Thread, User) has an entry in the database.
To Identify these Object its common to use Numeric values which are unique.
Otherwise you can have multiple objects and don't know which one is the right to show.
For Boards i implemented a checkup.
So i go through all boards and compare the requested name with the name of the board.
There this can be done because boards are not so much and its the admins fault when he creates a board with the same name.
For Threads and users there is a other case.
These Objects are generated by other People which won't take care of duplicated Names.
So we need the Numeric Identifier to make these objects unique.
The way i can do it with the boards will not work because you may have 100 Boards but 100000 Threads.
So it can take per request 1000 times longer to find the right object.
As you might see we need the ID's until we can't control that the names / titles are unique.I hope thats more clear for you now
Regards Sick^
-
Sorry sick^ got one question more, didnt want to start new topic (Do bother your moderators and such)
Anyway is this possible and how?:
FROM:
http://hackintosh.rs/thread/191-zanimljiva-geografija/
TO:
hackintosh.rs/<Something that you want>/191-zanimljiva-geografija/
EXAMPLE:
http://hackintosh.rs/t/191-zanimljiva-geografija/
Appreciate your time! Best addon in the world SEO!
-
-
For sure its possible
Controller: wbb\page\ThreadPage
Schema: /<anything u want>/{id}-{title}In the Parameter list below make a tick on Title - Optional.
Regards Sick^
-
Thanks man, like i said.. you are the best.. and this is the one of most-needed addon for wbb4 if you ask me.
Anyway, i've managed ot do that now it looks like
hackintosh.rs/t/obavestenja
I'm telling you man, if you manage somehow with your wizard spells of code to make
OLD:
hackintosh.rs/t/174-poeni-umesto-postova-apple-sistemNEW:
hackintosh.rs/t/poeni-umesto-postova-apple-sistemYou will won the plugin-master-creator degree
-
Ah now i got what u want.
Even the Thread title tell meI already told you that its not possible to remove the Thread ID because the Thread titles are not unique.
If you Remove the ID your Forum will become really slow because on each request the plugin need to check every thread for a matching title.
I will not implement this.Sry dude
-