Previous Thread
Next Thread
Print Thread
Rate Thread
Joined: Sep 2000
Posts: 49
Power User
Power User
Offline
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:


Code
<?<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

Sponsored Links
Joined: Nov 2000
Posts: 210
Member
Member
Offline
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
Offline
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
Offline
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.

Sponsored Links
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.


Link Copied to Clipboard
Donate Today!
Donate via PayPal

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.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
isaac
isaac
California
Posts: 1,157
Joined: July 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)