woody2k4 wrote:How do i make the sql edits? i assume i do this in my php admin? which i have not even attempted to use yet?
Correct and it isn't that hard. Go to phpmyadmin. On the left look for your database name and click on that. If it is already showing (if it is the only database in there, it may show it by default), Take a look at the prefix before the tables name. Usually it is phpbb_ but sometimes it can have a different prefix such as phpbb3_
You need to note that for when you run the sql statement.
Now on the phpmyadmin in the right pane (main window) you will see some tabs going across it.They should be like "Structure SQL Search Query etc"
Click on the SQL one.
Now you will have a Big text box and above it, it will say "Run SQL query/queries on database (Your database Name)
Now go to your instructions and copy and paste the sql into that text box. Make sure you change the table prefixes to the prefixes that your database uses.
- Code: Select all
ALTER TABLE phpbb_users ADD user_lastrefresh INT( 11 ) NOT NULL AFTER user_lastvisit;
is the default....but if your prefix is ' phpbb3_ '
Then you would alter it to be:
- Code: Select all
ALTER TABLE phpbb3_users ADD user_lastrefresh INT( 11 ) NOT NULL AFTER user_lastvisit;
In this case 'phpbb_" is the prefix and 'users' is the table name.
Now after you copy and paste the code and make sure that the prefix match your tables prefixes, then click on GO under the text box on the right hand side. The page should start refreshing, and make take a moment or tow, then it should tell you if it was successful or not in making the changes.