Re: [videoblogging] blogger to wordpress

2006-01-24 Thread john coffey
Thanks Jen, the stuff you penciled in at the Philly
Wordpress/Blogger worked quite well after cleaning up
a few typos. Up and running, another Philly vlogger.
Or vlogummentor as I like to say!
http://www.jchtv.com/

--- Jen Simmons [EMAIL PROTECTED] wrote:

 OR -- rather than just adding a meta-refresh to the
 head and leaving 
 all of the other code there (which takes a while to
 load / so the 
 redirect is slow),
 you can create a page that has just one image on it
 (like a logo) and 
 attach javascript redirecting to view to the image.
 
 Like this page:
 http://astro.temple.edu/~jsimmons
 
 Here's the relevant code:
 This is in the head tag:
 
 script language=JavaScript
 type=text/JavaScript
 !--
 function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments;
 document.MM_returnValue = false;
for (i=0; i(args.length-1); i+=2) 
 eval(args[i]+.location='+args[i+1]+');
 }
 //--
 /script
 
 And this is in the body:
 a href=http://www.jensimmons.com/blog;
 img src=card.jpg 

onload=MM_goToURL('parent','http://www.jensimmons.com/blog');return
 
 document.MM_returnValue /
 /a
 
 I put the manual link code there in case someone's
 browser misses the 
 javascript, then they can click on the image and get
 to the new site.
 
 If you make a plain-jane html page and use this
 code, you can make that 
 your template in blogger, and blogger will post it
 to index.html. It 
 just won't have any blogger tags in it, so nothing
 from your blog will 
 show up. This does take a bit more knowledge of how
 to create an html 
 page from scratch, so the other solution is easier
 for people who only 
 know how to use blogger. Here, I'll paste the full
 html into the end of 
 this message, so you can see the whole thing.
 
 Thanks to Verdi!! (all hail!)
 
 jen
 
 ___
 
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0
 Transitional//EN 

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
 html xmlns=http://www.w3.org/1999/xhtml;
 head
 meta http-equiv=Content-Type content=text/html;
 charset=iso-8859-1 
 /
 titlejenSimmons/title
 style type=text/css
 !--
 body {
   background-color: #FEDE2F;
   background-image: url(paper.jpg);
 }
 --
 /style
 script language=JavaScript
 type=text/JavaScript
 !--
 function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments;
 document.MM_returnValue = false;
for (i=0; i(args.length-1); i+=2) 
 eval(args[i]+.location='+args[i+1]+');
 }
 //--
 /script
 /head
 
 body
 div align=center
pa href=http://www.jensimmons.com/blog;img
 src=card.jpg 
 border=0 

onload=MM_goToURL('parent','http://www.jensimmons.com/blog');return
 
 document.MM_returnValue //a/p
 /div
 /body
 /html
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [videoblogging] blogger to wordpress

2006-01-21 Thread Jen Simmons
OR -- rather than just adding a meta-refresh to the head and leaving 
all of the other code there (which takes a while to load / so the 
redirect is slow),
you can create a page that has just one image on it (like a logo) and 
attach javascript redirecting to view to the image.

Like this page:
http://astro.temple.edu/~jsimmons

Here's the relevant code:
This is in the head tag:

script language=JavaScript type=text/JavaScript
!--
function MM_goToURL() { //v3.0
   var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
   for (i=0; i(args.length-1); i+=2) 
eval(args[i]+.location='+args[i+1]+');
}
//--
/script

And this is in the body:
a href=http://www.jensimmons.com/blog;
img src=card.jpg 
onload=MM_goToURL('parent','http://www.jensimmons.com/blog');return 
document.MM_returnValue /
/a

I put the manual link code there in case someone's browser misses the 
javascript, then they can click on the image and get to the new site.

If you make a plain-jane html page and use this code, you can make that 
your template in blogger, and blogger will post it to index.html. It 
just won't have any blogger tags in it, so nothing from your blog will 
show up. This does take a bit more knowledge of how to create an html 
page from scratch, so the other solution is easier for people who only 
know how to use blogger. Here, I'll paste the full html into the end of 
this message, so you can see the whole thing.

