Show Posts


Messages - aiswarjya

Pages: 1 [2] 3
16
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

17
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.

18
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.

19
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.

20
Development Help Needed / Re: Image file name decode.
« on: April 08, 2016, 10:34:41 AM »
WHAT IS THIS NUMBER 100329 MEAN ???

21
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?

22
Installation and Configuration / Re: Image not show in 1.2.6
« on: April 03, 2016, 03:55:11 PM »
not working

23
Installation and Configuration / Re: Image not show in 1.2.6
« on: April 03, 2016, 02:08:24 PM »
Yap i copy these image folder from old version to new version but it not work.

24
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

25
General Support / Re: Cart Migration and Picture Questions
« on: January 30, 2016, 05:58:14 AM »
i want to migrate my abantecart 1.2.2 to 1.2.5 version so how can i .we have 10k products.
i want to migrate my cart from 1.2.2 to latest version 1.2.5
i want to transfer all my database to there .So give me the all process.  how can i.Admin please give me the solution .

26
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

27
Extensions and Add-Ons / Add new Menu on Admin Sidebar under Design
« on: January 26, 2016, 12:35:22 PM »
Hi AbanteCart
How i can add a new Parent Menu on the admin sidebar under Design menu.

28
General Support / Re: Site running very slow
« on: December 28, 2015, 05:01:41 AM »
my site url- please give us a permanent solution

29
General Support / Re: Site running very slow
« on: December 28, 2015, 05:00:14 AM »
After debug selection off,also my site is slow .
And small small process like view,product search add cart these simple process also take more time.please give us a permanent solution.

30
General Support / Re: product_specials table not working.
« on: December 22, 2015, 02:09:28 AM »
Thanks it work.

Pages: 1 [2] 3

Powered by SMFPacks Social Login Mod