NetBuilders

You are welcome to look around. You will have to register before you can post a message, create a blog, chat live with our members, or add a site to our directory.




Reply Learn SEO from Aaron Wall
Old 25 March, 2009, 23:40 PM   #1 (permalink)
Newbie Net Builder
 
iTrader: (0)
Thanked 0 Times in 0 Posts
Posts: 74
$NetBucks: 1
Join Date: Mar 2009
Last Online: 22 July, 2009 14:26 PM
Default Installation Help and Advice

Hi,

I have set this up and seem to get the error where Google thinks it's translating from english to English. I will try again later.

That aside I started reading more here and a thread about how this was pulling traffic but then stopped caught my attention.

Will, did your translated pages ever come back in the serps? You mention version 3 was weeks away last year but I still see you are on version 2.

So is this still worth installing, traffic wise?

Many thanks. Dave.
  Reply With Quote
Old 26 March, 2009, 20:17 PM   #2 (permalink)
Gozer
 
Will.Spencer's Avatar
 
Location: Singapore
iTrader: (45)
Blog Entries: 1
Thanked 1,617 Times in 890 Posts
Posts: 4,943
$NetBucks: 8,208
Join Date: Dec 2008
Last Online: Today 15:25 PM
Default

Quote:
Originally Posted by davesnake View Post
That aside I started reading more here and a thread about how this was pulling traffic but then stopped caught my attention.
Google deindexed some of my translated pages. I moved them to different URL's and they were reindexed. I lost the value of the inbound links which those pages had collected though.

Google never explained why they deindexed just some translated pages.

Quote:
Originally Posted by davesnake View Post
You mention version 3 was weeks away last year but I still see you are on version 2.
My bad.

The feature which I thought would require v3 ended up being just this post: Configuring the Translation Script to Use Subdomains.


Quote:
Originally Posted by davesnake View Post
So is this still worth installing, traffic wise?
It's making me buckets of money. Your mileage may vary.
  Reply With Quote
Old 1 April, 2009, 23:12 PM   #3 (permalink)
Newbie Net Builder
 
iTrader: (0)
Thanked 0 Times in 0 Posts
Posts: 74
$NetBucks: 1
Join Date: Mar 2009
Last Online: 22 July, 2009 14:26 PM
Default

Thanks for the reply, it's convinced me to give it another shot.

I get the follow error on Google;