Thanks to Verdi!! (all hail!)

jen

___

!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
html xmlns=http://www.w3.org/1999/xhtml;
head
meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 
/
titlejenSimmons/title
style type=text/css
!--
body {
background-color: #FEDE2F;
background-image: url(paper.jpg);
}
--
/style
script language=JavaScript type=text/JavaScript
!--
function MM_goToURL() { //v3.0
   var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
   for (i=0; i(args.length-1); i+=2) 
eval(args[i]+.location='+args[i+1]+');
}
//--
/script
/head

body
div align=center
   pa href=http://www.jensimmons.com/blog;img src=card.jpg 
border=0 
onload=MM_goToURL('parent','http://www.jensimmons.com/blog');return 
document.MM_returnValue //a/p
/div
/body
/html



 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [videoblogging] blogger to wordpress

2006-01-19 Thread Michael Verdi



You can replace the Blogger template and then just republish the index page, leaving the archives intact.-VerdiOn 1/18/06, Jen Simmons 
[EMAIL PROTECTED] wrote:On Jan 18, 2006, at 10:51 AM, Josh Leo wrote:
what do other people think? is it better to redirect to the new site or is it better to have a block of text that reads this site has moved?I say leave all the permalink pages so that anyone who's returning to a
specific place in your old site (from a bookmark or from a link fromsomeone else's site) will still find the old content. And yes, modifythe template so the old site pages have a notice + link to the new home
page.But then also -- replace the index.htm home page with an empty redirectpage so that anyone who goes to your old home page (which is most ofyour traffic) will get automatically and elegantly sent to the new
site. You can create such a redirect index page without using Blogger-- giving you the opportunity to leave the Blogger template to do theabove description...ohwait. maybe you can't do this on blogspot... there's no way to manually
ftp a replacement index file over the blogger created index file, isthere...this would work if your blogger blog was on your own server.anyone have ideas about how to do this on blogspot?jen
jenSimmonshttp://www.emergingawareness.orghttp://www.inclinationsthemovie.com
http://www.jensimmons.comYahoo! Groups Links* To visit your group on the web, go to:http://groups.yahoo.com/group/videoblogging/
* To unsubscribe from this group, send an email to:[EMAIL PROTECTED]* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/





  
  
SPONSORED LINKS
  
  
  

Individual
  
  
Fireant
  
  
Use
  
  


Explains
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "videoblogging" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [videoblogging] blogger to wordpress

2006-01-19 Thread Josh Leo



wouldnt altering the blogger template then alter the permalinks/archived posts? how could the .blogspot.com address forward to a new site but the permalinks not?On 1/19/06, 
Michael Verdi [EMAIL PROTECTED] wrote:



You can replace the Blogger template and then just republish the index page, leaving the archives intact.-VerdiOn 1/18/06, 
Jen Simmons 
[EMAIL PROTECTED] wrote:On Jan 18, 2006, at 10:51 AM, Josh Leo wrote:

what do other people think? is it better to redirect to the new site or is it better to have a block of text that reads this site has moved?I say leave all the permalink pages so that anyone who's returning to a
specific place in your old site (from a bookmark or from a link fromsomeone else's site) will still find the old content. And yes, modifythe template so the old site pages have a notice + link to the new home

page.But then also -- replace the index.htm home page with an empty redirectpage so that anyone who goes to your old home page (which is most ofyour traffic) will get automatically and elegantly sent to the new
site. You can create such a redirect index page without using Blogger-- giving you the opportunity to leave the Blogger template to do theabove description...ohwait. maybe you can't do this on blogspot... there's no way to manually
ftp a replacement index file over the blogger created index file, isthere...this would work if your blogger blog was on your own server.anyone have ideas about how to do this on blogspot?jen

jenSimmonshttp://www.emergingawareness.org
http://www.inclinationsthemovie.com
http://www.jensimmons.comYahoo! Groups Links* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/
* To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/





  
  
SPONSORED LINKS
  
  
  


Individual
  
  

Fireant
  
  

Use
  
  



Explains
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group videoblogging on the web.

  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
.



  








-- Josh Leojoshleo.comstonefarm.blogspot.com
joshspicks.blogspot.comvlogcats.blogspot.comwearethemedia.com


  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "videoblogging" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [videoblogging] blogger to wordpress

2006-01-19 Thread David Meade






You can replace the Blogger template and then just republish the index page, leaving the archives intact.-VerdiYup, I just tested it on my blogspot (which I dont use for anything).Adding the meta-refresh to the head and republish ONLY the index, would do the trick it seems.



  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "videoblogging" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [videoblogging] blogger to wordpress

2006-01-19 Thread Josh Leo



got url's for me to look at?On 1/19/06, David Meade [EMAIL PROTECTED] wrote:






You can replace the Blogger template and then just republish the index page, leaving the archives intact.-VerdiYup, I just tested it on my blogspot (which I dont use for anything).Adding the meta-refresh to the head and republish ONLY the index, would do the trick it seems.



  




  
  
  YAHOO! GROUPS LINKS



  Visit your group videoblogging on the web.

  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
.



  








-- Josh Leojoshleo.comstonefarm.blogspot.com
joshspicks.blogspot.comvlogcats.blogspot.comwearethemedia.com


  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "videoblogging" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [videoblogging] blogger to wordpress

2006-01-19 Thread David Meade
Sure:

Here is my blogspot url:
http://davemeade.blogspot.com/

And here is an archive post there that does not redirect:
http://davemeade.blogspot.com/2005/12/test-post.html

On 1/19/06, Josh Leo [EMAIL PROTECTED] wrote:
  got url's for me to look at?


 On 1/19/06, David Meade [EMAIL PROTECTED] wrote:
 
   You can replace the Blogger template and then just republish the index
 page, leaving the archives intact.
  -Verdi
 
  Yup, I just tested it on my blogspot (which I dont use for anything).
 
  Adding the meta-refresh to the head and republish ONLY the index, would do
 the trick it seems.
 
 
 
  
  YAHOO! GROUPS LINKS
 
 
   Visit your group videoblogging on the web.
 
   To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service .
 
  




 --
 Josh Leo

 joshleo.com
 stonefarm.blogspot.com
  joshspicks.blogspot.com
 vlogcats.blogspot.com
 wearethemedia.com

  
  YAHOO! GROUPS LINKS



  Visit your group videoblogging on the web.

  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

  



--
http://www.DavidMeade.com


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [videoblogging] blogger to wordpress

2006-01-19 Thread Josh Leo



freaking awesome! it is like everything I wanted and more! now when the time comes to actually switch over, I know who to come talk to! thanks david!On 1/19/06, 
David Meade [EMAIL PROTECTED] wrote:
Sure:Here is my blogspot url:http://davemeade.blogspot.com/And here is an archive post there that does not redirect:
http://davemeade.blogspot.com/2005/12/test-post.htmlOn 1/19/06, Josh Leo [EMAIL PROTECTED] wrote:got url's for me to look at? On 1/19/06, David Meade 
[EMAIL PROTECTED] wrote:You can replace the Blogger template and then just republish the index page, leaving the archives intact.
  -Verdi   Yup, I just tested it on my blogspot (which I dont use for anything).   Adding the meta-refresh to the head and republish ONLY the index, would do
 the trick it seems. YAHOO! GROUPS LINKS   Visit your group videoblogging on the web.
  To unsubscribe from this group, send an email to:  [EMAIL PROTECTED]  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service .
    -- Josh Leo joshleo.com 
stonefarm.blogspot.comjoshspicks.blogspot.com vlogcats.blogspot.com 
wearethemedia.comYAHOO! GROUPS LINKSVisit your group videoblogging on the web.To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
--http://www.DavidMeade.comYahoo! Groups Links* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/* To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
* Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/-- Josh Leo
joshleo.comstonefarm.blogspot.comjoshspicks.blogspot.com
vlogcats.blogspot.comwearethemedia.com


  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "videoblogging" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [videoblogging] blogger to wordpress

2006-01-19 Thread David Meade
My pleasure, but Verdi was the one who posted the republish index
only thing ... I only made a demo :-)

On 1/19/06, Josh Leo [EMAIL PROTECTED] wrote:
  freaking awesome! it is like everything I wanted and more! now when the
 time comes to actually switch over, I know who to come talk to! thanks
 david!


 On 1/19/06, David Meade [EMAIL PROTECTED] wrote:
 
  Sure:
 
  Here is my blogspot url:
  http://davemeade.blogspot.com/
 
  And here is an archive post there that does not redirect:
  http://davemeade.blogspot.com/2005/12/test-post.html
 
  On 1/19/06, Josh Leo [EMAIL PROTECTED] wrote:
got url's for me to look at?
  
  
   On 1/19/06, David Meade  [EMAIL PROTECTED] wrote:
   
 You can replace the Blogger template and then just republish the
 index
   page, leaving the archives intact.
-Verdi
   
Yup, I just tested it on my blogspot (which I dont use for anything).
   
Adding the meta-refresh to the head and republish ONLY the index,
 would do
   the trick it seems.
   
   
   

YAHOO! GROUPS LINKS
   
   
 Visit your group videoblogging on the web.
   
 To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]
   
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service .
   

  
  
  
  
   --
   Josh Leo
  
   joshleo.com
   stonefarm.blogspot.com
