[Contribution] SEO-G
#1061
Posted 31 May 2009, 20:04
I had a similar problem. I just removed the review pages from being created by SEO-G. You can do this by excluding the product_review_info.php in the G-EXCLUDE database.
......
On another note I had problems with this contribution and the PayPal_Shopping_Cart_IPN contribution. You need to declare the seo class in the IPN's application_top_inc.php, the same way you do in the catalog application_top.php.
Cheers
#1062
Posted 03 June 2009, 07:59
It doesn't work.
Can you tell me your g-type configuration??? maybe that can help me.... I hope
eyekandee, on May 31 2009, 09:04 PM, said:
I had a similar problem. I just removed the review pages from being created by SEO-G. You can do this by excluding the product_review_info.php in the G-EXCLUDE database.
......
On another note I had problems with this contribution and the PayPal_Shopping_Cart_IPN contribution. You need to declare the seo class in the IPN's application_top_inc.php, the same way you do in the catalog application_top.php.
Cheers
#1063
Posted 03 June 2009, 11:59
Sorry in advance for my bad inglish
I need someone validate one issue in this contribution.
In the product page we have the link to the manufactor product page
everithing goes weel but if the product url have this caracther & , in this case the link is broken and the sistem redirect to the catalog/index.
if the link d'ont have this sign everithing goes well.
At the momente the solution i have is this.
in the redirect.php
//-MS- SEO-G Support Added
if( isset($HTTP_GET_VARS['goto']) ) {
$new_url = urldecode(($HTTP_GET_VARS['goto']));
// $new_url = htmlspecialchars(urldecode($HTTP_GET_VARS['goto']));
$HTTP_GET_VARS['goto'] = $new_url;
}
//-MS- SEO-G Support Added EOM
in this case i need to have this configuration
seo-g safe mode true
seo.g strict validation false
and in the exclude
add popup_image.php
I need to now if i have a problem with the instalation or if we have one problem in the seo-g with "htmlspecialchars"
thanks in advance
#1064
Posted 04 June 2009, 20:15
Warning: fopen(/home/bout/public_html/sitemap.xml.gz) [function.fopen]: failed to open stream: Permission denied in /home/bout/public_html/admin/seo_reports.php on line 114
Warning: Cannot modify header information - headers already sent by (output started at /home/bout/public_html/admin/seo_reports.php:114) in /home/bout/public_html/admin/includes/functions/general.php on line 22
Any ideas on a fix?
#1065
Posted 25 June 2009, 00:40
#1066
Posted 21 July 2009, 17:41
1194 - Table 'seo_url' is marked as crashed and should be repaired
select seo_url_get, seo_url_org from seo_url where seo_url_key = '84693b934522ab7df52b6e2438006a4e'
[TEP STOP]
And when I access to Admin / SEO-G / Reports, I receive this message:
Warning: mysql_query() [function.mysql-query]: Unable to save result set in /home2/xxxxx/public_html/admin/includes/functions/database.php on line 45
1194 - Table 'su' is marked as crashed and should be repaired
select count(*) as total from seo_url su left join seo_frequency sf on (sf.seo_frequency_id=su.seo_frequency_id)
[TEP STOP]
TEXT_INFO_SEO_G
Can anybody help me?
Edited by misterqar, 21 July 2009, 17:41.
#1067
Posted 27 July 2009, 23:33
For those getting the redirect to the cookie usage page - I hit this problem today for the first time after a number of installs that had went fine.
Eventually traced it to the root.php file :
I had
if ($request_type == 'NONSSL') {
define('DIR_WS_CATALOG', DIR_WS_HTTP_CATALOG);
} else {
define('DIR_WS_CATALOG', DIR_WS_HTTPS_CATALOG);
}
Which I had cut and pasted in from the application_top file - I should have had:
if ($request_type == 'NONSSL') {
define('DIR_WS_CATALOG', DIR_WS_HTTP_CATALOG);
$g_relpath = HTTP_SERVER . DIR_WS_CATALOG;
$g_server = HTTP_SERVER;
} else {
define('DIR_WS_CATALOG', DIR_WS_HTTPS_CATALOG);
$g_relpath = HTTPS_SERVER . DIR_WS_CATALOG;
$g_server = HTTPS_SERVER;
}
I had failed to add in the
$g_relpath = HTTP_SERVER . DIR_WS_CATALOG;
$g_server = HTTP_SERVER;
after copying from application_top
May be of some help - Graeme
#1068
Posted 07 August 2009, 20:28
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in D:\_wamp\www\domain\root.php on line 136
2 days trying to fix it without luck, can someone please check whats wrong?
Dont knwo whats wrong
#1069
Posted 07 August 2009, 20:50
$tmp_array = array_merge($HTTP_GET_VARS,$tmp_array);
for
$tmp_array = array_merge((array)$HTTP_GET_VARS,$tmp_array);
and no more errors received, but the urls are not show Search Engines Optimized, are displayed like
index_cpath-1.html for categories
and
product_info_products_id-1.html for products
#1070
Posted 08 August 2009, 07:23
How can I change the SEO-G to work with another language_id than language_id=1?
#1073
Posted 10 August 2009, 14:16
Jol, on Aug 9 2009, 12:35 PM, said:
I found a solution. I changed language id in the file seo-url.php so now it works fine. Now I have another problem instead. I get redirected to the cookie usage page when I try to add a product in the shopping cart. What can I do about that?
#1074
Posted 11 August 2009, 18:04
#1075
Posted 15 August 2009, 14:45
I've made my own menu, for design matters, but I can't get it to work with SEO-G. It still links to '?cPath=id'.
It's a simple menu, that just loops through the database and checks for subcategories. No functions or arrays. Do I have to add anything to my script, or how do I fix this issue?
Thanks in advance.
#1076
Posted 15 August 2009, 15:13
dbstr, on Aug 15 2009, 04:45 PM, said:
I've made my own menu, for design matters, but I can't get it to work with SEO-G. It still links to '?cPath=id'.
It's a simple menu, that just loops through the database and checks for subcategories. No functions or arrays. Do I have to add anything to my script, or how do I fix this issue?
Thanks in advance.
Or can anyone tell me how the links should be made? I've tried almost everything that springs to mind, but I might have missed something in all my attempts..
#1078
Posted 19 August 2009, 10:55
Any idea how to split site map in smaller parts - my site map is about 90 MB and google refuse to take it
Thank You
#1079
Posted 26 August 2009, 05:02
There was so many post on this mod and I did a search for my problem but couldn't find it and I apologize if this has already been discussed. I am using this mod and I am using a datafeed from my whole sale which has 10K products.
Some of the products have the same product name but are different things but it is creating the same link for these products so no matter which product you click it goes to the first one created.
I know I can manually edit these but because of the number of products this could take forever. Is there a way to auto detect this and force it to add a number at the end like
clarins-by-clarins.html
clarins-by-clarins-2.html
clarins-by-clarins-3.html
etc....?
Thanks for the hand.
#1080
Posted 25 September 2009, 16:14
I've just installed the SEO-G installation into a clean OSCommerce platform. Seem to have had a few problems before it worked. It's been a long week. But all sorted now apart from one thing.
When I tried to use the search and advanced search options, neither is working, it is as if the form is incomplete. Has anybody had this problem before?
On another note.
I have been trying to see if I can include the phrase /product/ and /brand/ into the products and manufacturers link. Has anybody been able to achieve this. if so please can someone point me in the right direction so I can modifiy them.
e.i.
from
.somewebsite.com/some-shiny-product.
to
.somewebsite.com/product/some-shiny-product.
I know there is another contribution which works this way which I'm currently using, but I've been unsucessful in adapting this for google xml sitemap feeds. getting fedup with the manual convertion when you have over 500 to do
If anybody can help if some tells me that this contribution has the same problems I would very much appreciate it.
Shane
Edited by Shane Harrrison, 25 September 2009, 16:16.