Code: -2 (LANG2: Translator returned status '302' (req=http://translate.google.com/translate_c?hl=en&langpair=en%7Cforums&u=http://www.domain.com))

If I copy/paste the URL is says I cannot translate from English to English.

Yahoo give me this error;

Code: -2 (LANG2: Translator returned status '302' (req=http://72.30.186.56/babelfish/translate_url_content?lp=en_forums&trurl=http://www.domain.com))

If I copy/paste the url i get a white screen, yahoo doesn't load. Even http://72.30.186.56/ brings up a blank screen.

Please help me out, thanks. Dave.

Last edited by davesnake; 4 May, 2009 at 15:34 PM..
  Reply With Quote
Old 2 April, 2009, 11:37 AM   #4 (permalink)
Unknown Net Builder
 
iTrader: (0)
Thanked 2 Times in 2 Posts
Posts: 5
$NetBucks: 0
Join Date: Mar 2009
Last Online: 4 May, 2009 12:06 PM
Smile Hope this helps...

Quote:
Originally Posted by davesnake View Post
Thanks for the reply, it's convinced me to give it another shot.

I get the follow error on Google;

Code: -2 (LANG2: Translator returned status '302' (req=http://translate.google.com/translate_c?hl=en&langpair=en%7Cforums&u=http://www.computer-juice.com/forums/))

If I copy/paste the URL is says I cannot translate from English to English.

Yahoo give me this error;

Code: -2 (LANG2: Translator returned status '302' (req=http://72.30.186.56/babelfish/translate_url_content?lp=en_forums&trurl=http://www.computer-juice.com/forums/))

If I copy/paste the url i get a white screen, yahoo doesn't load. Even http://72.30.186.56/ brings up a blank screen.

Please help me out, thanks. Dave.
Hi Dave,

I have been struggling to get this script to work for some days now, but, like you, I see the massive potential for this script and will stick with it until I get it to work.

I digress....

With respect to your query, it looks like something is messing with the URL being sent to Google or Yahoo!

Could you look at the contents of your translate.php file please? The code section I am interested in is at the top of the file, like this:

Code:
<?php
//Version: 2.15

//Define translation engines here
$engines = array(
    'g'    => array(        'trans_url'        => 'http://translate.google.com/translate_c?hl=en&langpair=en%7C$lang&u=$url',
                        'timeout'        => 180,
                        'max_redir'        => 3,
                        'check_func'    => 'GoogleCheck',    //This function should determine if the translation was successful
                        'fixup_func'    => 'GoogleFixup'
                    ),
//TODO: Yahoo translation requires an IP hostname, should code a workaround for this
    'y'    => array(        //'trans_url'        => 'http://74.6.146.244/babelfish/translate_url_content?lp=en_$lang&trurl=$url',
                        'trans_url'        => 'http://72.30.186.56/babelfish/translate_url_content?lp=en_$lang&trurl=$url',
                        'timeout'        => 180,
                        'max_redir'        => 3,
                        'check_func'    => 'YahooCheck',
                        'fixup_func'    => 'YahooFixup'
                    )
);
The piece of code I am interested in is highlighted in RED. Please confirm your code has this call...

Hope this helps...

  Reply With Quote
Thanked by:
Will.Spencer (3 April, 2009)
Old 2 April, 2009, 14:20 PM   #5 (permalink)
Newbie Net Builder
 
iTrader: (0)
Thanked 0 Times in 0 Posts
Posts: 74
$NetBucks: 1
Join Date: Mar 2009
Last Online: 22 July, 2009 14:26 PM
Default

Mine hasn't been changed, it's standard.

Code:
<?php
//Version: 2.15

//Define translation engines here
$engines = array(
    'g'    => array(        'trans_url'        => 'http://translate.google.com/translate_c?hl=en&langpair=en%7C$lang&u=$url',
                        'timeout'        => 180,
                        'max_redir'        => 3,
                        'check_func'    => 'GoogleCheck',    //This function should determine if the translation was successful
                        'fixup_func'    => 'GoogleFixup'
                    ),
//TODO: Yahoo translation requires an IP hostname, should code a workaround for this
    'y'    => array(        //'trans_url'        => 'http://74.6.146.244/babelfish/translate_url_content?lp=en_$lang&trurl=$url',
                        'trans_url'        => 'http://72.30.186.56/babelfish/translate_url_content?lp=en_$lang&trurl=$url',
                        'timeout'        => 180,
                        'max_redir'        => 3,
                        'check_func'    => 'YahooCheck',
                        'fixup_func'    => 'YahooFixup'
                    )
);
  Reply With Quote
Old 2 April, 2009, 15:09 PM   #6 (permalink)
Unknown Net Builder
 
iTrader: (0)
Thanked 2 Times in 2 Posts
Posts: 5
$NetBucks: 0
Join Date: Mar 2009
Last Online: 4 May, 2009 12:06 PM
Default Hi Dave

Hi Dave,

it could be an .htaccess issue.

What does the .htaccess file in your web sites root folder look like please?

Code:
http://www.computer-juice.com/.htaccess
PM me the code if you are uncomfortable about posting it here...

Hope I can help.



EDIT:

Thanks for that Dave. After having looked at the code you sent me I would 99% sure say that it is an .htaccess issue.

ALL your URL's are being rewritten using a 301.

You could try disabling the .htaccess file - by renaming it to htaccess.bak - via FTP and then seeing if your web site still works without it.

The 301 redirect could just be an SEO measure to stop non www. URL's being allowed - NOT to sure on this though...

I would say try it without the .htaccess file and see if that works, of course, just switch the file name back to .htaccess if it doesn't.

Hope this helps...
  Reply With Quote
Thanked by:
Will.Spencer (3 April, 2009)
Old 6 April, 2009, 23:56 PM   #7 (permalink)
Newbie Net Builder
 
iTrader: (0)
Thanked 0 Times in 0 Posts
Posts: 74
$NetBucks: 1
Join Date: Mar 2009
Last Online: 22 July, 2009 14:26 PM
Default

Yeah, all my htaccess does is rewrite non-www to www.

Any further help welcomed.
  Reply With Quote
Old 7 April, 2009, 15:02 PM   #8 (permalink)
Newbie Net Builder
 
iTrader: (0)
Thanked 0 Times in 0 Posts
Posts: 74
$NetBucks: 1
Join Date: Mar 2009
Last Online: 22 July, 2009 14:26 PM
Default

I removed my htaccess files and the same error occurs.
  Reply With Quote
Old 7 April, 2009, 15:28 PM   #9 (permalink)
Newbie Net Builder
 
iTrader: (0)
Thanked 0 Times in 0 Posts
Posts: 74
$NetBucks: 1
Join Date: Mar 2009
Last Online: 22 July, 2009 14:26 PM
Default

On my first go I was installing with some editing to remove the lang/ylang folder.

Now I have decided to keep it simple and follow the instructions to the T.

Yet I still get this error with Google;

Quote:
We are experiencing a temporary problem with the foreign language section. Please try again later. We apologize for the inconvenience.
Scuzi / Perdon / Pardon / Das is Nicht Gud / Sori / Nay canne doo tha laddy


Code: -2 (LANG2: Translator returned status '302' (req=http://translate.google.com/translate_c?hl=en&langpair=en%7Ces&u=http://www.domain.com/forums/))

Redirects:
And this one with Yahoo;

[QUOTE]We are experiencing a temporary problem with the foreign language section. Please try again later. We apologize for the inconvenience.
Scuzi / Perdon / Pardon / Das is Nicht Gud / Sori / Nay canne doo tha laddy


Code: -4 (LANG2: max_redir exceeded (max=3,req=http://uk.babelfish.yahoo.com/translate_url?lp=en_es&trurl=http%3A%2F%2Fwww.doma in.com%2Fforums%2F&fr=blogrd))

Last edited by davesnake; 4 May, 2009 at 15:35 PM..
  Reply With Quote
Old 8 April, 2009, 14:55 PM   #10 (permalink)
Newbie Net Builder
 
iTrader: (0)
Thanked 0 Times in 0 Posts
Posts: 74
$NetBucks: 1
Join Date: Mar 2009
Last Online: 22 July, 2009 14:26 PM
Default

I really would like this working. I can pay if anyone is that way inclined.
  Reply With Quote
Reply

Bookmarks

Tags
advice, installation


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Installation Troubles affpro1234 Translation Script Support 17 14 September, 2009 08:03 AM
Problems with phpbb installation hendricius Community Building 4 13 August, 2009 20:02 PM
[WTS] Script installation service Jasonp Services 0 21 April, 2009 11:58 AM
Installation help wagga2650 Translation Script Support 14 16 March, 2009 20:03 PM


All times are GMT. The time now is 15:51 PM.
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.1
vBAdvertise v1.0.0 Copyright ©2009, PixelFX Studios
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios