Show Posts


Topics - abantecart

Pages: 1 2 3 [4] 5 6
46
It had been a great year, and the end of the year is near. Wishing everyone on a forum a safe and enjoyable Holidays!

Wishing Merry Christmas best and Happy New Year!!


47
Support / MOVED: Integrate aweber in the Newsletter
« on: November 12, 2013, 09:27:08 AM »

49
Opinions / CSS and icon based new logo for AbanteCart.
« on: September 18, 2013, 07:56:25 PM »
We are thinking of css and icon based new logo for AbanteCart.

See some ideas and vote!

http://www.abantecart.com/logos.html

51
Opinions / Draft mode before saving settings
« on: June 10, 2013, 11:00:21 PM »
Offer ability to preview changes before they will be applied.

Draft changes will be automatically saved and applied on draft preview mode.

These feature will allow to preview and test settings and other updates before they will be applied and saved.

52
General Support / Where is an Error Log File?
« on: June 10, 2013, 09:20:05 PM »
If you need to report a problem or post a question about some problem in AbanteCart, developers on the forum might ask about last record of errors in the error log.

Error log can be accessed with 2 different methods.

1. Admin Error Log can be accessed at Admin -> System -> Logs -> Error Log.

2. In case you can not access admin you can locate error log directly in the file /system/logs/error.txt

Do not post all the errors or warnings from your log. Try to point only exact error record(s) that is related to the question or problem you report.
 

53
Support / Expedited Support and Development
« on: May 22, 2013, 08:33:08 AM »
As AbanteCart grow progress and expand with new features, our development team work very hard to fix possible issues, improve and expand with requests as we get them.
Unfortunately, not all requests can be addressed within short time frames.

Below is the list of the cases when we can expedite issue resolution and provide expedited fix or development:

1. Issue reported is related to the core functionality and issue cause application to fail on main features or make application unusable.  This is based on original distribution of the software.
Problems can be reported based on this post http://forum.abantecart.com/index.php/topic,105.0.html

2. If you are very active on the forum with answers to others and help community in some other form.

3. You are partner or sponsor to our project.

4. If you need extension for third party service or integration, you can contact that third party company, and ask them to get in touch with AbanteCart to establish partnership. Once partnership is established, extension can be developed faster and possibly free.   

5. Custom development or commercial support
If you need help with managing AbanteCart or developing custom features, check our partners that can help you:
http://www.abantecart.com/partners


56
Security / Light cross-site scripting vulnerability fix
« on: February 16, 2013, 02:55:47 PM »
Light cross-site scripting vulnerability has been detected in AbanteCart.
Detected vulnerability does not cause any harm to AbanteCart or content.
To fix the problem, please read below.

Effected versions: Up to 1.1.3

About Risk:  This is a low risk cross-site scripting vulnerability. Not potential harm to code, database or server structure.

About the fix:
Fix is only 1 file that can be replaces or change manually
Option 1 (version 1.1.3):
Locate file: /core/engine/html.php  and replace with attached file

Option 2 (prior to version 1.1.3)
Locate and open file: /core/engine/html.php    
Locate  below code (about line # 114)

Code: [Select]
public function removeQueryVar($url, $vars) {
list($url_part, $q_part) = explode('?', $url);
parse_str($q_part, $q_vars);
if (!is_array($vars)) {
$vars = array( $vars );
}
foreach ($vars as $v)
unset($q_vars[ $v ]);

$new_qs = urldecode(http_build_query($q_vars));
return $url_part . '?' . $new_qs;
}

Replace with below code:

Code: [Select]
public function removeQueryVar($url, $vars) {
list($url_part, $q_part) = explode('?', $url);
parse_str($q_part, $q_vars);
if (!is_array($vars)) {
$vars = array( $vars );
}
foreach ($vars as $v)
unset($q_vars[ $v ]);

foreach ($q_vars as $key => $value)
$q_vars[$key] = $this->request->clean($value);

$new_qs = urldecode(http_build_query($q_vars));
return $url_part . '?' . $new_qs;
}

This issue is toughly addressed and eliminated in coming version of AbanteCart

57
FAQ & Tutorials / Quick Help Videos
« on: February 04, 2013, 02:58:31 AM »
Sometimes it is easier to see once than read or hear few times :)

We have create few videos with some interesting features in AbanteCart that is hard to explain in a simple way.

Check our youtube videos and subscribe to get updates on new videos added. http://www.youtube.com/user/abantecart/videos?view=0&flow=grid

Auto-translation:
http://www.youtube.com/watch?v=50VZire81S8

Quick search and auto-suggest
http://www.youtube.com/watch?v=sNRsVJMEuk4

Multi-store


And more



58
New Features Discussion / MOVED: My opinions
« on: January 23, 2013, 03:04:00 AM »

59
News and Announcements / Need help with setting up unit testing
« on: January 20, 2013, 11:42:08 AM »
Anyone who has experience with setting up unit testing or selenium, please help.

AbanteCart project at the stage where we need to control the quality of future development and setup automated unit testing and visual testings.

We picked PHPinit for code unit testing and selenium for automated visual testing

Anyone with experience and willing to help, please PM me for further discussion

60
Opinions / Split Payment for checkout and account deposit/credit
« on: January 10, 2013, 02:20:58 AM »
Some eCommerce sites offer feature to pay for the order with multiple payments. Considering that some orders might be large amount or if gift cards or some other fixed funds payments are used.
In addition, account credit can be offered to deposit funds into account and use of them towards new orders.

Please vote if you think this feature is important or not

Pages: 1 2 3 [4] 5 6

Powered by SMFPacks Social Login Mod