joshspicks.blogspot.com
   vlogcats.blogspot.com
   wearethemedia.com
  

YAHOO! GROUPS LINKS
  
  
  
Visit your group videoblogging on the web.
  
To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
  
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
  

  
 
 
  --
  http://www.DavidMeade.com
 
 
 
  Yahoo! Groups Links
 
 
 
 
 
 
 



 --

 Josh Leo

 joshleo.com
 stonefarm.blogspot.com
 joshspicks.blogspot.com
  vlogcats.blogspot.com
 wearethemedia.com

  
  YAHOO! GROUPS LINKS


  Visit your group videoblogging on the web.

  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

  



--
http://www.DavidMeade.com


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [videoblogging] blogger to wordpress

2006-01-18 Thread T.Whid
Hi,

You would need to set that up on blogger somewhere. If you wanted to
simply forward to your front page you could do it with JS in your
blogger template (are you allowed to edit the template?).

The best way to do it would be on the server-side. But I assume
blogger doesn't offer that service.

On 1/18/06, Josh Leo [EMAIL PROTECTED] wrote:
  hey gang,

 I am starting to redesign my site and move from blogger  to wordpress

 I know that i can import comments and posts and that i can have
 joshleo.blogspot.com forward to joshleo.com/vlog (new blog frontpage) when
 it is up and running. and I know that the old post permalinks will not
 forward to my new permalinks but i am still unsure if old permalinks forward
 to the standard site. example:
 joshleo.blogspot.com/01/2005/josh-is-cool.html to
 joshleo.com/vlog (The new wordpress blog front page)

 I know it wont forward to the post but hopefully the permalinks will forward
 somewhere? maybe the blog front page?

 --
 Josh Leo

 joshleo.com
  stonefarm.blogspot.com
 joshspicks.blogspot.com
 vlogcats.blogspot.com
 wearethemedia.com

  
  YAHOO! GROUPS LINKS


  Visit your group videoblogging on the web.

  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

  



