Adam Bloch Member Licensed customer Sep 12, 2022 #1 Just been liking for the site URL in the database. I thought it was in the xf_option table can't seem to find it there.
Just been liking for the site URL in the database. I thought it was in the xf_option table can't seem to find it there.
P Paul B XenForo moderator Staff member Licensed customer Sep 12, 2022 #2 What are you trying to do? Upvote 0 Downvote
Adam Bloch Member Licensed customer Sep 12, 2022 #3 I'm still trying to sort out my redirects problem and just wanted to makes sure that the path was good in the database. Upvote 0 Downvote
I'm still trying to sort out my redirects problem and just wanted to makes sure that the path was good in the database.
Adam Bloch Member Licensed customer Sep 12, 2022 #4 I know I have seen it but can't find it on here for a MYSQL script to change all the http:// to htpps:// in the database... Upvote 0 Downvote
I know I have seen it but can't find it on here for a MYSQL script to change all the http:// to htpps:// in the database...
P Paul B XenForo moderator Staff member Licensed customer Sep 12, 2022 #5 If it's set correctly in the ACP then it will be correct in the DB. There's an add-on to change post content but for 'simple' changes you can run a direct query. SQL: UPDATE xf_post SET message = REPLACE(message, 'http://www.example', 'https://example'); Take a backup first. Upvote 0 Downvote
If it's set correctly in the ACP then it will be correct in the DB. There's an add-on to change post content but for 'simple' changes you can run a direct query. SQL: UPDATE xf_post SET message = REPLACE(message, 'http://www.example', 'https://example'); Take a backup first.
Adam Bloch Member Licensed customer Sep 12, 2022 #6 What if I want to do more than the posts table? Upvote 0 Downvote
P Paul B XenForo moderator Staff member Licensed customer Sep 12, 2022 #7 Change the name of the table and the column in the query Upvote 0 Downvote
Adam Bloch Member Licensed customer Sep 12, 2022 #8 lol that upset the server, I got a 500 Upvote 0 Downvote
Adam Bloch Member Licensed customer Sep 12, 2022 #9 I'm guessing there is a timeout or too many for it to handle on the simulate. Works if it doesn't find anything Upvote 0 Downvote
I'm guessing there is a timeout or too many for it to handle on the simulate. Works if it doesn't find anything