Show Posts


Topics - thedarksyde

Pages: [1] 2 3
1
The setting in admin general does not apply to products if you have multiple parent categories.

I have selected and saved sort products as default by Name A-Z.

Go to http://openblindboxes.com

On a category on my site like Tokidoki > Cactus Friends you can navigate to it and see it loads sorting by A-Z.

However go to Kidrobot > Dunny > Dunny Series 2 and you can see it sorts by default.  Which is not A-Z. 

All my testing seems to show this occurs when the product has 2 levels of parent categories or more.  I have viewed many products on my site and this seems to be the pattern. 

This is only a defect submission and does is not a high priority fix. 

2
Support / Turn off category thumbnails in header...
« on: August 04, 2015, 10:54:04 AM »
I think I found somewhere to gain some speed in my site.  Every page loads every thumbnail for each category and I have a lot....So can I not have the image load in the categories?

I still would want them on the parent page....I will give examples below.


The first image I would like to no longer serve these images in the header...or to make it an option to turn off.  Even if there is no image loaded for that category it still uses the blank camera image.  I think I am going to need them all to be removed. 


I would still like the thumbs to load in the parent pages however.  The second image. 


3
Hostgator has taken my site down.  It says it was taking up too much of the server allocation and I need to repair some things to get it back online.  So essentially unless these things are fixed abantecart will no longer be allowed by hostgator for all clients.


Here is a list of recommendations from myphpadmin against my site.  Please let me know if any of these things can be fixed quickly?  If not then I will have to move to a new cart and anyone using hostgator will most likely have to as well. If I can do them on my side please let me know. I will be trying to figure out how to do some of these things. 


1.
Issue:
Too many sorts are causing temporary tables.

Recommendation:
Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending on your system memory limits

Justification:
Temporary tables average: 2.42 per second, this value should be less than 1 per hour.

Used variable / formula:
Sort_merge_passes / Uptime

Test:
value * 60 * 60 > 1

2.
Issue:
There are lots of rows being sorted.

Recommendation:
While there is nothing wrong with a high amount of row sorting, you might want to make sure that the queries which require a lot of sorting use indexed columns in the ORDER BY clause, as this will result in much faster sorting

Justification:
Sorted rows average: 13015.78 per second

Used variable / formula:
Sort_rows / Uptime

Test:
value * 60 >= 1

3.
Issue:
There are too many joins without indexes.

Recommendation:
This means that joins are doing full table scans. Adding indexes for the columns being used in the join conditions will greatly speed up table joins

Justification:
Table joins average: 115.63 per second, this value should be less than 1 per hour

Used variable / formula:
(Select_range_check + Select_scan + Select_full_join) / Uptime

Test:
value * 60 * 60 > 1


4.
Issue:
The rate of reading data from a fixed position is high.

Recommendation:
This indicates that many queries need to sort results and/or do a full table scan, including join queries that do not use indexes. Add indexes where applicable.

Justification:
Rate of reading fixed position average: 7701.54 per second, this value should be less than 1 per hour

Used variable / formula:
Handler_read_rnd / Uptime

Test:
value * 60 * 60 > 1

5.
Issue:
The rate of reading the next table row is high.

Recommendation:
This indicates that many queries are doing full table scans. Add indexes where applicable.

Justification:
Rate of reading next table row: 222113.76 per second, this value should be less than 1 per hour

Used variable / formula:
Handler_read_rnd_next / Uptime


6.
Issue:
Too many table locks were not granted immediately.

Recommendation:
Optimize queries and/or use InnoDB to reduce lock wait.

Justification:
Table lock wait rate: 7.16 per minute, this value should be less than 1 per hour

Used variable / formula:
Table_locks_waited / Uptime

7.
Issue:
Too many clients are aborted.

Recommendation:
Clients are usually aborted when they did not close their connection to MySQL properly. This can be due to network issues or code not closing a database handler properly. Check your network and code.

Justification:
Aborted client rate is at 40.14 per hour, this value should be less than 1 per hour

Used variable / formula:
Aborted_clients / Uptime

4
Upgrade / Changes to database queries in 1.2.3?
« on: August 02, 2015, 12:12:27 AM »
Have there been any major changes to database queries or database handling in 1.2.3?  Hostgator just quarantined my database for the time being saying my queries were taking up significant use on the server.  I was taking up for than 50% server allocation on queries.  They pulled these down in the last hour.    I have asked for specific queries that were causing the load but I have not gotten a response back yet.

Are the open connections supposed to be open after the query is completed? I am trying to figure out the issue.

Running Queries:
*************************** 1. row ***************************

STATE: Copying to tmp table
TIME: 0
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (1, 2, 67))
*************************** 2. row ***************************

STATE: Copying to tmp table
TIME: 0
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (1, 2, 140))
*************************** 3. row ***************************