--
twhidwww.mteww.com/twhid


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [videoblogging] blogger to wordpress

2006-01-18 Thread David Meade
Blogger does allow it, you can add a meta refresh to the html header
that will send any request for the old site to the new one ...

however ... you may not want to do that, Josh. You may want to leave
the old site there (its free right?) that way all your permalinks
still point to the video posts people have linked to.

You could alter the template to display some sort of This site has
moved, please update your bookmarks / links or whatever.

if you do want to redirect the old site just edit your template and
add the following line to the head portion:

meta http-equiv=Refresh content=0;url=NEW_URL_HERE

- Dave
On 1/18/06, T.Whid [EMAIL PROTECTED] wrote:
 Hi,

 You would need to set that up on blogger somewhere. If you wanted to
 simply forward to your front page you could do it with JS in your
 blogger template (are you allowed to edit the template?).

 The best way to do it would be on the server-side. But I assume
 blogger doesn't offer that service.

 On 1/18/06, Josh Leo [EMAIL PROTECTED] wrote:
   hey gang,
 
  I am starting to redesign my site and move from blogger  to wordpress
 
  I know that i can import comments and posts and that i can have
  joshleo.blogspot.com forward to joshleo.com/vlog (new blog frontpage) when
  it is up and running. and I know that the old post permalinks will not
  forward to my new permalinks but i am still unsure if old permalinks forward
  to the standard site. example:
  joshleo.blogspot.com/01/2005/josh-is-cool.html to
  joshleo.com/vlog (The new wordpress blog front page)
 
  I know it wont forward to the post but hopefully the permalinks will forward
  somewhere? maybe the blog front page?
 
  --
  Josh Leo
 
  joshleo.com
   stonefarm.blogspot.com
  joshspicks.blogspot.com
  vlogcats.blogspot.com
  wearethemedia.com
 
   
   YAHOO! GROUPS LINKS
 
 
   Visit your group videoblogging on the web.
 
   To unsubscribe from this group, send an email to:
   [EMAIL PROTECTED]
 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
 
   
 


 --
 twhidwww.mteww.com/twhid



 Yahoo! Groups Links









