25 Nov
Posted by Robocop as Miscelanea
Debido al cambio de sintaxis en las nuevas versiones de MySQL algunas partes del OsCommerce dejan de funcionar. En este caso son las categorías y en ocasiones las búsquedas.
Las subcategorías en OsCommerce funcionan como búsquedas avanzadas de las categorías. Por casualidad, este problema solo afecta a las búsquedas avanzadas y no a las normales. El error es el siguiente:
select count(p.products_id) as total from products_description pd, products p left join manufacturers m on p.manufacturers_id = m.manufacturers_id, products_to_categories p2c left join specials s on p.products_id = s.products_id where p.products_status = ‘1′ and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = ‘3′ and p2c.categories_id = ‘24′ [TEP STOP]
La solución pasa por editar dos archivos del OsCommerce siguiendo los pasos que vienen a continuación:
PASO 1:
Abre el archivo catalog/index.php (si no existe el directorio catalog, es el index del public_html) y se cambia todo este bloque:
// show the products of a specified manufacturer
if (isset($HTTP_GET_VARS['manufacturers_id'])) {
if (isset($HTTP_GET_VARS['filter_id']) && tep_not_null($HTTP_GET_VARS['filter_id'])) {
// We are asked to show only a specific category
$listing_sql = “select ” . $select_column_list . ” p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from ” . TABLE_PRODUCTS . ” p, ” . TABLE_PRODUCTS_DESCRIPTION . ” pd, ” . TABLE_MANUFACTURERS . ” m, ” . TABLE_PRODUCTS_TO_CATEGORIES . ” p2c left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id where p.products_status = ‘1′ and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = ‘” . (int)$HTTP_GET_VARS['manufacturers_id'] . “‘ and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = ‘” . (int)$languages_id . “‘ and p2c.categories_id = ‘” . (int)$HTTP_GET_VARS['filter_id'] . “‘”;
} else {
// We show them all
$listing_sql = “select ” . $select_column_list . ” p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from ” . TABLE_PRODUCTS . ” p, ” . TABLE_PRODUCTS_DESCRIPTION . ” pd, ” . TABLE_MANUFACTURERS . ” m left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id where p.products_status = ‘1′ and pd.products_id = p.products_id and pd.language_id = ‘” . (int)$languages_id . “‘ and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = ‘” . (int)$HTTP_GET_VARS['manufacturers_id'] . “‘”;
}
} else {
// show the products in a given categorie
if (isset($HTTP_GET_VARS['filter_id']) && tep_not_null($HTTP_GET_VARS['filter_id'])) {
// We are asked to show only specific catgeory
$listing_sql = “select ” . $select_column_list . ” p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from ” . TABLE_PRODUCTS . ” p, ” . TABLE_PRODUCTS_DESCRIPTION . ” pd, ” . TABLE_MANUFACTURERS . ” m, ” . TABLE_PRODUCTS_TO_CATEGORIES . ” p2c left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id where p.products_status = ‘1′ and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = ‘” . (int)$HTTP_GET_VARS['filter_id'] . “‘ and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = ‘” . (int)$languages_id . “‘ and p2c.categories_id = ‘” . (int)$current_category_id . “‘”;
} else {
// We show them all
$listing_sql = “select ” . $select_column_list . ” p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from ” . TABLE_PRODUCTS_DESCRIPTION . ” pd, ” . TABLE_PRODUCTS . ” p left join ” . TABLE_MANUFACTURERS . ” m on p.manufacturers_id = m.manufacturers_id, ” . TABLE_PRODUCTS_TO_CATEGORIES . ” p2c left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id where p.products_status = ‘1′ and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = ‘” . (int)$languages_id . “‘ and p2c.categories_id = ‘” . (int)$current_category_id . “‘”;
}
}
por este código:
// show the products of a specified manufacturer
if (isset($HTTP_GET_VARS['manufacturers_id'])) {
if (isset($HTTP_GET_VARS['filter_id']) && tep_not_null($HTTP_GET_VARS['filter_id'])) {
// We are asked to show only a specific category
$listing_sql = “select ” . $select_column_list . ” p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from (” . TABLE_PRODUCTS . ” p, ” . TABLE_PRODUCTS_DESCRIPTION . ” pd, ” . TABLE_MANUFACTURERS . ” m, ” . TABLE_PRODUCTS_TO_CATEGORIES . ” p2c ) left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id where p.products_status = ‘1′ and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = ‘” . (int)$HTTP_GET_VARS['manufacturers_id'] . “‘ and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = ‘” . (int)$languages_id . “‘ and p2c.categories_id = ‘” . (int)$HTTP_GET_VARS['filter_id'] . “‘”;
} else {
// We show them all
$listing_sql = “select ” . $select_column_list . ” p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from (” . TABLE_PRODUCTS . ” p, ” . TABLE_PRODUCTS_DESCRIPTION . ” pd, ” . TABLE_MANUFACTURERS . ” m) left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id where p.products_status = ‘1′ and pd.products_id = p.products_id and pd.language_id = ‘” . (int)$languages_id . “‘ and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = ‘” . (int)$HTTP_GET_VARS['manufacturers_id'] . “‘”;
}
} else {
// show the products in a given categorie
if (isset($HTTP_GET_VARS['filter_id']) && tep_not_null($HTTP_GET_VARS['filter_id'])) {
// We are asked to show only specific catgeory
$listing_sql = “select ” . $select_column_list . ” p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from (” . TABLE_PRODUCTS . ” p, ” . TABLE_PRODUCTS_DESCRIPTION . ” pd, ” . TABLE_MANUFACTURERS . ” m, ” . TABLE_PRODUCTS_TO_CATEGORIES . ” p2c) left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id where p.products_status = ‘1′ and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = ‘” . (int)$HTTP_GET_VARS['filter_id'] . “‘ and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = ‘” . (int)$languages_id . “‘ and p2c.categories_id = ‘” . (int)$current_category_id . “‘”;
} else {
// We show them all
$listing_sql = “select ” . $select_column_list . ” p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from ((” . TABLE_PRODUCTS_DESCRIPTION . ” pd, ” . TABLE_PRODUCTS . ” p) left join ” . TABLE_MANUFACTURERS . ” m on p.manufacturers_id = m.manufacturers_id, ” . TABLE_PRODUCTS_TO_CATEGORIES . ” p2c) left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id where p.products_status = ‘1′ and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = ‘” . (int)$languages_id . “‘ and p2c.categories_id = ‘” . (int)$current_category_id . “‘”;
}
}
PASO 2
Archivo catalog/avanced_search_result.php (si no existe el directorio catalog el archivo es avanced_search_result.php del public_html) y se cambia al igual que antes lo siguiente:
$from_str = “from ” . TABLE_PRODUCTS . ” p left join ” . TABLE_MANUFACTURERS . ” m using(manufacturers_id), ” . TABLE_PRODUCTS_DESCRIPTION . ” pd left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id, ” . TABLE_CATEGORIES . ” c, ” . TABLE_PRODUCTS_TO_CATEGORIES . ” p2c”;
por este código:
$from_str = “from ( ” . TABLE_PRODUCTS . ” p left join ” . TABLE_MANUFACTURERS . ” m using(manufacturers_id), ” . TABLE_PRODUCTS_DESCRIPTION . ” pd )left join ” . TABLE_SPECIALS . ” s on p.products_id = s.products_id, ” . TABLE_CATEGORIES . ” c, ” . TABLE_PRODUCTS_TO_CATEGORIES . ” p2c “;
Con estos simples cambios el programa debería funcionar.
*Actualización el 04 de diciembre del 2010*
Al parecer el editor del wordpress modificó las comillas del código fuente, por eso algunos tuvieron problemas al implementar la solución si copiaron y pegaron el código. De antemano mis disculpas y gracias por sus comentarios positivos.
108 Responses
Robocop
December 6th, 2009 at 11:28 pm
1This error happened to me some time ago and I solved it using the aforementioned method.
_cre8or_
December 25th, 2009 at 6:02 pm
2I want to quote your post in my blog. It can?
And you et an account on Twitter?
BernieR
January 18th, 2010 at 12:27 pm
3Greatings, Thank you! I would now go on this blog every day!
BernieR
ludros
January 21st, 2010 at 2:58 pm
4se soluciono el error 1054 pero ahora me sale otro error 1064 – You have an error in your SQL syntax, porque
Robocop
January 21st, 2010 at 5:17 pm
5Es un error en alguna consulta, quizás tienes algún módulo que modificó la estructura de la base. Intenta publicar aqui el sql a ver qué puede estar mal. Pero primero vuelve a hacer los pasos y revisalos uno por uno.
Saludos,
Dougles
March 8th, 2010 at 11:42 pm
6?Hola!
Super post, tienen que marcarlo en Digg
Gracias
Dougles
Wilson Cachay
June 12th, 2010 at 3:57 am
7yo tengo el siguiente error como lo soluciono
1054 – Unknown column ‘c.customers_notes’ in ‘field list’
select c.customers_id, c.customers_lastname, c.customers_firstname, c.customers_email_address, a.entry_country_id, c.customers_notes from customers c left join address_book a on c.customers_id = a.customers_id and c.customers_default_address_id = a.address_book_id order by c.customers_lastname, c.customers_firstname limit 0, 20
[TEP STOP]
Robocop
June 14th, 2010 at 6:41 pm
8Hola Wilson, visita este enlace:
http://forums.oscommerce.com/topic/209920-cant-delete-customers/
Tiene que ver con la ficha de los clientes. A lo mejor instalaste alguna extensión que ocasionó el problema. Espero que te sirva.
ruigoligo
June 28th, 2010 at 3:18 pm
9thank you
Radix
August 4th, 2010 at 2:21 pm
10Excelente post, gracias Robocop fué de mucha ayuda
STEVEN
July 29th, 2011 at 5:48 am
11Buy@Discount.Coral.Calcium” rel=”nofollow”>.…
Buyit now…
TERRENCE
July 29th, 2011 at 9:08 am
12Purchase@Discount.Coral.Calcium” rel=”nofollow”>..…
Buyit now…
SALVADOR
July 29th, 2011 at 9:32 am
13Cheap@Coral.Calcium.Online” rel=”nofollow”>..…
Buygeneric meds…
ENRIQUE
July 29th, 2011 at 10:23 am
14Buy@Abana.Online” rel=”nofollow”>.…
Buynow it…
BRANDON
July 29th, 2011 at 11:13 am
15Buy@Discount.Abana” rel=”nofollow”>..…
Buyno prescription…
LEWIS
July 29th, 2011 at 12:02 pm
16Order@Cheap.Abana” rel=”nofollow”>..…
Buynow it…
RONNIE
July 29th, 2011 at 5:09 pm
17Buy@Cheap.Abilify” rel=”nofollow”>..…
Buynow it…
JEFFREY
July 30th, 2011 at 2:48 pm
18Order@Cheap.Acai” rel=”nofollow”>……
Buynow it…
RUSSELL
July 31st, 2011 at 7:09 am
19Order@Generic.Acai” rel=”nofollow”>..…
Buywithout prescription…
SALVADOR
July 31st, 2011 at 8:39 am
20Order@Acai.Without.Prescription” rel=”nofollow”>……
Buynow…
DONNIE
July 31st, 2011 at 8:08 pm
21Buy@Discount.Coral.Calcium” rel=”nofollow”>..…
Buywithout prescription…
EDUARDO
August 1st, 2011 at 9:55 pm
22Purchase@Abilify.Without.Prescription” rel=”nofollow”>..…
Buygeneric pills…
PERRY
August 2nd, 2011 at 6:08 am
23Buy@Coral.Calcium.Online” rel=”nofollow”>……
Buywithout prescription…
MIKE
August 2nd, 2011 at 6:42 am
24Buy@Cheap.Coral.Calcium” rel=”nofollow”>.…
Buydrugs without prescription…
ROY
August 2nd, 2011 at 10:45 am
25Purchase@Cheap.Coral.Calcium” rel=”nofollow”>……
Buywithout prescription…
DUSTIN
August 3rd, 2011 at 11:44 am
26Purchase@Generic.Abilify” rel=”nofollow”>..…
Buygeneric drugs…
DENNIS
August 3rd, 2011 at 7:36 pm
27Buy@Acai.Online” rel=”nofollow”>.…
Buyit now…
GUY
August 3rd, 2011 at 9:18 pm
28Buy@Cheap.Acai” rel=”nofollow”>.…
Buywithout prescription…
WILLIE
August 3rd, 2011 at 9:52 pm
29Buy@Discount.Acai” rel=”nofollow”>……
Buygeneric drugs…
FELIX
August 3rd, 2011 at 10:25 pm
30Buy@Discount.Acai” rel=”nofollow”>……
Buyit now…
DONALD
August 4th, 2011 at 12:40 am
31Order@Acai.Online” rel=”nofollow”>……
Buyit now…
CHARLIE
August 4th, 2011 at 1:14 am
32Order@Cheap.Acai” rel=”nofollow”>..…
Buynow it…
ALFRED
August 4th, 2011 at 3:00 am
33Order@Discount.Acai” rel=”nofollow”>……
Buynow…
GARY
August 4th, 2011 at 3:31 am
34Order@Discount.Acai” rel=”nofollow”>..…
Buywithout prescription…
WILLIE
August 4th, 2011 at 7:37 am
35Purchase@Discount.Acai” rel=”nofollow”>……
Buygeneric drugs…
WALLACE
August 4th, 2011 at 12:39 pm
36Get@Acai.Online” rel=”nofollow”>……
Buygeneric drugs…
VICTOR
August 4th, 2011 at 6:10 pm
37Buy@Acai.Without.Prescription” rel=”nofollow”>.…
Buygeneric drugs…
TONY
August 5th, 2011 at 7:23 am
38Buy@Discount.Energy.Boost” rel=”nofollow”>.…
Buynow it…
RICK
August 5th, 2011 at 8:33 am
39Order@Energy.Boost.Online” rel=”nofollow”>.…
Buygeneric drugs…
BYRON
August 5th, 2011 at 9:43 am
40Order@Cheap.Energy.Boost” rel=”nofollow”>.…
Buynow it…
MATHEW
August 5th, 2011 at 1:05 pm
41Purchase@Cheap.Energy.Boost” rel=”nofollow”>.…
Buyno prescription…
SAM
August 5th, 2011 at 2:15 pm
42Purchase@Discount.Energy.Boost” rel=”nofollow”>.…
Buynow it…
RUBEN
August 5th, 2011 at 6:45 pm
43Buy@Cheap.Accupril” rel=”nofollow”>.…
Buygeneric meds…
BILLY
August 5th, 2011 at 11:01 pm
44Order@Discount.Accupril” rel=”nofollow”>.…
Buygeneric drugs…
JIMMY
August 6th, 2011 at 7:03 am
45Buy@Accutane.Online” rel=”nofollow”>.…
Buygeneric drugs…
NATHAN
August 6th, 2011 at 9:18 am
46Order@Accutane.Online” rel=”nofollow”>.…
Buynow it…
CARL
August 6th, 2011 at 3:34 pm
47Cheap@Accutane.Online” rel=”nofollow”>.…
Buygeneric meds…
BOB
August 6th, 2011 at 6:43 pm
48Buy@Accutane.Without.Prescription” rel=”nofollow”>.…
Buygeneric drugs…
WILLIAM
August 7th, 2011 at 10:00 am
49Buy@Aciphex.Online” rel=”nofollow”>.…
Buygeneric pills…
ADAM
August 7th, 2011 at 1:00 pm
50Order@Aciphex.Online” rel=”nofollow”>.…
Buyno prescription…
ROY
August 10th, 2011 at 10:39 pm
51Cheap@Actonel.Without.Prescription” rel=”nofollow”>……
Buynow it mou…
CLIFTON
August 11th, 2011 at 3:32 am
52Buy@Cheap.Actoplus.Met” rel=”nofollow”>..…
Buygeneric meds qmo…
DARYL
August 11th, 2011 at 5:13 am
53Order@Cheap.Actoplus.Met” rel=”nofollow”>..…
Buygeneric drugs krg…
VICTOR
August 11th, 2011 at 10:50 am
54Order@Actos.Online” rel=”nofollow”>..…
Buygeneric pills zdg…
RAY
August 11th, 2011 at 9:05 pm
55Purchase@Generic.Actos” rel=”nofollow”>.…
Buygeneric drugs zfk…
RODNEY
August 12th, 2011 at 6:59 pm
56Order@Cheap.Adalat” rel=”nofollow”>..…
Buygeneric drugs lzt…
MARCUS
August 12th, 2011 at 10:39 pm
57Buy@Advair.Online” rel=”nofollow”>..…
Buynow it vhx…
LAWRENCE
August 13th, 2011 at 1:50 am
58Order@Discount.Coral.Calcium” rel=”nofollow”>..…
Buywithout prescription dyo…
LLOYD
August 13th, 2011 at 1:10 pm
59Order@Cheap.Abilify” rel=”nofollow”>……
Buywithout prescription xiu…
JEREMIAH
August 13th, 2011 at 7:28 pm
60Buy@Generic.Abilify.Without.Prescription” rel=”nofollow”>..…
Buynow it tly…
EVERETT
August 13th, 2011 at 9:35 pm
61Purchase@Abilify.Without.Prescription” rel=”nofollow”>..…
Buygeneric meds abx…
MELVIN
August 14th, 2011 at 1:02 am
62Purchase@Generic.Abilify.5mg.10mg.15mg.20mg.30mg” rel=”nofollow”>..…
Buywithout prescription yen…
PHILIP
August 14th, 2011 at 4:37 am
63Abilify@5mg.10mg.15mg.20mg.30mg.Without.Prescription” rel=”nofollow”>……
Buygeneric meds svb…
ALFRED
August 14th, 2011 at 7:01 am
64Buy@Cheap.Acai” rel=”nofollow”>..…
Buyno prescription wkp…
BRUCE
August 14th, 2011 at 9:07 am
65Order@Acai.Online” rel=”nofollow”>..…
Buyno prescription jui…
LEROY
August 14th, 2011 at 3:49 pm
66Cheap@Acai.Online” rel=”nofollow”>……
Buyit now sge…
MARION
August 14th, 2011 at 6:07 pm
67Buy@Generic.Acai” rel=”nofollow”>.…
Buygeneric drugs mby…
RONALD
August 14th, 2011 at 7:23 pm
68Buy@Acai.Without.Prescription” rel=”nofollow”>.…
Buygeneric drugs itj…
JERRY
August 15th, 2011 at 1:40 am
69Cheap@Generic.Acai” rel=”nofollow”>……
Buydrugs without prescription vrg…
GLENN
August 15th, 2011 at 8:34 am
70Cheap@Generic.Acai.500mg” rel=”nofollow”>..…
Buyno prescription tao…
CHRISTOPHER
August 15th, 2011 at 12:53 pm
71Buy@Energy.Boost.Online” rel=”nofollow”>..…
Buynow it cey…
MARION
August 15th, 2011 at 6:30 pm
72Order@Discount.Energy.Boost” rel=”nofollow”>..…
Buyno prescription gdt…
MITCHELL
August 15th, 2011 at 7:42 pm
73Purchase@Energy.Boost.Online” rel=”nofollow”>..…
Buydrugs without prescription faj…
VINCENT
August 15th, 2011 at 8:48 pm
74Purchase@Cheap.Energy.Boost” rel=”nofollow”>.…
Buyit now ojb…
BRUCE
August 16th, 2011 at 1:10 am
75accupril@and.muscle.pain” rel=”nofollow”>……
Buynow it zdg…
GERARD
August 16th, 2011 at 10:53 pm
76Get@Accupril.Online” rel=”nofollow”>..…
Buyit now irl…
JASON
August 17th, 2011 at 10:50 am
77Get@Accutane.Online” rel=”nofollow”>……
Buywithout prescription ccw…
LEWIS
August 17th, 2011 at 5:39 pm
78Purchase@Generic.Accutane” rel=”nofollow”>.…
Buygeneric drugs axm…
RONNIE
August 18th, 2011 at 4:39 am
79Accutane@10mg.20mg.Without.Prescription” rel=”nofollow”>..…
Buygeneric drugs ajd…
DALE
August 18th, 2011 at 10:27 pm
80Buy@Generic.Aciphex.Without.Prescription” rel=”nofollow”>……
Buyit now knc…
MARVIN
August 19th, 2011 at 1:47 pm
81Aciphex@20mg.Without.Prescription” rel=”nofollow”>.…
Buynow it lmg…
MILTON
August 21st, 2011 at 12:16 pm
82Buy@Actonel.Online” rel=”nofollow”>..…
Buydrugs without prescription hak…
BRYAN
August 21st, 2011 at 8:28 pm
83Order@Cheap.Actonel” rel=”nofollow”>.…
Buygeneric drugs nih…
CARLOS
August 21st, 2011 at 11:11 pm
84Purchase@Actonel.Online” rel=”nofollow”>……
Buygeneric drugs vbr…
VINCENT
August 22nd, 2011 at 12:30 am
85Purchase@Cheap.Actonel” rel=”nofollow”>.…
Buydrugs without prescription xab…
DWIGHT
August 22nd, 2011 at 8:37 am
86Buy@Generic.Actonel.Without.Prescription” rel=”nofollow”>.…
Buygeneric drugs ouw…
AARON
August 22nd, 2011 at 11:13 am
87Order@Actonel.Without.Prescription” rel=”nofollow”>..…
Buyno prescription jwi…
RICARDO
August 22nd, 2011 at 1:55 pm
88Buy@Cheap.Advair” rel=”nofollow”>.…
Buygeneric drugs hwi…
FRED
August 23rd, 2011 at 10:08 am
89Purchase@Advair.Online” rel=”nofollow”>..…
Buyno prescription jui…
ALVIN
August 24th, 2011 at 8:46 am
90Buy@Advair.25mcg50mcg.25mcg125mcg.25mcg250mcg.50mcg500mcg.50mcg100mcg.50mcg250mcg” rel=”nofollow”>..< /blo…
Buygeneric meds dxy…
NICK
August 24th, 2011 at 12:47 pm
91Buy@Generic.Advair.25mcg50mcg.25mcg125mcg.25mcg250mcg.50mcg500mcg.50mcg100mcg.50mcg250mcg” rel=”nofollow”>..< …
Buyno prescription lka…
REGINALD
August 24th, 2011 at 6:46 pm
92< a href="http://trig.com/advair4746/biography/?ml=Generic-Advair-25mcg/50mcg-25mcg/125mcg-25mcg/250mcg-50mcg/500mcg-50mcg/100mcg-50mcg/250mcg-Without-Prescription Generic@Advair.25mcg50mcg.25mcg125mcg.25mcg250mcg.50mcg500mcg.50mcg100mcg.50mcg2…
Buydrugs without prescription jlg…
BILLY
August 25th, 2011 at 10:49 am
93Get@Aggrenox.Online” rel=”nofollow”>……
Buynow fjl…
RENE
August 25th, 2011 at 5:29 pm
94Order@Cheap.Albenza” rel=”nofollow”>……
Buynow it sxk…
ANGELO
August 27th, 2011 at 2:29 am
95aciphex@cancer.buy” rel=”nofollow”>..…
Buygeneric drugs…
JULIUS
August 27th, 2011 at 1:12 pm
96allopurinol@cheap.buy” rel=”nofollow”>..…
Buyit now…
JULIUS
August 28th, 2011 at 12:45 am
97savlon@antiseptic.cream.canada” rel=”nofollow”>..…
Buynow…
BARRY
August 28th, 2011 at 7:51 am
98risperdal@vs.abilify” rel=”nofollow”>.…
Buygeneric drugs…
REX
August 28th, 2011 at 9:11 am
99abilify@and.sleep.issues” rel=”nofollow”>..…
Buydrugs without prescription…
BRYAN
August 28th, 2011 at 10:47 am
100can@you.get.acai.berries.in.the.grocery.store” rel=”nofollow”>.…
Buydrugs without prescription…
RICHARD
August 28th, 2011 at 11:30 pm
101allegra@generic.purchase” rel=”nofollow”>……
Buynow…
JOHNNY
August 29th, 2011 at 2:09 am
102aloe@vera.juice.for.sale” rel=”nofollow”>..…
Buyit now…
BOB
August 29th, 2011 at 12:52 pm
103side@effects.of.aricept” rel=”nofollow”>..…
Buyit now…
TYLER
August 29th, 2011 at 4:51 pm
104buy@real.strong.armour” rel=”nofollow”>.…
Buydrugs without prescription…
gerard
September 16th, 2011 at 7:45 pm
105……
Search music now US Charts…
greg
September 22nd, 2011 at 9:17 pm
106Download@pop.Rock” rel=”nofollow”>……
Search rock US Charts…
daronwolff
October 3rd, 2011 at 9:46 pm
107Muchas gracias! muy buen material
PATRICK
October 18th, 2011 at 12:28 am
108recent advances in cancer breast…
Buy_now…
Categories
Archives
Links
Meta
Calendar
Recent Entries
Recent Comments
Most Commented
SoluSistemas: Blog Informativo is proudly powered by WordPress - BloggingPro theme by: Design Disease