Jump to content

changing folder


asmith

Recommended Posts

i have so files in a folder , so i decided to re arrange them , so some files will go to a new folder .

but as this change goes  ,so there will be a lot of  "headers" or includes in my php codes that must set for this new folder .

 

is there a better way other than exploring through all the moved files and change their "headers" and includes to the new locations ?

Link to comment
https://forums.phpfreaks.com/topic/83979-changing-folder/
Share on other sites

make a universal file with the includes

 

include("universal-includes.php");

change the file paths in that file

 

 

Try using dreamweaver , it has a function to find text within multiple files . And you can replace

 

include('...

include('...

include('...

 

with include("universal-includes.php");

 

 

Link to comment
https://forums.phpfreaks.com/topic/83979-changing-folder/#findComment-427426
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.