Log in

View Full Version : Major Additions - microCART: Shopping System for vB4


Pages : 1 2 3 [4]

Reece^B
11-20-2012, 07:03 PM
Is there manual updates in this thread?

starletclub
12-12-2012, 05:40 PM
Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/cart.php on line 71

Fatal error: require_once() [function.require]: Failed opening required '/home/*/public_html/*/*/functions_wysiwyg.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/*/public_html/*/cart.php on line 71

micheal332001
12-15-2012, 10:45 AM
Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/cart.php on line 71

Fatal error: require_once() [function.require]: Failed opening required '/home/*/public_html/*/*/functions_wysiwyg.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/*/public_html/*/cart.php on line 71

edit the file and remove these 2 lines and all will be fine.

Fatal Hazard
12-15-2012, 08:18 PM
Hi, I can't see the tab. It all looks like it is working but no tab shows

Any Ideas?

thanks in advance

Fatal Hazard
12-19-2012, 03:03 PM
I can't seem to get the upload path right. I keep linking it to the downloads directory on my server but it still does not work.

Ichigo88
12-22-2012, 07:10 PM
Hi!
the product its work perfectly on mu vb 4.2.0 patch 3.

but i have a small question!

how to change the user in other primary usergruop?
now the usergroup upgrade its make in addizional.

thanks inadvance

comunidadmh
12-24-2012, 01:40 AM
Hello people!

