-
Content count
268 -
Joined
-
Last visited
-
Days Won
1
Everything posted by sijo
-
Can someone help me with this error: Error: Undefined index: products_text_attributes_text File: product_info.php Line: 328 How can I fix this?
-
Can someone help me with this error: Error: Undefined property: sts_default::$enabled File: includes/classes/sts.php Line: 94 How do I fix this?
-
This is right and works fine at my site.. This line of yours are not the same as mine and that one Jan referred to. Here is mine: $orders_query_raw = "select o.orders_id, o.customers_name, o.customers_id, o.payment_method, o.date_purchased, o.last_modified, o.currency, o.currency_value, s.orders_status_name, ot.text as order_total, cg.customers_group_name from " . TABLE_ORDERS . " o left join " . TABLE_ORDERS_TOTAL . " ot on (o.orders_id = ot.orders_id) left join " . TABLE_CUSTOMERS . " c on c.customers_id = o.customers_id left join " . TABLE_CUSTOMERS_GROUPS . " cg using(customers_group_id), " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . (int)$cID . "' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' and ot.class = 'ot_total' order by orders_id DESC"; Compare mine and yours line and you'll see... If you have installed SPPC right, you should have the same line as me and Jan..?
-
Thanks for your help. I have got it to work now. It was another attrib contrib that caused the problem. I removed the code for that contrib an now everything is ok..
-
This I'm not sure how to find. Please tell me how. I have fond this in phpMyAdmin, but dont know what to look for...
-
Try again with other location of the screenshots: I have got a strange problem here. AAM will not save all attributes. Here is what I try to save: After I have saved this an go back, the only thing saved is this: As you can see, only 2 of 4 attributes are saved. What can cause this and what can I do to fix this problem? Any help would be appreciated.
-
I have got a strange problem here. AAM will not save all attributes. Here is what I try to save: After I have saved this an go back, the only thing saved is this: As you can see, only 2 of 4 attributes are saved. What can cause this and what can I do to fix this problem? Any help would be appreciated.
-
KissER Error Handling & Debugging [contribution]
sijo replied to FWR Media's topic in General Add-Ons Support
I'm getting too much E_NOTICE errors filling up the log-file, so I made a litle switch: On top of catalog/includes/kiss_error_handler.php: define('KISS_ERROR_REPORTING_SKIP', 'E_NOTICE'); Around line 279 I have made this changes: if ($error_type <> KISS_ERROR_REPORTING_SKIP) { $error_string = 'Date / Time: ' . date("d-m-Y H:i:s") . PHP_EOL; $error_string .= 'Error Type: [' . $error_type . '] ' . $detail['string'] . PHP_EOL; $error_string .= 'On line ' . $detail['line'] . PHP_EOL . 'File ' . $detail['file'] . PHP_EOL; $error_string .= str_repeat( '-+', 30 ) . PHP_EOL . PHP_EOL; $this->writeToFile( $error_string ); } Is this ok, or do you have a better way to do this? (It is working) -
I'm using SPPC and Simple Multiple Images together, and it works great..
-
In your catalog/includes/languages/english/login.php file you'll find: // define the email address that can change customer_group_id on login define('SPPC_TOGGLE_LOGIN_PASSWORD', 'your@email.com'); // EOF Separate Pricing Per Customer You can do this: //define('SPPC_TOGGLE_LOGIN_PASSWORD', 'your@email.com'); ..or this: define('SPPC_TOGGLE_LOGIN_PASSWORD', ''); Both ways make it go away..
-
If you have done exact what I described, then I have no ideas. Sorry..
-
KissER Error Handling & Debugging [contribution]
sijo replied to FWR Media's topic in General Add-Ons Support
You are sooooo right.. I'm now using this contribution and it is very helpful when I try to get rid of all errors, and that's NOT one or two.. -
Nice contributon that is wery helpful when I now try to get rid of all errors. Done! Will see what happens now. ThanX..
-
Have got this error here: -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Date / Time: 03-02-2010 12:25:54 Error Type: [E_USER_WARNING] Usu_PopUpImage Incorrect pID presented: 328XoR88 On line 105 File includes/modules/ultimate_seo_urls5/modules/Usu_PopUpImage.php -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ What causes this and what can I do to fix this?
-
Is there any way to tell the customers which group thay belong to? In my admin I can see which groups my customers belongs to, but if I log in as a Retail customer I dont know that. If yes, how? I appreciate all help on this.
-
I did find the problem. During the installation I had managed to delete one (1) line that I souldn't..;-0
-
Please help me with this: I have just installed SPPC and almost everything is working fine, but.. I can no longer logg inn as a user. I can create a new account and stay logged in. But if I log off and then try to logg inn again I get this message: Error: No match for E-Mail Address and/or Password. Has someone seen this before and have any solution, or does anyone know what to do?
-
You can also try without this replacement...
-
I have found a solution for this that is working here. Try this replacements: In catalog/admin/whos_online.php *FIND: function initialize() { if (GBrowserIsCompatible()) { geoXml = new GGeoXml("<?php echo HTTP_CATALOG_SERVER . "/visitors_georss.php";?>"); map = new GMap2(document.getElementById("map_canvas")); map.setCenter(new GLatLng(36,2), 1); map.addControl(new GLargeMapControl()); map.addControl(new GLargeMapControl()); map.addOverlay(geoXml); } } *REPLACE WITH: function initialize() { if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("map_canvas")); geoXml = new GGeoXml("http://www.your.site...tors_georss.php"); !!Fill in this for your site!! map.addControl(new GLargeMapControl()); map.setCenter(new GLatLng(36,2), 1); map.addControl(new GLargeMapControl()); map.addOverlay(geoXml); } } function toggleMyKml() { if (toggleState == 1) { map.removeOverlay(geoXml); toggleState = 0; } else { map.addOverlay(geoXml); toggleState = 1; } } *FIND: <tr><td align="center" colspan="2"><div id="map_canvas" style="width: 800px; height: 400px"></div></td></tr> *REPLACE WITH: <tr><td align="center" colspan="2"><div id="map_canvas" style="width: 800px; height: 400px"></div> <input type="button" value="Toggle Markers" onclick="toggleMyKml();"/></td></tr> In catalog/visitors_georss.php *FIND: $city = iconv("UTF-8", "ISO-8859-1", $data['city']); *REPLACE WITH: $city = utf8_encode("UTF-8", "ISO-8859-1", $data['city']); *FIND: echo " <description>$html</description>\n"; *REPLACE WITH: echo " <description></description>\n"; That's all!
-
KissMT Dynamic SEO Meta & Canonical Header Tags
sijo replied to FWR Media's topic in General Add-Ons Support
I'll try this and see what happens. If you want me to test anything since I produce this error here, then please let me know. -
KissMT Dynamic SEO Meta & Canonical Header Tags
sijo replied to FWR Media's topic in General Add-Ons Support
I'm using r72 -
This is what this line tells me: www.brentwoodnursery.co.za/dir_ws_http_catalog/login.php/ You have not configured your shop/includes/configure.php file. Inside that file you should have: define('DIR_WS_HTTP_CATALOG', '/shop/'); ...but I think you dont..;-) Look at all your define('?????? to make shure they are right configured.
-
KissMT Dynamic SEO Meta & Canonical Header Tags
sijo replied to FWR Media's topic in General Add-Ons Support
Why do I get this using your KissER: Date / Time: 30-01-2010 18:48:48 Error Type: [E_STRICT] Non-static method KissMT_Modules::stripStopWords() cannot be called statically, assuming $this from compatible context KissMT_Module On line 134 File includes/modules/kiss_meta_tags/abstracts/kiss_modules.php -
Your wish is my command! ;-) You find a new update with this implemented here now: Supertracker v3.4 update Have fun!
-
Make sure you do this: Upload admin/includes/application_top.php =>> admin/includes/application_top.php Upload shop/includes/application_top.php =>> shop/includes/application_top.php Because the error you get in /home/brentbna/public_html/shop/admin/includes/application_top.php on line 128 is the file that should be in shop/includes/application_top.php You have exchanged those files.