Ip logging in many table too short for IPv6
- Status
- Closed
- Subject
- Ip logging in many table too short for IPv6
- Version
- 6.x
- Category
- Feature request
- Less than 30-minutes fix
- Feature
- Comment
Poll
Tags
Wiki Structure (book & table of content) - Resolution status
- Fixed or Solved
- Submitted by
- canelli
- Lastmod by
- Marc Laporte
- Rating
- Description
In tables
tiki_comments, tiki_history, tiki_pages, tiki_tags tiki_user_voting
the column IP is too short (varchar 15) for IPv6 loggingIn tables
tiki_actionlog, tiki_download, tiki_logs the column IP is very big (too big ?) varing from 39 to 200 char . In tiki_download the IP cloumn is in UPPERCASE (may be problem with some Mysql installation)In tables
tiki_banning
the IP is split in three columns . so we can't bann an IPv6- Solution
for tiki_comment, tiki_history, tiki_pages, tiki_tags tiki_user_voting
use the following sql to enlarge the ip columnALTER TABLE `tiki_comments` CHANGE `user_ip` `user_ip` VARCHAR( 21 ) DEFAULT NULL ;
ALTER TABLE `tiki_history` CHANGE `ip` `ip` VARCHAR( 21 ) DEFAULT NULL ;
ALTER TABLE `tiki_pages` CHANGE `ip` `ip` VARCHAR( 21 ) DEFAULT NULL ;
ALTER TABLE `tiki_tags` CHANGE `ip` `ip` VARCHAR( 21 ) DEFAULT NULL ;
ALTER TABLE `tiki_user_votings` CHANGE `ip` `ip` VARCHAR( 21 ) DEFAULT NULL ;- Importance
- 9 high
- Easy to solve?
- 10 easy
- Priority
- 90
- Demonstrate Bug on Tiki 19+
-
This bug has been demonstrated on show2.tiki.org
Please demonstrate your bug on show2.tiki.org
Show.tiki.org is not configured properlyThe public/private keys configured to connect to show2.tiki.org were not accepted. Please make sure you are using RSA keys. Thanks.
- Demonstrate Bug (older Tiki versions)
-
This bug has been demonstrated on show.tikiwiki.org
Please demonstrate your bug on show.tikiwiki.org
Show.tiki.org is not configured properlyThe public/private keys configured to connect to show.tikiwiki.org were not accepted. Please make sure you are using RSA keys. Thanks.
- Ticket ID
- 3904
- Created
- Monday 30 May, 2011 10:14:39 UTC
by canelli - LastModif
- Friday 10 August, 2012 19:15:02 UTC