I wanted to know if anyone knows of any mods (I'm willing to buy it) that allows the purchase and sale of items between users of a forum. As already known sites pagins buying and selling things. Anyone know of a mod like this?

sorry for my English, use google translator xD

Christos Teriakis
12-24-2012, 09:23 AM
Hi!
the product its work perfectly on mu vb 4.2.0 patch 3.

but i have a small question!

how to change the user in other primary usergruop?
now the usergroup upgrade its make in addizional.

thanks inadvance

Even if I advice you to avoid changing primary usergroup, follow the steps below:

1.- With a text editor (like Notepad) open the file: microcart/functions.php

2.- Search for:

function promoteUser($transid, $userid)


3.- Replace the whole function:

function promoteUser($transid, $userid)
{
global $vbulletin, $db;
$boughtdate = date("Y-m-d");
$orders = $db->query_read("SELECT * FROM ".TABLE_PREFIX."microcart_orders WHERE transid='$transid'");
while ($order = $db->fetch_array($orders)) {
$productid = $order["productid"];
$product = $db->query_first("SELECT * FROM ".TABLE_PREFIX."microcart_products WHERE id=$productid");
$leng = $product[dlperiod]/2;
$expiration = add_date($order[dend],$leng,0,0);
$dend = date("Y-m-d", strtotime($expiration));
$db->query_write("UPDATE ".TABLE_PREFIX."microcart_orders SET paiddate='$boughtdate', dend='$dend' WHERE transid='$transid'");
$promousergroup = $product["promousergroup"];
if ($promousergroup > 0)
{
$user = $db->query_first("SELECT membergroupids FROM ".TABLE_PREFIX."user WHERE userid=$userid");
$groups = $user["membergroupids"];
$groupids = explode(',', $groups);
if (!in_array($promousergroup, $groupids))
{
if (empty($groups))
{
$upgrade = $promousergroup;
} else {
$upgrade = $groups.','.$promousergroup;
}
$db->query_write("UPDATE ".TABLE_PREFIX."user SET membergroupids='$upgrade' WHERE userid=$userid");
}
}
}
return;
}

With this new code:

function promoteUser($transid, $userid)
{
global $vbulletin, $db;
$boughtdate = date("Y-m-d");
$orders = $db->query_read("SELECT * FROM ".TABLE_PREFIX."microcart_orders WHERE transid='$transid'");
while ($order = $db->fetch_array($orders)) {
$productid = $order["productid"];
$product = $db->query_first("SELECT * FROM ".TABLE_PREFIX."microcart_products WHERE id=$productid");
$leng = $product[dlperiod]/2;
$expiration = add_date($order[dend],$leng,0,0);
$dend = date("Y-m-d", strtotime($expiration));
$db->query_write("UPDATE ".TABLE_PREFIX."microcart_orders SET paiddate='$boughtdate', dend='$dend' WHERE transid='$transid'");
$promousergroup = $product["promousergroup"];
if ($promousergroup > 0)
{
$db->query_write("UPDATE ".TABLE_PREFIX."user SET usergroupid='$promousergroup' WHERE userid=$userid");
}
}
return;
}


4.- Search for:

function downgradeUser($transid, $userid)


5.- Replace the whole function:

function downgradeUser($transid, $userid)
{
global $vbulletin, $db;
$vbulletin->db->query_write("UPDATE ".TABLE_PREFIX."microcart_invoices SET invoicestatus=7 WHERE transid='$transid'");
$vbulletin->db->query_write("UPDATE ".TABLE_PREFIX."microcart_orders SET paid=0 WHERE transid='$transid'");
$orders = $vbulletin->db->query_read("SELECT * FROM ".TABLE_PREFIX."microcart_orders WHERE transid='$transid'");
while ($order = $vbulletin->db->fetch_array($orders)) {
$productid = $order["productid"];
$product = $vbulletin->db->query_first("SELECT * FROM ".TABLE_PREFIX."microcart_products WHERE id=$productid");
$promousergroup = $product["promousergroup"];
if ($promousergroup > 0)
{
$user = $vbulletin->db->query_first("SELECT membergroupids FROM ".TABLE_PREFIX."user WHERE userid=$userid");
$groups = $user["membergroupids"];
$groupids = explode(',', $groups);
if (in_array($promousergroup,$groupids))
{
$key = array_search($promousergroup, $groupids);
unset($groupids[$key]);
$downgrade = implode(',', $groupids);
$vbulletin->db->query_write("UPDATE ".TABLE_PREFIX."user SET membergroupids='$downgrade' WHERE userid=$userid");
}
}
}
return;
}


With...:

function downgradeUser($transid, $userid)
{
global $vbulletin, $db;
$vbulletin->db->query_write("UPDATE ".TABLE_PREFIX."microcart_invoices SET invoicestatus=7 WHERE transid='$transid'");
$vbulletin->db->query_write("UPDATE ".TABLE_PREFIX."microcart_orders SET paid=0 WHERE transid='$transid'");
$orders = $vbulletin->db->query_read("SELECT * FROM ".TABLE_PREFIX."microcart_orders WHERE transid='$transid'");
while ($order = $vbulletin->db->fetch_array($orders)) {
$productid = $order["productid"];
$product = $vbulletin->db->query_first("SELECT * FROM ".TABLE_PREFIX."microcart_products WHERE id=$productid");
$promousergroup = $product["promousergroup"];
if ($promousergroup > 0)
{
$vbulletin->db->query_write("UPDATE ".TABLE_PREFIX."user SET usergroupid='2' WHERE userid=$userid");
}
}
return;
}


6.- Save and upload the functions.php at: microcart/

*** ATTENTION ***
Downgrading the user means that he is going to usergroup 2 (Registered Members). So if you're selling another product which also promotes the user to a higher usergroup, then the user will LOSTS that promotion. That's why using the additional usergoups is the best choice.

Chris

Ichigo88
12-26-2012, 10:45 PM
thank you! work perfectly now!! :D best plug

Mark4865
01-01-2013, 06:01 AM
anyone know how to change the size of the product block that appears in the main forum page, I just want to shorten mine a bit.

thanks in advance for any help

starletclub
01-04-2013, 10:00 AM
How do i see whats been ordered ?

Ichigo88
01-07-2013, 06:52 PM
hello! now the plun not work for me! when the client payd in edit invoice appear:

01-07-2013 1.99 Unpaid Pending

i have test with the defoult subscription ov vbulletin and it's work pefecly well is not problem of server or vb. it's the plug microcart, i have tested a lot but nothing!

please help me!

Gamelobby
01-25-2013, 07:06 PM
Is this Mod no good for 4.2? (i noticed the demo is on vB4.1.10)

Also it says this.. :)

Edit: Please note - Currently this mod is only compatible with vBulletin 4.1.9 and below, if your using vBulletin 4.1.10 then the modifications current version released here (1.1.4) is not suggested for use. - TheLastSuperman


Any updates planned.?

Mr.Stop
02-15-2013, 02:00 PM
How to fix it ?


Warning: require_once() [function.require-once]: Unable to access ./includes/functions_wysiwyg.php in [path]/cart.php on line 66

