|
Joined: Sep 2000
Posts: 49
Power User
|
Power User
Joined: Sep 2000
Posts: 49 |
I changed the location of my Threads installation. Now I'm looking for a script that will help me change the referenced location of images within posts bodies from "old-folder" to "new-folder" -- I'm not talking about post attachments mind you (they changed), I mean gremlins. I had a script that helped me move the avatars from the "old-folder" to the "new-folder". Normally I can figure out how to simply massage a script to adapt it but I'm a little leery about fooling around and risking messing up my database. Here's the avatar-mover script I successfully used in case that helps: <?<br />$strQuery = "";<br />$strUpdate = "";<br />$strQuery = "SELECT U_Number, U_Picture FROM w3t_Users";<br />$sth = $dbh -> do_query($strQuery);<br />while ( list ( $lngNumber, $strPicture ) = $dbh -> fetch_array ( $sth ) )<br />{<br />if ( !empty( $strPicture ) )<br />{<br />$strNewPicture = str_replace( "/****OLD-FOLDER****/", "/****NEW-FOLDER****/", $strPicture );<br />$strUpdate = "UPDATE w3t_Users SET U_Picture = '$strNewPicture' WHERE U_Number = '$lngNumber'";<br />$dbh -> do_query ( $strUpdate );<br />}<br />}<br />$dbh -> finish_sth( $sth );<br />?> I appreciate your help! DeltaJo
|
|
|
|
Joined: Nov 2000
Posts: 210
Member
|
Member
Joined: Nov 2000
Posts: 210 |
you could create a symbloic link at the old location to the new location for the folder in question.
|
|
|
|
Joined: Sep 2000
Posts: 49
Power User
|
Power User
Joined: Sep 2000
Posts: 49 |
Thanks, but no I have an .htaccess redirect from that old folder location and don't want the folder to remain open just to enable old image-links to work. I want the image-links to refer to the correct, new location. It would be neater and tidier and more properly organized.
|
|
|
|
Joined: Aug 2002
Posts: 1,191
Kahuna
|
Kahuna
Joined: Aug 2002
Posts: 1,191 |
You can do that using the REPLACE function of MySQL
In phpMyAdmin type:
UPDATE w3t_Posts SET B_Body = REPLACE(B_Body, 'old setting', 'new setting');
Make sure that the old setting is unique. For instance in a forum that I did this we had everything under ubbthreads/ whereas now it is under forum/ so the statement was:
UPDATE w3t_Posts SET B_Body = REPLACE(B_Body, 'ubbthreads/graemlins', 'forum/graemlins/');
I hope this helps.
Nikos
|
|
|
|
Joined: Sep 2000
Posts: 49
Power User
|
Power User
Joined: Sep 2000
Posts: 49 |
Wow thanks -- that was too easy!
For some reason I always thought that to use the REPLACE function, it had to replace all of a field, not just part of it. But it worked!
Thanks a lot -- that was a huge help.
|
|
|
|
Joined: Nov 2001
Posts: 10,369
I type Like navaho
|
I type Like navaho
Joined: Nov 2001
Posts: 10,369 |
I did too until recently.  Very handy query.
|
|
|
Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.
Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
|
|
Posts: 808
Joined: July 2001
|
|
Forums63
Topics37,575
Posts293,931
Members13,823
|
Most Online6,139 Sep 21st, 2024
|
|
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
|
|
|
|