Show Posts


Messages - Sam_78

Pages: 1 ... 8 9 [10] 11 12 ... 18
136
Installation and Configuration / Re: https redirect
« on: November 02, 2018, 05:42:04 PM »
you need to edit your .htaccess in /store folder
Change it to
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/store/$1 [R,L]

This should work and all your abanteCart icons would appear
Note: make sure that in your abanteCart setting you have set-up store URL as https://www.yourdomain.com/store, not www.yourdomain.com/store or https://yourdomain.com/store

137
General Support / Re: number of files exceeded
« on: November 02, 2018, 09:04:23 AM »
Yes this was server issue they fixed it.
General question though how many files should be there with about 5,000 product? and I only have AbanteCart on this server.

138
General Support / Re: number of files exceeded
« on: November 01, 2018, 05:09:09 PM »
Ok so I upgraded my plan now I have enough space but still my site is down

following are some errors I get:
2018-11-01 20:52:15 - App Error:  AbanteCart core v.1.2.12 Error: Unable to identify file path to template common/footer_top.tpl! Check blocks in the layout or enable debug mode to get more details. 10002 in /home/gwp0npxrqelo/public_html/core/engine/view.php on line 317
2018-11-01 20:52:16 - warning:  AbanteCart core v.1.2.12 session_start(): open(/tmp/sess_9ab85bdb677f8e2d6521792071, O_RDWR) failed: Disk quota exceeded (122) in <b>/home/gwp0npxrqelo/public_html/core/lib/session.php</b> on line <b>107</b>
2018-11-01 20:52:16 - warning:  AbanteCart core v.1.2.12 session_start(): Failed to read session data: files (path: /tmp) in <b>/home/gwp0npxrqelo/public_html/core/lib/session.php</b> on line <b>107</b>
2018-11-01 20:52:16 - warning:  AbanteCart core v.1.2.12 session_start(): open(/tmp/sess_9ab85bdb6780975d9457581934, O_RDWR) failed: Disk quota exceeded (122) in <b>/home/gwp0npxrqelo/public_html/core/lib/session.php</b> on line <b>114</b>
2018-11-01 20:52:16 - warning:  AbanteCart core v.1.2.12 session_start(): Failed to read session data: files (path: /tmp) in <b>/home/gwp0npxrqelo/public_html/core/lib/session.php</b> on line <b>114</b>
2018-11-01 20:52:16 - warning:  AbanteCart core v.1.2.12 fopen(/home/gwp0npxrqelo/public_html/system/cache/localization/676447828e39abeabf3cbb976903648f.php): failed to open stream: Disk quota exceeded in <b>/home/gwp0npxrqelo/public_html/core/cache/file.php</b> on line <b>125</b>
2018-11-01 20:52:16 - App Error:  AbanteCart core v.1.2.12 Error: Unable to identify file path to template common/footer_top.tpl! Check blocks in the layout or enable debug mode to get more details. 10002 in /home/gwp0npxrqelo/public_html/core/engine/view.php on line 317

I have attached my resources image

I still can't login to my backend


139
General Support / Re: number of files exceeded
« on: November 01, 2018, 09:12:17 AM »
ok so this many files is normal? I thought I did something wrong. I will change my hosting then.

140
General Support / number of files exceeded
« on: October 30, 2018, 04:48:55 PM »
Hi I am hosting my site on godaddy and they have limit of maximum 250,000 files and AbanteCart cart has used 250,033 files and now I am not able to add any product in my cart or login to backend to clear cache. Can you tell me which files to delete my site is down. also how to avoid this situation as I think I am doing something wrong there can not be 250k files

I also noticed one strange thing inside thumbnail all my folders has index.php file that has this <?php die('Restricted Access!'); ?>  just one line.

141
General Support / Question about login name on forgot password
« on: October 03, 2018, 06:13:20 PM »
Hi,
I think this is a bug V 1.2.11
We have turned off settings->checkout->Require login name so on our site customer don't need to enter login name they use there email address as their login name and it works but when they click on forgot password it asks for login name and email address customers really get confused here I think it should only be email address right?
code comes from \storefront\view\default\template\pages\account\forgotten.tpl Line 27 but I don't know how to catch that particular line as this is made via for loop
<fieldset>
      <?php
         foreach ( $form['fields'] as $field_name => $field) {
      ?>
         <div class="form-group">
            <label class="control-label col-sm-4"><?php echo ${'entry_'.$field_name}; ?></label>
            <div class="input-group col-sm-4">
                <?php echo $form['fields'][$field_name]; ?>
            </div>
         </div>      
      <?php
         }
      ?>   
