Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
I see version 9.0.3.0 under <assemblyIdentity name="EPiServer" in web.config.
I would create a scheduled job in the old site (version 6) that goes through all files. Get all files like:
void GetAllFiles(UnifiedDirectory start, List<UnifiedFile> files) { foreach (UnifiedFile file in start.GetFiles()) { files.Add(file); } foreach (UnifiedDirectory dir in start.GetDirectories()) { GetAllFiles(dir, files); } }
and then use the new service api
to export the files to the new web site.
Hi!
I'm trying to export all files and just the files from episerver 6 to episerver 7. Can I only do this one by one? I don't have the same structure or pagetypes in my new cms so I just want all the files to be exported.