Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

carloscosta

Archived
  • Posts

    13
  • Joined

  • Last visited

Profile Information

Recent Profile Visitors

6,839 profile views

carloscosta's Achievements

  1. Hi, Jack I was checking my site with the SEO Assistant and I found one bug similar as the Link Position links. When I use the function Supplemental Links and move the mouse over the links, it appears only "http://www.mysite.com/catalog/admin" instead of "http://www.mysite.com/catalog/about_us.php" as example. I was checking in the admin/seo_assistant.php script near the line 1138 where it has the following codes: <?php if ($showsupplementalLinks && count($supplementalURL_Google)) { for ($i = 0; $i < count($supplementalURL_Google); ++$i) { ?> <tr> <td class="smallText"><a href="<?php echo $sidURL_Google[$i]; ?>" target="_blank"><?php echo $supplementalURL_Google[$i]; ?></a></td> </tr> It seems to me that this variable array is not getting the corrected link ($sidURL_Google[$i]). Is it the corrected array or it should be $supplementalURL_Google[$i] instead of ? What do you think? Many Thanks, Carlos Costa
  2. Many thanks to Jack and Ruth for the nice words of encouragement. I began to be adapted to OscCommerce shop since August/2006 (completly new for me, and I love the style of this shop) and I am trying to learn php language better. I have a web live shop for computers products in Brazil and several modules were installed in my shop through OSC contributions of yours - I have some Jack´s contributions installed, as Header Tags Controller that I noticed it is very important to a web shop. You can visit my shop at address www.hipertech.com.br/loja/ (BUT REMEMBER IS A LIVE SHOP) and any suggestion it will be welcome. It is in portuguese but in the future I intend to include an english version. Now let´s to return to SEO Assistant. I found out a little bug in link position function. After you insert data to the fields to check in Google, MSN and Yahoo and press "Get Position" button, it shows a list of site links. As you move the mouse over these links, at status bar shows the related link. You will see that the link do not correspond to the site because add the base path of your admin path. Let me show an example: 1 www.google.com --> status bar show = http://www.mysite.com/catalog/admin/www.google.com --> the correct link should be = http://www.google.com I found the problem in the file catalog/admin/seo_assistant.php in line 426 (for Google Code - should be implemented to MSN and Yahoo) where you find: <?php if (substr($siteresults_google[$i], 'https')) { ?> <td class="seo_section"><?php echo $j. ' ' .'<a href="' . $siteresults_google[$i] . '" target="_blank">' . $siteresults_google[$i] . '</a>'; ?></td> <?php } else { ?> <td class="seo_section"><?php echo $j. ' ' .'<a href="' . 'http://' . $siteresults_google[$i] . '" target="_blank">' . $siteresults_google[$i] . '</a>'; ?></td> <?php } ?> and I replace to (as you see I inverted the lines): <?php if (substr($siteresults_google[$i], 'https')) { ?> <td class="seo_section"><?php echo $j. ' ' .'<a href="' . 'http://' . $siteresults_google[$i] . '" target="_blank">' . $siteresults_google[$i] . '</a>'; ?></td> <?php } else { ?> <td class="seo_section"><?php echo $j. ' ' .'<a href="' . $siteresults_google[$i] . '" target="_blank">' . $siteresults_google[$i] . '</a>'; ?></td> <?php } ?> The https is a header for a SSL security certificate site and the comparation is done with a SSL site. Are all sites listed an SSL site? I have this doubt. What do you think Jack? Thanks, Carlos Costa
  3. Hi Mark, It is strange you got the error yet. Let me show the sequence I did. 1 - Installed SEO Assistant 1.7 carefully. This step is important. If you have patience, just check it the installation again. Sometimes we find some mistakes or try to install from the beginning again. 2 - I checked all the functions to see if all of them work correctly. Just Page Rank gave me the error. 3 - I asked Jack to send me the corrected checksum of my site, as you did. Change the file catalog/admin/includes/functions/seo_assistant.php to include the corrected checksum to see if it is working ok. For your site it is : $ch = "6944019475"; -> the number '6' in the beginning of checksum is a fixed number for any site you test. 4 - If you used my update version of seo_assistant.php, I included in the variable $ch the number fixed '6', but the Jack´s version isn´t. I took it out the number '6' from the string below: $pr = file("http://www.google.com/search?client=navclient-auto&ch=$ch&ie=UTF-8&oe=UTF-8&features=Rank&q=$url"); -> this is my string updated (in bold). 5 - If you used the Jack´s version, you do not put the '6' in the variable $ch = "944019475"; . 6 - From what I noticed, the only file that can cause this problem is the catalog/admin/includes/functions/seo_assistant.php. 7 - Important: The checksum is different to each site you test it. So, this number I gave you above is for your site. I hope I can guide you to solve the problem. Thanks, Carlos
  4. It is available the correction of the folder path for the update v1.8A. See at SEO Assistant Module. Thanks to Ruth to alert me of this mistake. Carlos Costa
  5. Hi, Ruth, I had the same problem as you had. A new update is available at SEO Assistant V1.8 I´ve posted yesterday. Try it and feedback me if it works for you. My email is [email protected]. Thanks, Carlos Costa
  6. Hi, Jack_mcs. After a couple of weeks, I found out how to fix the problem with the page rank routine. I noticed that several users have had this problem as I had - Page rank routine doesn´t work satisfactory. I posted in the community contribution - SEO Assistant - an update to this problem and also a translation to the portuguese language. I hope this contribution could solve many troubles to our community. Thanks for your help and your contribution. Carlos Costa
  7. Hi! Jack, Fantastic! Now it is OK. The error is in the checksum generator of my shop. I got your code and put it in the seo_assistant.php as a fixed value and it worked perfectly. Do you know what is the formula to generate the Google Checksum (GCH)? Why does my shop generate a number different of yours? My shop generates a number = 1459219499 Your shop generates a number = 234027593 -> Look the size is different!!! Is it possible to send me a copy of your seo_assistant.php by email to compare with mine? My email is [email protected] . I saw some variables like GMAG = 0xE6359A60 and $a = $b = 0x9E3779B9 in the seo_assistant.php. I don´t know what is this variables, but perhaps it is necessary adjust this value to my site. If yes, how can I calculate the right values? Many Thanks, Carlos Costa
  8. The trouble seems to be with checksum number. What parameters is this checksum number is relationship with? The number generated with my shop is 61459219499 and if you generate this checksum with your shop what is the checksum number you get? Is it possible you post the checksum number you get to my shop (www.hipertech.com.br)? If it is different, I can test with the number you get. Many thanks, Carlos Costa
  9. Dear Jack, I tried to put the command you mention on your post and got this: Warning: file(http://www.google.com/search?client=navclient-auto&ch=61459219499&ie=UTF-8&oe=UTF-8&features=Rank&q=info:www.hipertech.com.br) [function.file]: failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /home/hipertec/public_html/loja/admin/includes/functions/seo_assistant.php on line 96 bool(false) Warning: implode() [function.implode]: Bad arguments. in /home/hipertec/public_html/loja/admin/includes/functions/seo_assistant.php on line 98 Failed to read url: www.hipertech.com.br In bold you see the extra line included. Can you detect anything wrong? Many Thanks. Carlos Costa
  10. Sorry for the error of the last post. This is the corrected one. I have just installed the new version of SEO Assistant version 1.7. And I had the same error when I click on Page Rank button. I described below the error: Warning: file(http://www.google.com/search?client=navclient-auto&ch=61459219499&ie=UTF-8&oe=UTF-8&features=Rank&q=info:www.hipertech.com.br) [function.file]: failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /home/hipertec/public_html/loja/admin/includes/functions/seo_assistant.php on line 96 Warning: implode() [function.implode]: Bad arguments. in /home/hipertec/public_html/loja/admin/includes/functions/seo_assistant.php on line 97 Failed to read url: www.hipertech.com.br I have checked the "Allow_url_fopen" and it is set to ON. I have copied the configuration of my Linux server. Server OS: Linux 2.6.9-42.0.3.EL Database: MySQL 5.0.24-standard-log Server Date: 19/12/2006 17:31:28 Datebase Date: 19/12/2006 17:31:28 Server Up Time: 17:31:28 up 12 days, 1:57, 1 user, load average: 0.49, 0.66, 0.61 HTTP Server: Apache/1.3.37 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 PHP/4.4.3 FrontPage/5.0.2.2635.SR1.2 mod_ssl/2.8.28 OpenSSL/0.9.7a PHP Version: 4.4.3 (Zend: 1.3.0) Directive Local Value Master Value allow_call_time_pass_reference On On allow_url_fopen On On always_populate_raw_post_data Off Off arg_separator.input & & arg_separator.output & & asp_tags Off Off auto_append_file no value no value auto_prepend_file no value no value browscap no value no value default_charset no value no value default_mimetype text/html text/html define_syslog_variables Off Off disable_classes no value no value disable_functions no value no value display_errors On On display_startup_errors Off Off Above is some definitions of my PHP Server configuration. All other functions of the new version have functioned well but Page Rank. Is there any other parameters that it can cause this error in Page Rank function? Does anyone find out what is causing this error? This SEO Assistant Module is a very good one for those who wants to aprimorate your shop and also wants to check how search engine sees his own site. Congratulations for Jack_mcs for his action. Many Thanks. CarlosCosta
  11. I have just installed the new version of SEO Assistant version 1.7. And I had the same error when I click on Page Rank button. I described below the error: Warning: file(http://www.google.com/search?client=navclient-auto&ch=61459219499&ie=UTF-8&oe=UTF-8&features=Rank&q=info:www.hipertech.com.br) [function.file]: failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /home/hipertec/public_html/loja/admin/includes/functions/seo_assistant.php on line 96 Warning: implode() [function.implode]: Bad arguments. in /home/hipertec/public_html/loja/admin/includes/functions/seo_assistant.php on line 97 Failed to read url: www.hipertech.com.br I have checked the "Allow_url_fopen" and it is set to ON. I have copied the configuration of my Linux server. Server OS: Linux 2.6.9-42.0.3.EL Database: MySQL 5.0.24-standard-log Server Date: 19/12/2006 17:31:28 Datebase Date: 19/12/2006 17:31:28 Server Up Time: 17:31:28 up 12 days, 1:57, 1 user, load average: 0.49, 0.66, 0.61 HTTP Server: Apache/1.3.37 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 PHP/4.4.3 FrontPage/5.0.2.2635.SR1.2 mod_ssl/2.8.28 OpenSSL/0.9.7a PHP Version: 4.4.3 (Zend: 1.3.0) Directive Local Value Master Value allow_call_time_pass_reference On On allow_url_fopen On On always_populate_raw_post_data Off Off arg_separator.input & & arg_separator.output & & asp_tags Off Off auto_append_file no value no value auto_prepend_file no value no value browscap no value no value default_charset no value no value default_mimetype text/html text/html define_syslog_variables Off Off disable_classes no value no value disable_functions no value no value display_errors On On display_startup_errors Off Off Above is some definitions of my PHP Server configuration. All other functions of the new version has failed but Page Rank. Is there any other parameters that can cause this error in Page Rank function? Does anyone find out what is causing this error? This SEO Assistant Module is a very good one for those who wants to aprimorate your shop and also wants to check how search engine sees his site. Congratulations for Jack_mcs for his action. Many Thanks. CarlosCosta
  12. I installed SEO Assistant version 1.60 and works fine except Page Rank. I got an error that a describe below. That´s is the error: Warning: file(http://www.google.com/search?client=navclient-auto&ch=61459219499&ie=UTF-8&oe=UTF-8&features=Rank&q=info:www.hipertech.com.br) [function.file]: failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /home/hipertec/public_html/loja/admin/includes/functions/seo_assistant.php on line 96 Warning: implode() [function.implode]: Bad arguments. in /home/hipertec/public_html/loja/admin/includes/functions/seo_assistant.php on line 97 Please, is there anyone who knows how can I solve this problem? Will it be a Google blocking the site? Or will it be a problem in configuring my store? Many thanks! Carlos
×
×
  • Create New...