</fieldset>
Can you tell me what to edit here as I can't upgrade to v 1.2.13 as there are many core files changed and I think this will be small fix
Any help is appreciated

142
General Support / Re: php version list
« on: October 01, 2018, 09:21:18 AM »
Hello.
To work with PHP 7+ it is highly recommended to upgrade AbanteCart to the latest version 1.2.13
I understand but there are many core changes that we made to V 1.2.11 so I don't think it is possible sometime soon to move to 1.2.13
I installed a fresh version of 1.2.11 and it worked on 7.1 so I am pretty sure it will work but I just wanted to be sure of any issues that you guys are aware of.

143
General Support / php version list
« on: September 28, 2018, 11:55:33 AM »
Hello everyone
Is there a list of php versions supported but each versions of AbanteCart (I know it says requires minimum php version but I am looking for all the php versions)
I am using 1.2.11 and it works on 5.6.30 and I need to upgrade it so can someone tell me whether it will work with 7.1.9. I have implemented it locally on XAMP and everything works fine but before I make any changes on server I need to be sure.

144
General Support / Re: auto send emails after few weeks
« on: September 25, 2018, 04:58:24 PM »
This depend on your PHP skills.
You can start looking into Task CLI script that is processing tasks.

https://github.com/abantecart/abantecart-src/blob/master/public_html/task_cli.php

You can create your own script to send desired emails or build a task controller & model that will do what you need.

Depending on the method that you choose, we can guide you more

Thanks I will work on this and let you know if I have any questions.

145
General Support / auto send emails after few weeks
« on: September 24, 2018, 12:44:06 PM »
Hi,
Is there an easy way to trigger emails after 4 weeks of purchase.
I would like to email customers to review my product after they have received it with some custom text and coupons. If not can you guide me how can I start developing which controllers, files, conditions to look for etc.

146
General Support / Re: Import issue
« on: September 10, 2018, 11:44:20 AM »
ok so after importing all the products we need to add all the new product_id into `products_to_stores` table with store_id = 0 right?

147
General Support / Import issue
« on: September 07, 2018, 04:56:14 PM »
Hi I imported 4,269 products from a csv file
in dropdown I selected product table and then selected fields
my CSV file only had status, SKU, product name, cost, sell price and manufacture so I mapped those fields and clicked on load it was completed without any errors in error log.
this is the file that was generated products_import_1.txt and it says this:

2018-09-08 2:15:30 - Error: Missing images data array for products.
2018-09-08 2:15:30 - Processing record for product Macallan 10yrs 2798 .
2018-09-08 2:15:30 - Created product 'Macallan 10yrs' with ID 2110
2018-09-08 2:15:30 - Error: Missing images data array for products.
2018-09-08 2:15:30 - Processing record for product Ciroc Coconut 2799 .
2018-09-08 2:15:30 - Created product 'Ciroc Coconut' with ID 2111

Do I need to have an image because I don't see image as a required value.

Task has been completed
Import Process has been completed. 4269 row(s) processed.
For more details see log file products_import_1.txt

after it says 4269 products have been loaded I do see them in products table and manufacturers are inserted in their table and I can see those manufacturers in store admin panel but I don't see them in catalog->products can someone help me
I have cleared browser cache and system cache. Version = 1.2.12

148
General Support / Re: Search by product attribute
« on: September 04, 2018, 02:53:10 PM »

149
Share the link to your site and we can inspect it.

150
General Support / Re: when is a record created in table custom_lists
« on: July 03, 2018, 05:11:35 PM »
Thanks

That's what I wanted. I am using this extension http://marketplace.abantecart.com/smart-product-search-and-result-filtering
and there is one condition that reads if row is in custom_lists
I was not able to search some products as they were not in custom_list so I just wanted to make sure before I remove that condition.

Pages: 1 ... 8 9 [10] 11 12 ... 18

Powered by SMFPacks Social Login Mod