--
http://www.DavidMeade.com


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [videoblogging] blogger to wordpress

2006-01-18 Thread Josh Leo



what do other people think? is it better to redirect to the new site or is it better to have a block of text that reads this site has moved?On 1/18/06, 
David Meade [EMAIL PROTECTED] wrote:
Blogger does allow it, you can add a meta refresh to the html headerthat will send any request for the old site to the new one ...however ... you may not want to do that, Josh. You may want to leavethe old site there (its free right?) that way all your permalinks
still point to the video posts people have linked to.You could alter the template to display some sort of This site hasmoved, please update your bookmarks / links or whatever.if you do want to redirect the old site just edit your template and
add the following line to the head portion:meta http-equiv=Refresh content=0;url="">- DaveOn 1/18/06, T.Whid [EMAIL PROTECTED]
 wrote: Hi, You would need to set that up on blogger somewhere. If you wanted to simply forward to your front page you could do it with JS in your blogger template (are you allowed to edit the template?).
 The best way to do it would be on the server-side. But I assume blogger doesn't offer that service. On 1/18/06, Josh Leo [EMAIL PROTECTED]
 wrote: hey gang,   I am starting to redesign my site and move from bloggerto wordpress   I know that i can import comments and posts and that i can have
  joshleo.blogspot.com forward to joshleo.com/vlog (new blog frontpage) when  it is up and running. and I know that the old post permalinks will not
  forward to my new permalinks but i am still unsure if old permalinks forward  to the standard site. example:  joshleo.blogspot.com/01/2005/josh-is-cool.html
 to  joshleo.com/vlog (The new wordpress blog front page)   I know it wont forward to the post but hopefully the permalinks will forward  somewhere? maybe the blog front page?
   --  Josh Leo   joshleo.com stonefarm.blogspot.com  
joshspicks.blogspot.com  vlogcats.blogspot.com  wearethemedia.com  
 YAHOO! GROUPS LINKS   Visit your group videoblogging on the web.  To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED]  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.  
  -- twhidwww.mteww.com/twhid Yahoo! Groups Links
--http://www.DavidMeade.comYahoo! Groups Links* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/* To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
* Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/-- Josh Leo
joshleo.comstonefarm.blogspot.comjoshspicks.blogspot.com
vlogcats.blogspot.comwearethemedia.com


  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "videoblogging" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [videoblogging] blogger to wordpress

2006-01-18 Thread [EMAIL PROTECTED]










