Show Posts


Messages - abantecart

Pages: 1 ... 186 187 [188] 189 190 ... 202
2806
API Development / Re: Extension Generator Usage?
« on: September 13, 2012, 09:56:15 AM »
Our goal to get user experience with one button install process that is currently set up in the marketplace.
We try to coordinate with AlgoZone marketplace that all extension go there, but they require extensive QA. This is good in a way, but slows things down.

2807
General Support / Re: Product not being displayed?
« on: September 13, 2012, 09:38:33 AM »
1. Please double check that you have selected correct store for the product
2. Rule of the thumb to clear cache in case something is not updated.


2808
API Development / Re: Extension Generator Usage?
« on: September 12, 2012, 07:08:47 PM »
Download extension archive in here:
http://www.abantecart.com/ecommerce-extensions-marketplace/67-utilities

Open archive and navigate to code/extensions/ directory.
Now copy (FTP) extension_generator directory completely with content to /extensions/ folder on your abantecart.
Last step you can activate/use extension in admin. You will locate it in extension section as any other extension in the system


2809
API Development / Re: Extension Generator Usage?
« on: September 12, 2012, 03:01:10 PM »
Unfortunately, there are no instructions yet. This was experimental, but we have big plans for it. We plan to extend to create developer tools. This will be worked on right after major release v1.1

You can simply click though it and if you have any questions, please post.

2810
General Extensions / Re: Forum title spelling?
« on: September 12, 2012, 02:57:42 PM »
Corrected. Thanks :P

2811
One more thing you can try.
Increase PHP memory limit.
This is located in php.ini file

Change:
memory_limit = 64M;
TO:
memory_limit = 128M;

2812
Thank you for reporting this issue.

Please refer to this post for procedures of reporting bugs:
http://forum.abantecart.com/index.php/topic,105.0.html

Thanks

2813
Can you give us an idea what page and task you performed when you noticed this happening?
It is possible happening due to server slow performance at the time or database access issues.
Please check the log file right after this happens and report what you see in the log.

You can locate log in admin -> system -> logs -> error log
or you can access log file on your server in /system/logs/error.txt

2814
General Support / Re: customer log in
« on: September 11, 2012, 08:02:42 AM »
If you refer to guest checkout, AbanteCart has a feature of guest checkout built in. This feature is enabled by default.

2815
General Support / Re: Google Analytics
« on: September 10, 2012, 09:37:24 PM »
Solution #2 was for controller, so it is multi-template solution and will work on any template.

2816
General Support / Re: cannot access admin area
« on: September 10, 2012, 09:35:37 PM »
Let's be on the same page here. Do you we still refer to installation steps?  There 2 sides of the coin here.
1. To make installation easy and pleasant experience
2. To make installation secure and cover all possible aspects for miss configured SSL. Not everyone have SSL configured properly right at the start.

#2 can cause problems in installation if there is SSL issues on the server prior to installation and that effects #1.

For now, to get maximum security at installation, provided data can be temporary and later changed in configuration file, when moved to production. This is discretionary to individual security policy.

Finely, I agree to add option with SSL enabled installation in the future after number of different testes.

2817
General Discussion / Re: Import / Export Design
« on: September 10, 2012, 10:32:29 AM »
Can you please, post or PM your import file. I will check this for you.

There was also a small bug in import part that I fixed for v1.1
We should have this version out later this week. We are working on final QA fixes.

2818
General Discussion / Re: Hard coded folder paths?
« on: September 10, 2012, 10:30:25 AM »
Yes. This is correct.

2819
Tips and Tricks / Re: Hi from Venezuela
« on: September 06, 2012, 08:19:09 AM »
Welcome Nielzen!

Thank you for your contribution to the project.
Feel free to post if you have any questions.

2820
General Support / Re: Google Analytics
« on: September 06, 2012, 08:14:15 AM »
If you need add generic code (show on all pages) into storefront head you can do this 2 ways.

1. Add code to TPL file /storefront/view/default/template/common/head.tpl
This whole file is pulled into <head></head>

2. You can include child block or just code into controller /storefront/controller/common/head.php
This can be done by adding (concatenating) to variable $head

If you need to add some script or CSS to head in some specific page only, you can use addScript or addStyle in that page controller.
These methods will append your script or CSS to the head on on that page.
Example:
Code: [Select]
$this->document->addScript(RDIR_TEMPLATE . 'javascript/jqgrid/js/jquery.jqGrid.min.js');
Code: [Select]
           $this->document->addStyle(array(
                'href' => $this->view->templateResource('/javascript/jquery/star-rating/jquery.rating.css'),
                'rel' => 'stylesheet',
                'media' => 'screen',
            ));


Pages: 1 ... 186 187 [188] 189 190 ... 202

Powered by SMFPacks Social Login Mod