I have just switched a .com over from a .co.uk and everything went great until today. I ran SQL to replace the domain in all relevant tables, and I used sed to do the same in all relevant php files on the server, after using cp to move the files to the .com folder.
All is well, except for one little aspect. One of the files I used sed on is a serialized php array, and now php throws Notice: unserialize(): Error at offset 326 of 1551099 bytes in reallylongfilename.php on line when I try to unserialize it.
I have just tested the file from the old server before sed, and it unserializes no problem, but then I ran sed and it fails. The sed command I am using is:
sudo find /var/www/vhosts/spotthedog.com/httpdocs/wp-content/feedgenerator -name 'propdetails.php' -type f -exec sed -i 's/spotthedog.co.uk/spotthedog.com/g' {} \;
I am fairly new to working on the command line, so any help gratefully received as I am considering writing a php script to do the same job.
reallylongfilename.php? does it contain serialized data or there are PHP codes also? is it a data file or PHP file? – shiplu.mokadd.im Jan 2 at 14:05