Show Posts


Topics - aiswarjya

Pages: [1] 2
1
iN MY HOSTING THEY ARE PROVIDING US 2.50 LACS. FILES/INODES

bUT IN CPANEL IT WAS SHOWING THAT BELOW:

image  ( 174124 inodes)
 resources  ( 14108 inodes)

So when i deleted some products,product is deleted but, the images is still there in my image folder.So how can i delete these un-necessary image files.

iMAGES ARE STORED IN BOTH IMAGE AND RESOURCE FOLDER.What is the difference between it,Why the image is not stored in a single folder.Please response us ASAP.


ThANKS AND REGARDS,





2
Support / User can upload a product.
« on: June 30, 2016, 11:22:10 PM »
Hi Abantecart,
Is this possible that any user can upload there product, description, price etc and it display on our site when i approve that product.

3
Support / Hide / Block message and Notification
« on: June 29, 2016, 11:08:04 PM »
Hello Abantecart, How can i hide the message receive from Abantecart and Extenssion in message section. I just only show the  'New Order' and 'error notification' on the notificaton and message. In which php file i can block this manually or hide it.

4
General Support / User can add Balance to his account
« on: June 01, 2016, 04:42:45 PM »
Is this possible to a user to add there account balance in there account manually

5
In Abantecart 1.2.7 i install AddThis Extension but when i set Status=On the product page is not display properly, What is the solution for it?

6
General Support / Error: Payment method required!
« on: May 31, 2016, 11:05:50 AM »
i only active "Cash On Delivery" payment method but when i perches some thing then the  message is show "Error: Payment method required!"

I only active Cash On Delivery method in my cart. Please help me.

7
Support / Invite and earn money.
« on: May 24, 2016, 07:14:03 AM »
Is there any extension available like people invite some one and get money in his account if the invited person is register or perches something more then 2$.

8
Support / General error: 2006 MySQL server has gone away
« on: May 03, 2016, 12:53:40 AM »
How to fix it

2016-05-03 4:37:34 - : AbanteCart core v.1.2.6 SQLSTATE[HY000]: General error: 2006 MySQL server has gone away in <b>/home/site/public_html/site.com/core/database/apdomysql.php</b> on line <b>52</b>

9
Support / Get An Order Information in SMS
« on: April 23, 2016, 05:08:00 PM »
Hay Abantecart,
Thanks for adding SMS notification system. Its help me for Offline notification even if i am not in an Office.

But i need some more information on new order.

When an order is placed the notification show "Web Store Name:New Order #15 has been placed!".
But i want information like -

Order No:15;
Date:19/04/1016;
Time:10:02;
Name:Aiswarjya;
Contact:+12345765434;
email:qwerty@example.com
Address:Plot 13/2, Silver Easte;
Order:Benefit Bella Bamba  2 $28.00 $56.00;
Sub-Total:$56.00;
Flat Shipping Rate:$2.00;
Total:$58.00

(Address is shipping address only)
Please tell me were i can change the code so that i got full information of an order.

I Have also an Idea for feature development
================================
in the Notification settings  in New Order admin can select which information is getting by SMS Like,

----------------------------------------------
                            Run Order         Status
----------------------------------------------
Order No                     1                  ON
Date                            2                  ON
Time   
Name                          3                  ON
Contact                      4                  ON
email         
Address                     5                   ON
Order                         6                   ON
Total                          7                   ON

10
hi Abantecart
When some one Check there Pin code in checkout in PIN/ZIP box it allowed  to every one.How  I want to set up a esteemed pin for delivery area.

11
Hi Abantecart
Is this possible to Store Image and Resource folder in Dropbox/Google drive's shareable folder. When i upload a Product then it's image is store in the google drive and when someone search this product then the image is retrieve from the Dropbox/Google drive's.

12
Support / Help me to migrate image.
« on: April 09, 2016, 08:52:57 PM »
Hi Abantecart
I am successfully migrate data from Abantecart to Abantecart  but face some little problem to migrate Image.
I create abantecart.php migration file which is help me to migrate the data between abantecart to abantecart but not image.

Step 1: Download Abantecart and extract it.

Step 2: Put the code in "admin\language\english\tool\migration.xml" line 70
    <definition>
        <key>entry_cart_abantecart</key>
        <value><![CDATA[Abantecart]]></value>
    </definition>


Step 3: Replace this on "admin\model\tool\migration.php" line 32 and line 738
* @var Migration_Abantecart|Migration_Oscmax|Migration_OC15x|Migration_Zen|Migration_Osc|Migration_OC|Migration_Cre  $cart

Step 4: Upload "abantecart.php" file to "admin\model\tool\migration" folder

Step 5: Upload it on your server and install it.

Step 6: Go to System>Data>Migration Tool to start migration.

In this file i remove some of the image related code so it work fine. But in abantecartImage.php (Rename it "abantecartImage.php" to "abantecart.php" before uploading) file all the code are available  and on this script during migration the error will come.

The problem is in (Code copy from OpenCart migration file available in "admin\model\tool\migration" folder)
line 92-109:
                $result = array();
      foreach ($categories->rows as $item) {
         $result[$item['category_id']] = $item;
         $item['image'] = trim($item['image']);
         $result[$item['category_id']]['image'] = array();
         if ($item['image']) {
            $img_uri = $this->data['cart_url'];
            if (substr($img_uri, -1) != '/') {
               $img_uri .= '/';
            }
            $img_uri .= 'image/';
            $result[$item['category_id']]['image']['db'] = str_replace(' ', '%20', $img_uri . $item['image']);
         }
      }
      return $result;
   }