STATE: Copying to tmp table
TIME: 0
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (1, 105))
*************************** 4. row ***************************

STATE: Copying to tmp table
TIME: 0
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (98, 99))
*************************** 5. row ***************************
USER: darksyde_dbuser
DB: darksyde_localhost
STATE: Sending data
TIME: 0
COMMAND: Query
INFO: SELECT COUNT(DISTINCT p2c.product_id) AS total
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (5, 48)
*************************** 6. row ***************************

STATE: Sending data
TIME: 0
COMMAND: Query
INFO: SELECT COUNT(DISTINCT p2c.product_id) AS total
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (129, 270)
*************************** 7. row ***************************

STATE: Copying to tmp table
TIME: 0
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (118, 186))
*************************** 8. row ***************************

STATE: Copying to tmp table
TIME: 1
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (118, 186))
*************************** 9. row ***************************

STATE: Sending data
TIME: 0
COMMAND: Query
INFO: SELECT COUNT(DISTINCT p2c.product_id) AS total
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (108, 109)
*************************** 10. row ***************************

STATE: Copying to tmp table
TIME: 1
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (230))
*************************** 11. row ***************************

STATE: Copying to tmp table
TIME: 1
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (42, 43))
*************************** 12. row ***************************

STATE: Sending data
TIME: 0
COMMAND: Query
INFO: SELECT COUNT(DISTINCT p2c.product_id) AS total
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (189, 190)
*************************** 13. row ***************************

STATE: Copying to tmp table
TIME: 0
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (189))
*************************** 14. row ***************************

STATE: Sending data
TIME: 0
COMMAND: Query
INFO: SELECT COUNT(DISTINCT p2c.product_id) AS total
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (70, 274)
*************************** 15. row ***************************

STATE: Copying to tmp table
TIME: 0
COMMAND: Query
INFO: SELECT DISTINCT p.manufacturer_id, m.name
FROM products p
LEFT JOIN manufacturers m ON p.manufacturer_id = m.manufacturer_id
WHERE p.product_id IN (SELECT DISTINCT p2c.product_id
FROM products_to_categories p2c
INNER JOIN products p ON p.product_id = p2c.product_id
WHERE p.status = '1' AND p2c.category_id IN (70, 272))

Open connections:

Recent Site Requests:
157.55.39.101   openblindboxes.com   GET   /le-merde-bangal-price-2011-dunny?keyword=2011%20Series
157.55.39.97   openblindboxes.com   GET   /aaron-meshon-dunny-2tone-series?keyword=Red%20Tail
157.55.39.97   openblindboxes.com   GET   /index.php?rt=product/search&keyword=Rob%20Zombie
157.55.39.97   openblindboxes.com   GET   /index.php?rt=product/search&keyword=Squid%20Kids%20Ink
157.55.39.97   openblindboxes.com   GET   /index.php?rt=product/search&keyword=flame
157.55.39.97   openblindboxes.com   GET   /montana-fatcap-series-1
157.55.39.98   openblindboxes.com   GET   /butters-south-park-kidrobot?keyword=South%20Park
157.55.39.98   openblindboxes.com   GET   /deranged-country-kid?keyword=Open%20Blind%20Boxes
157.55.39.98   openblindboxes.com   GET   /ryu-grey-street-fighter-series-1-kidrobot?keyword=World%20
173.35.126.96   openblindboxes.com   GET   /
173.35.126.96   openblindboxes.com   GET   /dunny-series-3?sort=date_modified-DESC
173.35.126.96   openblindboxes.com   GET   /dunny-series-3?sort=date_modified-DESC
173.35.126.96   openblindboxes.com   GET   /dunny-series-3?sort=date_modified-DESC
173.35.126.96   openblindboxes.com   GET   /dunny-series-3?sort=date_modified-DESC
173.35.126.96   openblindboxes.com   GET   /french?sort=date_modified-DESC
173.35.126.96   openblindboxes.com   GET   /french?sort=date_modified-DESC
173.35.126.96   openblindboxes.com   GET   /index.php?rt=checkout/cart
173.35.126.96   openblindboxes.com   GET   /index.php?rt=checkout/cart
173.35.126.96   openblindboxes.com   GET   /index.php?rt=checkout/cart
180.76.15.138   openblindboxes.com   GET   /marvel-frenzies
207.46.13.126   openblindboxes.com   GET   /index.php?rt=product/search&keyword=Big%20Bottle
207.46.13.34   openblindboxes.com   GET   /bruttino-tokidoki-cactus-friends?keyword=Kitty
207.46.13.34   openblindboxes.com   GET   /game-of-thrones-funko-mystery-minis
207.46.13.34   openblindboxes.com   GET   /mc-boooya-by-mad?keyword=Mad
220.181.108.81   openblindboxes.com   GET   /game-of-thrones-funko-mystery-minis
66.249.75.94   openblindboxes.com   GET   /scribe-bunny-costume-dunny-mardivale
76.28.36.114   openblindboxes.com   GET   /
99.135.189.220   openblindboxes.com   GET   /
99.135.189.220   openblindboxes.com   GET   /

5
Support / What is the idea behind the new "Blurb" field?
« on: July 27, 2015, 12:06:18 PM »
What is the blurb field used for?  I do not see it appear on my products page in the store, it just appears in the admin screen for a product, is it internal notes?

6
Support / URL to the image in the resource library.
« on: July 08, 2015, 09:24:10 PM »
Please, can you make the resource library have a link to the URL of the image, or to pop open the image or make it so I can find the image some how.  It is driving me crazy that I can't find my own images on my site. 

7
Support / Free shipping USA only?
« on: June 08, 2015, 11:21:57 AM »
So I have Free Shipping set up, but I also ship internationally.  I just had an International order and it applied Free Shipping without the country mark up.  I thought it would just apply the free US shipping and then the mark up with apply as well. 

Is there a way to do this, or a way to only have Free Shipping for USA customers?

8
Tips and Tricks / Can you download your inventory into excel?
« on: May 30, 2015, 09:54:16 AM »
Is there a way to download your inventory and its fields into something like excel?  Or even just the name and price? 

9
Upgrade / Critical error appears after upgrade to 1.2.2
« on: May 28, 2015, 12:57:59 PM »
This error appears in my dashboard after upgrade to 1.2.2

Message status:
critical
Date:
28/05/2015 11:54:02 AM
Number of repetitions:
14
Error: cannot to load config.xml of extension coupon. in /home1/darksyde/public_html/core/helper/utils.php on line 527

10
Upgrade / Core upgrade to 1.2.2 failed.
« on: May 26, 2015, 11:07:22 AM »
It did not break anything.  It does not complete.   Here is the error messages created when the core upgrade was attempted.

2015-05-26 10:02:15 - warning: AbanteCart core v.1.2.1 mysql_query(): 81 is not a valid MySQL-Link resource in <b>/home1/darksyde/public_html/core/database/mysql.php</b> on line <b>74</b>
2015-05-26 10:02:15 - warning: AbanteCart core v.1.2.1 mysql_error(): 81 is not a valid MySQL-Link resource in <b>/home1/darksyde/public_html/core/database/mysql.php</b> on line <b>114</b>
2015-05-26 10:02:15 - warning: AbanteCart core v.1.2.1 mysql_errno(): 81 is not a valid MySQL-Link resource in <b>/home1/darksyde/public_html/core/database/mysql.php</b> on line <b>114</b>
2015-05-26 10:02:15 - database error: AbanteCart core v.1.2.1 Error:
Error No:
SHOW TABLES FROM `darksyde_localhost` in <b>/home1/darksyde/public_html/core/database/mysql.php</b> on line <b>114</b>

11
On the Paypal standard extensions details page there is a spot for text_custom_logo_payment.  This puts your logo on the paypal page upon checkout.  But when I upload an image to this field it replaces the image I have for field Storefront Icon. 


12
Support / Is index.html supposed to be empty?
« on: April 22, 2015, 06:35:33 PM »
My index.html file is empty.   

In directoy.  Public_html/admin/system

Is this the right file and directory location, and is it supposed to be empty?   I was going to add something to it, when I saw this. 

13
Support / How do I get a refund on an extension?
« on: April 08, 2015, 12:50:10 PM »
The google product feed extension does not work, and has not been fixed.  I bought it Feb 12th and I have contacted Algozone since it didn't work and they said they were fixing it, but it has not been fixed.  I would like a refund.  How do I get one?

Here is the extension, you should take it down until they fix it. 

I also submitted a review and it has not shown up on the product page.

http://marketplace.abantecart.com/?mp_token=jjao2i9bjdsj7roblvo5asq5d7&mp_hash=13cac0f1376ad727a0aba2a67713d946&rt=product/product&product_id=120

14
Support / HTTP Headers max age.
« on: March 31, 2015, 05:59:14 PM »
Tried to check speed of the site with google and this is the main issue it said.

"Setting an expiry date or a maximum age in the HTTP headers for static resources instructs the browser to load previously downloaded resources from local disk rather than over the network."

It is mostly referencing every image that is loaded on the main page of the site, that they all could use cache expiry dates.  Is this something that can be done, or can you tell me where I would change this to make this happen?  The speed score is 35/100 for desktop and lower than 30 for mobile. 

15
Customization help / Can instagram be added to social icons?
« on: February 26, 2015, 10:55:52 AM »
Instagram would be a great addition to social icons block. 

Pages: [1] 2 3

Powered by SMFPacks Social Login Mod