Quote:
Originally Posted by beano33
I could really use this too. Can you tell us exactly what you did? Thanks!
|
To add an index on ip adresses in the post table, you can do it in a couple of ways.
1. If you have phpMyAdmin, just scroll and click on the post table, which will show the table's fields. Then on the ipaddress field, click the index button.
2. Or, from the admin panel MySQL tool, enter this query:
ALTER TABLE 'post' ADD INDEX ( `ipaddress` )
(add the table prefix to 'post' if you use one.