Funny, last week I ran the script that
ported all my old blogger entries to wordpress. Since blogger doesnt
have categories, the old ones ended up in the default category, but thats
easy to edit. The process was very easy...



Just do a google search on blogger
to wordpress for detailed instructions. If you want to see the results
the site is at sleepyblogger.com. I think I did it last weds or so, theres
a post saying that I am in the middle of the install, if you want the exact
date.



Also, since I did it this way, I didnt
have to decide to redirect. However, if you are hosting on blogspot (I wasnt)
I guess youd still have the issue to decide. My 2 cents on that would
be a 3 second redirect from a page that said This site has moved, if you arent
redirected, please click here ___. I did that when I initially
left the blogspot hosting months ago.



Feel free to email me personally on this.





Robyn Tippins



From:
videoblogging@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Leo
Sent: Wednesday, January 18, 2006
9:13 AM
To: videoblogging
Subject: [videoblogging] blogger
to wordpress





hey gang, 

I am starting to redesign my site and move from blogger to wordpress

I know that i can import comments and posts and that i can have joshleo.blogspot.com forward
to joshleo.com/vlog (new
blog frontpage) when it is up and running. and I know that the old post
permalinks will not forward to my new permalinks but i am still unsure if old
permalinks forward to the standard site. example: joshleo.blogspot.com/01/2005/josh-is-cool.html
to joshleo.com/vlog (The new wordpress blog front page) 

I know it wont forward to the post but hopefully the permalinks will forward somewhere?
maybe the blog front page?

-- 
Josh Leo

joshleo.com
stonefarm.blogspot.com
joshspicks.blogspot.com
vlogcats.blogspot.com
wearethemedia.com 







  
  
SPONSORED LINKS
  
  
  

Individual
  
  
Fireant
  
  
Use
  
  


Explains
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "videoblogging" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [videoblogging] blogger to wordpress

2006-01-18 Thread David Meade
Just so that what I mean is clearer ...

That block of text can appear WITH the origional content (not simply
in place of it).  That way old permalinks that dont get updated can
still find the content - and a handy reminder that they're at an
out-dated url.


(Although you could do something more advanced with JavaScript to
redirect individual old permalinks to their new location on the new
site, it would be a much bigger deal (you'd have to have a page at the
new site that would do some work and basically map old permalinks to
new ones).  My personal thought is that it would be easiest to put up
a banner we've moved sign, but still leave the old content available
... that way old links and cached feed entries will still be valid.)

On 1/18/06, Josh Leo [EMAIL PROTECTED] wrote:
  what do other people think? is it better to redirect to the new site or is
 it better to have a block of text that reads this site has moved?


 On 1/18/06, David Meade [EMAIL PROTECTED] wrote:
 
  Blogger does allow it, you can add a meta refresh to the html header
  that will send any request for the old site to the new one ...
 
  however ... you may not want to do that, Josh. You may want to leave
  the old site there (its free right?) that way all your permalinks
  still point to the video posts people have linked to.
 
  You could alter the template to display some sort of This site has
  moved, please update your bookmarks / links or whatever.
 
  if you do want to redirect the old site just edit your template and
  add the following line to the head portion:
 
  meta http-equiv=Refresh content=0;url=NEW_URL_HERE
 
  - Dave
  On 1/18/06, T.Whid [EMAIL PROTECTED]  wrote:
   Hi,
  
   You would need to set that up on blogger somewhere. If you wanted to
   simply forward to your front page you could do it with JS in your
   blogger template (are you allowed to edit the template?).
  
   The best way to do it would be on the server-side. But I assume
   blogger doesn't offer that service.
  
   On 1/18/06, Josh Leo [EMAIL PROTECTED]  wrote:
 hey gang,
   
I am starting to redesign my site and move from blogger  to
 wordpress
   
I know that i can import comments and posts and that i can have
joshleo.blogspot.com forward to joshleo.com/vlog (new blog frontpage)
 when
it is up and running. and I know that the old post permalinks will not
forward to my new permalinks but i am still unsure if old permalinks
 forward