Warning: require_once(./includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/cart.php on line 66

Fatal error: require_once() [function.require]: Failed opening required './includes/functions_wysiwyg.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/*/public_html/*/cart.php on line 66

MundoGT
04-02-2013, 08:15 AM
Hello!

Hi!
the product its work perfectly on mu vb 4.2.0 patch 3.

but i have a small question!

how to change the user in other primary usergruop?
now the usergroup upgrade its make in addizional.

thanks inadvance

It doesn't work in vb 4.2.0 patch 3

Database error message appears

It's a shame, i would like to use this add-on

Congrats micheal!!!!

Hope it work someday :)

Toorak Times
06-08-2013, 02:08 PM
Just had this uploaded, I'll tell you how we go!

BoostedK20
09-20-2013, 05:02 PM
Installed, it's a great system but has some twerks that I would like to address. The 'Welcome' main page message needs to be a line or two lower. Also, the categories are on the top and look bad, I would like to relocate them or at least make them more aesthetically pleasing. There is a comma (,) after each sub-category, which is great, but when you don't have a category after and there's just a random comma sitting there, it looks bad. I'd like to change the table colors but I'm unsure which CSS file to edit. This is a start, but it would be great if someone could help me figure out how to address these issues. The sooner the better. Thank you in advance

Additionally: There's no options for Location, and you cannot checkout without a location entered, but there are no options on the drop-down...

pbnjj11
10-31-2013, 12:51 AM
I know this isn't supported by the developer of this mod but could someone lend me a hand with the re-write rules?

whoareyou82605
11-05-2013, 07:54 PM
Installed and set everything up but when i go to check out and click paypal it does not load the paypal screen it Invalid Redirect URL (https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business= gives a error.

Fixed found post #749

mustangguy1230
11-06-2013, 03:50 AM
Does this work with 4.2.2?

NoMatt3r
01-05-2014, 09:10 AM
Or with 4.2.1 :(

Toorak Times
01-05-2014, 11:50 AM
It does...

http://www.tooraktimes.com.au/cart.php?

But it does need a little work, but I have tried a few different shopping carts, including Zencart and this could be fantastic. It is a much needed a professional approach to an online vBulletin pro store.

I believe the developer has had no internet connection for a while, maybe a traveller, but I am told he is back onboard soon.

This should go the way of Panjo I reckon, the more dedicated and supported mods the better I reckon. I'm using Panjo also and I think this has heaps of potential and we could all make it work by just getting involved and thinking about this new way of tapping community markets from communities with similar values.

eh69
01-05-2014, 04:22 PM
I have error in admincp after server move:
Parse error: syntax error, unexpected end of file in /usr/local/www/apache22/data/forum.alfaholicy.org/admincp/microcart_admin.php on line 2781

Any help?

eh69
01-05-2014, 04:47 PM
I found solution:
Enable short tags in your php.ini

RichieBoy67
01-20-2014, 02:06 PM
I am looking for a decent store script/Vbulletin integration that will work well with affiliate api. Will this script work well with an affiliate api/product codes? if not can anyone suggest anything else that will integrate with VBulletin?

Thanks

micheal332001
01-21-2014, 10:30 PM
I am looking for a decent store script/Vbulletin integration that will work well with affiliate api. Will this script work well with an affiliate api/product codes? if not can anyone suggest anything else that will integrate with VBulletin?

Thanks
Hi there m8

Microcart has its own affiliate system within it.

micheal332001
01-21-2014, 10:32 PM
Does this work with 4.2.2?

Or with 4.2.1 :(

yes and yes

micheal332001
01-21-2014, 10:33 PM
Installed and set everything up but when i go to check out and click paypal it does not load the paypal screen it Invalid Redirect URL (https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business= gives a error.

Fixed found post #749

There is a post on how to sort this follow this

The fix I use is, go to: Admin CP > Settings > Options > Site Name / URL / Contact Details
In the 'Redirect Domain Whitelist' field, add:
<a href="https://www.paypal.com/" target="_blank">https://www.paypal.com</a>
<a href="https://www.sandbox.paypal.com/" target="_blank">https://www.sandbox.paypal.com</a>

RichieBoy67
01-22-2014, 12:06 AM
Hi there m8

Microcart has its own affiliate system within it.

That is great to know. Thanks for the reply!

Can you elaborate a little on this affiliate system?

GPOClan
01-27-2014, 02:55 PM
Hello,

I get an error when I open the cart.php:

Warning: Assigning the return value of new by reference is deprecated in ..../microcart/functions.php (Zeile 1541)

Warning: Assigning the return value of new by reference is deprecated in ..../includes/functions_log_error.php (Zeile 2153)

I am using vBulletin 4.2.2., is there anything wrong?

Greetz

Elenna
02-10-2014, 11:36 PM
GPOClan, that is an issue with having a newer version of PHP on the server (I think).

If you open up your config.php and put this as the second line (right under the "<?PHP"), it should fix that:
define('SKIP_ALL_ERRORS', true);

For those that are having the issue with the error about missing the "functions_wysiwyg.php" file, I changed it to this (in cart.php, around like 66):
require_once('./includes/class_wysiwygparser.php');

I've only tested it for a few minutes, but I can see the WYSIWYG formatting on the front-end.

The above two things were the only modifications I made to have it working on 4.2.2.

Elenna
02-10-2014, 11:52 PM
Sorry for a second post! I couldn't find an existing answer. Is there a way for a coupon code to take a percentage off, or for it to apply to multiple items (i.e. Save $2 on each ticket). Right not it looks like it only takes $2 off the entire order.

stemmy
02-12-2014, 10:48 AM
When you go to the "Terms and Conditions" section when viewing a product on the website it looks like the box is empty because its minimised to the top. to see the terms and conditions you have to click the little arrow top left to maximise the page. it just looks like there are no T&Cs when you first look. is there a way to start this section maximised so they are all visible ??

Thanks in advance.

GPOClan
02-12-2014, 11:54 AM
Thank you very much Elenna, it worked! :)

Markos
02-12-2014, 09:45 PM
Hi all im having a little problem when anyone clicks on the checkout instead of it taking them to the paypal checkout page its taking them to the paypal login page ive contacted paypal to see if its anything to do with that side and they say its something to do with the plugin anyone know what it could be?

Markos
02-16-2014, 04:17 PM
Any help on this @micheal332001

meissenation
02-19-2014, 06:48 PM
Great product, thank you for sharing it. I'm running 4.2.2 and ran into an issue today. I had my first sale of a physical item - YAY! Unfortunately, though, I am noticing two issues.

I'm using the store to sell $3 decals for my website.

Issue 1 - My first order e-mail confirmation from Paypal shows the total amount as $6 but the quantity as 1. So did the MicroCART accidentally charge him double, or is the quantity supposed to be 2?

Issue 2 - I went to my Sales Report thinking I could answer issue #1 without having to contact the customer and the Sales Report is blank - it's not populating with physical sales. I looked in the scheduled tasks and I only see one task for the product. How do I get the sales report to populate?

meissenation
02-21-2014, 12:04 PM
Please please please - any help on my above post? I set up a T-shirt order on my website and orders are coming in but it's not showing the Options! I can't tell if someone ordered a small, medium, large, XL, etc shirt!!! Please help!! If I can't tell what options people are selecting or see any reports on what is being sold then this product really isn't going to work! :(

Nelson58
02-21-2014, 04:24 PM
Does this product work for 4.2.2. If not, can someone update it please?

Thanks guys!

meissenation
02-21-2014, 05:52 PM
It does but you'll run into a couple of errors - you just need to search this thread and people have posted work arounds. Honestly I can't remember what I had to do or else I would just tell you. I do remember I had to enable short tags in my PHP.ini file.

meissenation
02-21-2014, 05:55 PM
I've been able to troubleshoot that the reason why my Sales Report shows blank is because all of my orders show PAID=0. How is it supposed to update to 1?

seventhaxis
03-05-2014, 07:19 PM
What does it mean to "create a directory over the public area" -- am I having to create something above my public_html directory within my hosting?

seventhaxis
03-06-2014, 02:29 PM
Is anyone able to clarify this wording for me please? What does it mean to "create a directory over the public area" -- am I having to create something above my public_html directory within my hosting?

Mike Bucy
03-17-2014, 06:02 AM
I got the following error after moving hosting companies:

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/gczsrv/public_html/microcart/pdf/tcpdf.php(2) : eval()'d code(1) : eval()'d code(1) : eval()'d code on line 6313

Any Ideas?

VB 4.1.11

Microcart 3.0.5

Thanks!

yippykiyey
03-25-2014, 12:28 AM
Hey quick question, what can I do with more then half of my options are just white pages. The only ones that work are General Options, Payments & Gateaways as well as Coming soon. Those three are the only ones that I am able to see but for some reason the others aren't showing up. If anyone has any ideas then please let me know asap.

I'm running 4.2.2.

Thanks!

yippykiyey
04-09-2014, 09:25 PM
I had to uninstall since no one was able to help, sucks mod looks pretty cool.

boazor
05-01-2014, 05:59 PM
Hi ,

Any idea why I am getting this error

Call to undefined function log_vbulletin_error() in /public_html/includes/class_core.php on line 5750

When I press cat and some other option on the MicroCart

OlijO
05-20-2014, 06:49 PM
Bought the commercial version : it doesn't work on vB4.2.2 (mine install).
Support : try to have it working, and after more than 3 months, it still doesn't work.
The coder stop trying to solve the problem and refuse to refund.
It's a very bad idea to buy this script if you want to have a real support and if you want a mod who works...

Toorak Times
05-22-2014, 02:13 PM
I have had some very disturbing information about his mod...Michael contact me immediately!

Toorak Times
05-23-2014, 08:44 AM
I got this from my host


Hi Mick,


Are you using the microcart installation?

This has a file management tool kcfinder which has many known security
vulnerabilities.

http://www.tooraktimes.com.au/microcart/kcfinder/browse.php -> allows you to
upload and browse the files in public_html/microcart/kcfinder/upload/files
directory.


Check this link
http://packetstormsecurity.com/files/125836/KCFinder-2.53-Shell-Upload.html


The hacker uploaded a shell script and tried to scan all other configuration
files in the server. I am disabling that microcart link.


root@experience [/usr/local/maldetect/sess]# more
session.hits.052214-1739.1040785
{HEX}gzbase64.inject.unclassed.15 :
public_html/microcart/kcfinder/upload/files/b.php5

BirdOPrey5
05-26-2014, 10:34 AM
I got this from my host


Hi Mick,


Are you using the microcart installation?

This has a file management tool kcfinder which has many known security
vulnerabilities.

http://www.tooraktimes.com.au/microcart/kcfinder/browse.php -> allows you to
upload and browse the files in public_html/microcart/kcfinder/upload/files
directory.


Check this link
http://packetstormsecurity.com/files/125836/KCFinder-2.53-Shell-Upload.html


The hacker uploaded a shell script and tried to scan all other configuration
files in the server. I am disabling that microcart link.


root@experience [/usr/local/maldetect/sess]# more
session.hits.052214-1739.1040785
{HEX}gzbase64.inject.unclassed.15 :
public_html/microcart/kcfinder/upload/files/b.php5



Your host said the URL to kcfinder was:

http://www.tooraktimes.com.au/microcart/kcfinder/browse.php


But there is no /kcfinder/ directory in this mod's zip file... Not sure how or why you have a /kcfinder/ directory but it doesn't appear to be included with this mod.

Toorak Times
05-26-2014, 10:45 AM
So BOP, when I was hacked by TH3 HACK3R could they have installed it in the cart then? I saw a reference to Black Hack3r in files. I have tried to uninstall this mod but it crashed my site so I have isolated it. I wish Michael would reply as this is really stressing me out

BirdOPrey5
05-26-2014, 02:58 PM
So BOP, when I was hacked by TH3 HACK3R could they have installed it in the cart then? I saw a reference to Black Hack3r in files. I have tried to uninstall this mod but it crashed my site so I have isolated it. I wish Michael would reply as this is really stressing me out

It's certainly possible... I would suggest anyone with this mod installed check for a /kcfinder/ directory in their /microcart/ directory, just to be sure.

At this point all I know for sure is /kcfinder/ does not come as part of this mod. I can't say whether an exploit in this mod allowed it to be uploaded or an exploit it something else did.

Toorak Times
05-26-2014, 03:46 PM
It's certainly possible... I would suggest anyone with this mod installed check for a /kcfinder/ directory in their /microcart/ directory, just to be sure.

At this point all I know for sure is /kcfinder/ does not come as part of this mod. I can't say whether an exploit in this mod allowed it to be uploaded or an exploit it something else did.



I got smashed 5 times BOP, my database is still psychopathic. have a look if you like...PLEASE!!!

BirdOPrey5
05-26-2014, 10:07 PM
I got smashed 5 times BOP, my database is still psychopathic. have a look if you like...PLEASE!!!

I would suggest you look for .php files in the following directories- I've found them in these directories while cleaning up hacked sites before (check all sub-folders of these folders as well)-

/customavatars
/customgroupicons
/customprofilepics
/images
/signaturepics

If you have attachments stored in a web accessible location check that folder too.

These folders should not contain .php files.

As for being in your database the only real place they could be is in a plugin. Check and make sure you don't have any plugins listed in Plugin Manager (not product manager) at the top listed under the "vBulletin" product. If you do make sure these are plugins you created yourself and double-check the code. This is the most often exploited spot.

Second most exploited in my experience is hidden as a plugin of Forum Runner but this will be cleaned if you re-run the upgrade script which I recommend you do if you've been hacked.

Any 3rd party products should be re-installed after a hack to make sure their plugins are the original values and don't contain backdoors left by the hacker.

Toorak Times
05-27-2014, 03:08 AM
Thank you so much mate, awesome

AwesomeMetalB
10-16-2014, 06:36 PM
Hello,

Regarding the post about:

The fix I use is, go to: Admin CP > Settings > Options > Site Name / URL / Contact Details
In the 'Redirect Domain Whitelist' field, add:
<a href="https://www.paypal.com/" target="_blank">https://www.paypal.com</a>
<a href="https://www.sandbox.paypal.com/" target="_blank">https://www.sandbox.paypal.com</a>


I have implemented this and still receive the following error

Invalid Redirect URL (https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=***************%40hotmail.com&item_name=&amount=0.00&handling=0&shipping=0&tax=0&quantity=1?cy_code=GBP&return=http%3A%2F%2F**************.com%2Fcart.php&item_number=test12345-16Oct14-YGKKTWCXC2N79H?ify_url=http%3A%2F%2Fawesomemetalba nds.com%2Fcart_gateway.php%3Fmethod%3Dpaypal)

please see screenshot

http://tinypic.com/r/25icgtk/8

Thank you

Daniel

amandatx
10-16-2014, 08:16 PM
Hello,

After the install I 'am only accessing the index page. Please see the attachment. Any solutions?

Thanks in advance.

AwesomeMetalB
10-16-2014, 08:37 PM
cart.php and cart_gateway.php need to be in the same directory as forum.php

for me its /public_html

see if thats the answer

amandatx
10-16-2014, 09:07 PM
cart.php and cart_gateway.php need to be in the same directory as forum.php

for me its /public_html

see if thats the answerThanks for the reply. I've moved the files, not seeming to have any effect.

Thanks again.

AwesomeMetalB
10-16-2014, 09:11 PM
Right I solved my problem about the "Invalid Redirect URL"

https://www.paypal.com


Just like that without the html code, its very frustrating when people post here and dont post the exact answer they have some weird formating and expect you to spend hours decoding it like hieroglyphics.

when you go to options, Site Name / URL / Contact Details. Redirect Domain Whitelist

its simply

https://www.paypal.com

and that should direct the page to the paypal payment page


Daniel of Awesomemetalbands.com

AwesomeMetalB
10-16-2014, 09:14 PM
amandatx,

stupid question you obviously have Vbullitin installed? can you go to your forum? do you see a new tab called e shop?

Daniel

AwesomeMetalB
10-16-2014, 09:16 PM
you are more then welcome to discuss this with me on AMB, i am very new to MicroCART, but would be great to exchange ideas

http://awesomemetalbands.com/metalchat.php

amandatx
10-16-2014, 09:47 PM
amandatx,

stupid question you obviously have Vbullitin installed? can you go to your forum? do you see a new tab called e shop?

DanielYes, I have vBulletin installed. No, there is no tab labeled e shop associated with the forum nor the server.

Muhammad Rahman
10-16-2014, 11:17 PM
can member add product??

amandatx
10-16-2014, 11:53 PM
can member add product??No. Can't get pass the index screen.

Muhammad Rahman
10-17-2014, 11:21 PM
No. Can't get pass the index screen.

thanks for information :)

amandatx
10-18-2014, 05:29 PM
We're up and running! This mod is out of site/sight! :)!

AwesomeMetalB
10-22-2014, 09:48 AM
Hello,

Discount doesn't show until item quantity is changed? How can this be rectified, apologies if this has already been posted.

Huw Thomas
11-21-2014, 07:06 AM
Is it possible to use paypal pro for normal paypal and credit card processing instead of just the standard paypal which take the user away form the website? We are using this Haddon but many customers payments aren't being registered when the customer doesn't return to the website after completing their payment with paypal.

Any suggestions would be greatly appreciated.

Thanks
Huw

TheAdminMarket
12-26-2014, 02:08 PM
Is anybody interested for an update release of this mod? If yes, then click Like or post a comment below.

Johnny G
12-26-2014, 05:53 PM
100% yes

TheAdminMarket
12-26-2014, 05:55 PM
100% yes

Just downloadable products is ok for you or do you need the support for tangible products?. I'm talking for the exact same script, but currently I've removed the tangible products to make the code more solid.

TheAdminMarket
12-26-2014, 05:58 PM
@Johnny G

Seen that you're in EU. Some great knews. It'll support EU VAT with auto VAT id validation.

TheAdminMarket
12-27-2014, 09:30 AM
Hello,

Finally I decided to post the update here and not as a seperate mod as in my version I don't support tangible products. But I'll continue updating this version for any bug fixes.

I've named this version 2.0.0 to be visible seperated from 1.x versions. In this version I've added/fixed:

Fixed several design issues especially with sidebar
Added Tab Menu to support the new vb Navigation manager
Added to all php files the code: define('SKIP_ALL_ERRORS', true); to skip all waring messages. I suggest to add this line to your config.php at the top (just after <?php).
Corrected the HTML editor to take the full width space when you're adding/editing productsFor someone who was getting error trying to import images in the HTML editor, he must set the correct paths in file: microcart/editor/assetmanager/settings.php

To update your installation:

Upload microcart_admin.php to your admincp directory
Upload functions.php at microcart/
Upload cart.php at your forum directory
Import product-microcart_v200_27Dec2014.xml and don't forget to select "Overwite".If you've to report any other bugs feel free to do it here. I'm not always on this site but I'll try to visit it in a regular basis. Please don't PM for bugs. Post them here.

I wish to all a Happy and Prosperous New Year. Health, Happiness, Success to all of you and to your beloved persons. And for sure Peace for the world.

Johnny G
12-27-2014, 01:52 PM
Just downloadable products is ok for you or do you need the support for tangible products?. I'm talking for the exact same script, but currently I've removed the tangible products to make the code more solid.

I would like tangible, physical products. But, not to worry, needs of the many vs the needs of the few :D
Thanks anyways!!

TheAdminMarket
12-27-2014, 02:21 PM
I would like tangible, physical products. But, not to worry, needs of the many vs the needs of the few :D
Thanks anyways!!
I've post some files with bug fixes and design issues that I found. They're on my last post in previous page. Sorry but there is no other way to release them.

Johnny G
12-27-2014, 02:30 PM
I'm sure I speak for many people when I thank you for your efforts.

TheAdminMarket
12-28-2014, 07:32 AM
I'm sure I speak for many people when I thank you for your efforts.
Finally I'll include tangible products too, but the final mod should be commercial with a small fee. As you're using it for tangible products please tell me something. In data table there are fields for Product code and Manufacturer but I can't find them in the form. Have been removed? As I remember these fields were there.

TheAdminMarket
01-01-2015, 06:41 AM
@Johnny G

Happy and Prosperous New Year :)

If you want you can give a look at: http://www.phpkiosk.com/demo/vb4x/cart.php

demouser1
demopass1

For testing EU VAT and Shipping do the follow tests during Checkout (for testing purposes assumes that Shop is locating in Greece).

1.- Select United Kingdom as Location. You'll see that if you set a valid EU-GB VAT id the VAT should be 0. If you left it empty or your auto check fails (invalid VAT id) you'll debit with VAT 20% according to the new EU rules (Customer's country and not Seller's country).

2.- Change the location to Greece. Now, with or without a valid VAT id you'll be debited with VAT 20%

3.- Last change the location to United States and you'll see that none VAT will be debit.

Johnny G
01-01-2015, 12:25 PM
Finally I'll include tangible products too, but the final mod should be commercial with a small fee. As you're using it for tangible products please tell me something. In data table there are fields for Product code and Manufacturer but I can't find them in the form. Have been removed? As I remember these fields were there.

@Johnny G

Happy and Prosperous New Year :)

If you want you can give a look at: http://www.phpkiosk.com/demo/vb4x/cart.php

demouser1
demopass1

For testing EU VAT and Shipping do the follow tests during Checkout (for testing purposes assumes that Shop is locating in Greece).

1.- Select United Kingdom as Location. You'll see that if you set a valid EU-GB VAT id the VAT should be 0. If you left it empty or your auto check fails (invalid VAT id) you'll debit with VAT 20% according to the new EU rules (Customer's country and not Seller's country).

2.- Change the location to Greece. Now, with or without a valid VAT id you'll be debited with VAT 20%

3.- Last change the location to United States and you'll see that none VAT will be debit.

Wow. Many thanks!!
I'll have a look this weekend :D

TheAdminMarket
01-06-2015, 05:18 PM
Wow. Many thanks!!
I'll have a look this weekend :D
Finished :)

Gadget_Guy
01-08-2015, 02:33 AM
I would be very interested in this mod to sell tangible products on my site (we sell our club branded items like stickers and mugs to raise money for charity).

I am located in Canada and my members are Canadian.

Paypal for payment is perfect.

Any chance there would be a way to interface with Canada Post whom we use for shipping?

They have a module for this that I use with Zen Cart, but my users hate having to leave the site to use zencart to order stuff.

I'd be willing to do testing with you if that helps.

D.

JesWhite
01-08-2015, 05:53 AM
Hello,

Finally I decided to post the update here and not as a seperate mod as in my version I don't support tangible products. But I'll continue updating this version for any bug fixes.

I've named this version 2.0.0 to be visible seperated from 1.x versions. In this version I've added/fixed:
Fixed several design issues especially with sidebar
Added Tab Menu to support the new vb Navigation manager
Added to all php files the code: define('SKIP_ALL_ERRORS', true); to skip all waring messages. I suggest to add this line to your config.php at the top (just after <?php).
Corrected the HTML editor to take the full width space when you're adding/editing productsFor someone who was getting error trying to import images in the HTML editor, he must set the correct paths in file: microcart/editor/assetmanager/settings.php

To update your installation:
Upload microcart_admin.php to your admincp directory
Upload functions.php at microcart/
Upload cart.php at your forum directory
Import product-microcart_v200_27Dec2014.xml and don't forget to select "Overwite".If you've to report any other bugs feel free to do it here. I'm not always on this site but I'll try to visit it in a regular basis. Please don't PM for bugs. Post them here.

I wish to all a Happy and Prosperous New Year. Health, Happiness, Success to all of you and to your beloved persons. And for sure Peace for the world.

if i install MICROCART_114_16_05_2011a.zip (https://vborg.vbsupport.ru/attachment.php?attachmentid=129118&d=1305545176) and after that i use your patch is this patch work?

thanks again...

TheAdminMarket
01-08-2015, 08:30 AM
if i install MICROCART_114_16_05_2011a.zip (https://vborg.vbsupport.ru/attachment.php?attachmentid=129118&d=1305545176) and after that i use your patch is this patch work?

thanks again...

Yes, it should works. But if you wait some hours I'll release here this version:
http://demo.teriakis.com/vb4x/cart.php
You can find testing account login in header.

Has fixed all bugs of microCART and added some new features. The reason that I changed the name is because there are 2 versions of microCART and I wanted to avoid a system mess.

Later on and if I see that there are active installation of microCART (I don't think so with so many bugs that I found), I'll release a data importer.

Johnny G
01-08-2015, 09:09 PM
Nick, superb effort :D

ozzy47
01-08-2015, 09:10 PM
Nick, superb effort :D

Newest version is here, https://vborg.vbsupport.ru/showthread.php?t=316501
But wait till the developer fixes a bug with the tables in the DB.

Johnny G
01-08-2015, 09:14 PM
I've just seen it, thanks :)

ozzy47
01-09-2015, 10:06 AM
And the bug is now fixed in the other version. :)

eh69
02-03-2015, 05:51 PM
<a href="https://technidev.com/microcart-1-1-4-arbitrary-files-deletion-sql-injection-xss/" target="_blank">https://technidev.com/microcart-1-1-...injection-xss/</a>

Can I please for fix for this?

TheAdminMarket
02-03-2015, 06:29 PM
https://technidev.com/microcart-1-1-4-arbitrary-files-deletion-sql-injection-xss/

Can I please for fix for this?

1.- Remove the directory assetsmanager and all subfolders and files. Pay attention. Just the assetsmanager directory and not the editor directory.

2.- [Optional] Open microcart_admin.php in you admincp and search for:

oEdit1.cmdAssetManager="modalDialogShow('../microcart/editor/assetmanager/assetmanager.php',700,445);";

Normally it must be at lines: 527, 824, 884 (3 instances). I'm saying optional because even if they'll stay there the only bad should be if you try to upload something using the editor's upload image feature, you'll get a "File does not exists" message.