line 122-135:
                $result = array();
      foreach ($items->rows as $item) {
         $result[$item['manufacturer_id']] = $item;
         $item['image'] = trim($item['image']);
         $result[$item['manufacturer_id']]['image'] = array();
         if ($item['image']) {
            $img_uri = $this->data['cart_url'];
            if (substr($img_uri, -1) != '/') {
               $img_uri .= '/';
            }
            $img_uri .= 'image/';
            $result[$item['manufacturer_id']]['image']['db'] = str_replace(' ', '%20', $img_uri . $item['image']);
         }
      }

line 186-207:
      $result = array();
      foreach ($products->rows as $item) {
         $result[$item['product_id']] = $item;
         $item['image'] = trim($item['image']);
         $result[$item['product_id']]['image'] = array();
         if ($item['image']) {
            $img_uri = $this->data['cart_url'];
            if (substr($img_uri, -1) != '/') {
               $img_uri .= '/';
            }
            $img_uri .= 'image/';
            $result[$item['product_id']]['image']['db'] = str_replace(' ', '%20', $img_uri . $item['image']);
            //additional images
            $imgs = $this->src_db->query("SELECT * FROM " . $this->data['db_prefix'] . "product_image WHERE product_id = '".$item['product_id']."' ORDER BY product_id, sort_order");
            foreach ($imgs->rows as $img) {
               $uri = str_replace(' ', '%20', $img_uri . $img['image']);
               if (!in_array($uri, (array)$result[$img['product_id']]['image'])) {
                  $result[$img['product_id']]['image'][] = $uri;
               }
            }
         }
      }

Please help me to change this code and successfully migrate all database as well as image of the Product, Category, Manufacture and other from one Abantecart to another.

13
Development Help Needed / Image file name decode.
« on: April 07, 2016, 06:40:39 PM »
hi Abantecart,
When i migrate data from open cart the name of the file will change.
for a file name "ipod_classic_1-500x500.jpg" in opencart but it store in abantecart as a "ipod_classic_1_jpg-100329-380x380.jpg".

In ipod_classic_1_jpg-100329-380x380.jpg the name ipod_classic_1_jpg is the file name and 380x380.jpg is the weidth , height and extension but  what is this number 100329 mean. In which php file this code is generated during migration process.

Is this number is related to any category and manufacture ?
Is this store anywhere in database?

14
Installation and Configuration / Image not show in 1.2.6
« on: April 03, 2016, 01:31:30 AM »
Hi Abantecart
i manual insert MySQL data from Abantecart 1.2.2 to Abantecart 1.2.6 and transfer image folder from Abantecart 1.2.2 to Abantecart 1.2.6. But when i open the website all the products, categories and manufacturers name and description are correctly display but the no Image are display in products, categories and manufacturers.

What is the problem for not display any image???
and how to transfer these image from 1.2.2 to 1.2.6 to display it correctly.

The data i transfer from the database to database are given below.
i collect these data from the migration.php file.
i am using PDO option in installation.

categories,
category_descriptions` WHERE language_id=$languageId,
categories_to_stores,
url_aliases` WHERE query LIKE 'category_id=%',
resource_map` WHERE object_name = 'categories',
products,
product_descriptions` WHERE language_id=$languageId,
products_to_categories,
products_to_downloads,
products_to_stores,
product_options,
product_option_descriptions,
product_option_values,
product_option_value_descriptions,
product_specials,
products_featured,
products_related,
product_tags,
reviews,
manufacturers,
manufacturers_to_stores,
url_aliases WHERE `query` LIKE 'product_id=%',
products_related,
resource_map WHERE object_name = 'products',
customers,
addresses,
orders,
order_downloads,
order_history,
order_options,
order_products,
order_statuses,
order_totals

Please help me to correctly transfer the image folder and file

15
General Support / Problem in 'online_customers' Mysql Killed Queries Logs
« on: January 28, 2016, 01:51:21 AM »
Helo Abantecart
Suddenly I found that my site take very slow response. When i contact to my server administrator they said that the problem in the SQL query.


localhost   2015-12-05 17:07:47   mand:Query   :DELETE   site_online_customers` WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`date_added`) > 3600
localhost   2015-12-05 17:07:47   mand:Query   :DELETE   site_online_customers` WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`date_added`) > 3600
localhost   2015-12-05 17:07:47   mand:Query   :DELETE   site_online_customers` WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`date_added`) > 3600
localhost   2015-12-05 17:07:47   mand:Query   :DELETE   site_online_customers` WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`date_added`) > 3600
localhost   2015-12-05 17:07:47   mand:Query   :DELETE   site_online_customers` WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`date_added`) > 3600
localhost   2016-01-15 13:01:41   mand:Query   :UPDATE   ducts SET viewed = viewed + 1 WHERE product_id = '2867'
localhost   2016-01-19 13:41:51   mand:Query   :DELETE   site_online_customers` WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`date_added`) > 3600
localhost   2016-01-19 13:42:11   mand:Query   :DELETE   site_online_customers` WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`date_added`) > 3600

Pages: [1] 2

Powered by SMFPacks Social Login Mod