to the standard site. example:
joshleo.blogspot.com/01/2005/josh-is-cool.html to
joshleo.com/vlog (The new wordpress blog front page)
   
I know it wont forward to the post but hopefully the permalinks will
 forward
somewhere? maybe the blog front page?
   
--
Josh Leo
   
joshleo.com
 stonefarm.blogspot.com
joshspicks.blogspot.com
vlogcats.blogspot.com
wearethemedia.com
   
 
 YAHOO! GROUPS LINKS
   
   
 Visit your group videoblogging on the web.
   
 To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]
   
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
   
 
   
  
  
   --
   twhidwww.mteww.com/twhid
  
  
  
   Yahoo! Groups Links
  
  
  
  
  
  
  
 
 
  --
  http://www.DavidMeade.com
 
 
 
  Yahoo! Groups Links
 
 
 
 
 
 
 



 --

 Josh Leo

 joshleo.com
 stonefarm.blogspot.com
 joshspicks.blogspot.com
  vlogcats.blogspot.com
 wearethemedia.com

  
  YAHOO! GROUPS LINKS


  Visit your group videoblogging on the web.

  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

  



--
http://www.DavidMeade.com


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [videoblogging] blogger to wordpress

2006-01-18 Thread Pete Prodoehl
David Meade wrote:
 if you do want to redirect the old site just edit your template and
 add the following line to the head portion:
 
 meta http-equiv=Refresh content=0;url=NEW_URL_HERE

This will just cause all the old pages to redirect to a single url, in 
effect breaking all permalinks, right?

Do they allow editing the head of the page when hosting on blogspot?

This is not exactly the same as a http redirect, and won't always do 
what you want. (I specifically disable the meta refresh in my browser.)

Pete

-- 
http://tinkernet.org/
videoblog for the future...




 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [videoblogging] blogger to wordpress

2006-01-18 Thread T.Whid
FWIW

I agree, you should keep the old account (esp if it's free) and add a
big notice at the top to go to the new home page of the blog.

You don't want to break all the links that are probably indexed in
search engines, linked from other sites, etc, etc.

By forwarding to the front of a new site, you force folks to search
for the content they were looking for when they get there. Give 'em
what they're looking for first, then let them decide if they want to
continue to explore your site.

best,



On 1/18/06, David Meade [EMAIL PROTECTED] wrote:
 Just so that what I mean is clearer ...

 That block of text can appear WITH the origional content (not simply
 in place of it).  That way old permalinks that dont get updated can
 still find the content - and a handy reminder that they're at an
 out-dated url.


 (Although you could do something more advanced with JavaScript to
 redirect individual old permalinks to their new location on the new
 site, it would be a much bigger deal (you'd have to have a page at the
 new site that would do some work and basically map old permalinks to
 new ones).  My personal thought is that it would be easiest to put up
 a banner we've moved sign, but still leave the old content available
 ... that way old links and cached feed entries will still be valid.)

 On 1/18/06, Josh Leo [EMAIL PROTECTED] wrote:
   what do other people think? is it better to redirect to the new site or is
  it better to have a block of text that reads this site has moved?
 
 
  On 1/18/06, David Meade [EMAIL PROTECTED] wrote:
  
   Blogger does allow it, you can add a meta refresh to the html header
   that will send any request for the old site to the new one ...
  
   however ... you may not want to do that, Josh. You may want to leave
   the old site there (its free right?) that way all your permalinks
   still point to the video posts people have linked to.
  
   You could alter the template to display some sort of This site has
   moved, please update your bookmarks / links or whatever.
  
   if you do want to redirect the old site just edit your template and
   add the following line to the head portion:
  
   meta http-equiv=Refresh content=0;url=NEW_URL_HERE
  
   - Dave
   On 1/18/06, T.Whid [EMAIL PROTECTED]  wrote:
Hi,
   
You would need to set that up on blogger somewhere. If you wanted to
simply forward to your front page you could do it with JS in your
blogger template (are you allowed to edit the template?).
   
The best way to do it would be on the server-side. But I assume
blogger doesn't offer that service.
   
On 1/18/06, Josh Leo [EMAIL PROTECTED]  wrote:
  hey gang,

 I am starting to redesign my site and move from blogger  to
  wordpress

 I know that i can import comments and posts and that i can have
 joshleo.blogspot.com forward to joshleo.com/vlog (new blog frontpage)
  when
 it is up and running. and I know that the old post permalinks will not
 forward to my new permalinks but i am still unsure if old permalinks
  forward
 to the standard site. example:
 joshleo.blogspot.com/01/2005/josh-is-cool.html to
 joshleo.com/vlog (The new wordpress blog front page)

 I know it wont forward to the post but hopefully the permalinks will
  forward
 somewhere? maybe the blog front page?

 --
 Josh Leo

 joshleo.com
  stonefarm.blogspot.com
 joshspicks.blogspot.com
 vlogcats.blogspot.com
 wearethemedia.com

  
  YAHOO! GROUPS LINKS


  Visit your group videoblogging on the web.

  To unsubscribe from this group, send an email to:
   [EMAIL PROTECTED]

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

  

   
   
--
twhidwww.mteww.com/twhid
   
   
   
Yahoo! Groups Links
   
   
   
   
   
   
   
  
  
   --
   http://www.DavidMeade.com
  
  
  
   Yahoo! Groups Links
  
  
  
  
  
  
  
 
 
 
  --
 
  Josh Leo
 
  joshleo.com
  stonefarm.blogspot.com
  joshspicks.blogspot.com
   vlogcats.blogspot.com
  wearethemedia.com
 
   
   YAHOO! GROUPS LINKS
 
 
   Visit your group videoblogging on the web.
 
   To unsubscribe from this group, send an email to:
   [EMAIL PROTECTED]
 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
 
   
 


 --
 http://www.DavidMeade.com



 Yahoo! Groups Links










--
twhidwww.mteww.com/twhid


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [videoblogging] blogger to wordpress

2006-01-18 Thread David Meade
They do allow editing the head of the page ... but ... yes that will
break permalinks. (and its not a sure thing)

Alternatively though, one could simply not redirect at all and instead
just put up a site-wide notice that new content is being published to
a new url and that bookmarks should be updated.


On 1/18/06, Pete Prodoehl [EMAIL PROTECTED] wrote:
 David Meade wrote:
  if you do want to redirect the old site just edit your template and
  add the following line to the head portion:
 
  meta http-equiv=Refresh content=0;url=NEW_URL_HERE

 This will just cause all the old pages to redirect to a single url, in
 effect breaking all permalinks, right?

 Do they allow editing the head of the page when hosting on blogspot?

 This is not exactly the same as a http redirect, and won't always do
 what you want. (I specifically disable the meta refresh in my browser.)

 Pete

 --
 http://tinkernet.org/
 videoblog for the future...





 Yahoo! Groups Links










--
http://www.DavidMeade.com


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [videoblogging] blogger to wordpress

2006-01-18 Thread Jen Simmons
On Jan 18, 2006, at 10:51 AM, Josh Leo wrote:

  what do other people think? is it better to redirect to the new site 
 or is it better to have a block of text that reads this site has 
 moved?

I say leave all the permalink pages so that anyone who's returning to a 
specific place in your old site (from a bookmark or from a link from 
someone else's site) will still find the old content. And yes, modify 
the template so the old site pages have a notice + link to the new home 
page.

But then also -- replace the index.htm home page with an empty redirect 
page so that anyone who goes to your old home page (which is most of 
your traffic) will get automatically and elegantly sent to the new 
site. You can create such a redirect index page without using Blogger 
-- giving you the opportunity to leave the Blogger template to do the 
above description...
oh
wait. maybe you can't do this on blogspot... there's no way to manually 
ftp a replacement index file over the blogger created index file, is 
there...
this would work if your blogger blog was on your own server.
anyone have ideas about how to do this on blogspot?

jen




jenSimmons
http://www.emergingawareness.org
http://www.inclinationsthemovie.com
http://www.jensimmons.com



 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/videoblogging/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/