vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - microCART: Shopping System for vB4 (https://vborg.vbsupport.ru/showthread.php?t=256723)

Easy5s.net 10-15-2011 07:29 AM

Quote:

Originally Posted by micheal332001 (Post 2256688)
the cart system here is microcart and not the icart system you are using so your cart you are using is not supported here.

No, i'm using this mod but i want make nini cart in header like icart. :D, psl help me

micheal332001 10-16-2011 07:48 AM

Quote:

Originally Posted by Steven G (Post 2256698)
Dear Micheal. Sorry for wrong spelling. microCART looks great, and I've installed it yesterday, ok. I need some help, please: When I'm adding new product, for some reason, what I write in the big text editor box of 'features' section could not be saved, it remains empty every time I go back. I push the save button, everything thumbs, pricetags, stock, etc, saved but this. So I cannot give a longer description of the product. - I think this is because you wrote you moved product description to the front end... I've made several folders writeable, but it still doesn't work. Any ideas, what could be wrong? Thanks, Steve

So you have the free version installed or the commercial version.
If its the free version in not working on that one any more as alot of the code is now out of date and would take to long to sort out.
What you would need to so is look in the microcart/functions.php file and check the saveproduct function as thats how it will save the info you have put in when you click save.


Quote:

Originally Posted by Easy5s.net (Post 2257397)
No, i'm using this mod but i want make nini cart in header like icart. :D, psl help me

So you want it where the mini cart goes up the top like the icart.
If this was to be put into place it would only be in the commercial version no the free one.

The free one here you have the source files so that you can change it to what you want.

I can tell you that the commercial version has its own page layout system where you can drag and drop the blocks for the front page to where you want them.
This gives the admin and venders the option to make the shop/cart system look the way they want and not have the default layout that would be made for them.
With this system iv made you dont need to edit any templates just move the blocks to where you want, makes it very easy for admins to change the look.

appsfinder 10-16-2011 10:34 AM

hi is there white background for coming soon clock

deschutes 10-19-2011 11:45 AM

Quote:

Originally Posted by micheal332001 (Post 2257675)
So you have the free version installed or the commercial version.
If its the free version in not working on that one any more as alot of the code is now out of date and would take to long to sort out.

Michael

I want to confirm. You will no longer be releasing updated/new versions of non-commercial MicroCart?

Easy5s.net 10-20-2011 03:20 AM

When I click Payment, it fails this


Invalid Redirect URL (https://www.paypal.com/cgi-bin/websc...ethod%3Dpaypal)

clutchthese 10-20-2011 11:34 AM

Quote:

Originally Posted by Easy5s.net (Post 2259224)
When I click Payment, it fails this


Invalid Redirect URL (https://www.paypal.com/cgi-bin/websc...ethod%3Dpaypal)

Add this to the white list in settings>options>site name/url/contact details

Code:

https://www.paypal.com
https://www.sandbox.paypal.com


JimL 10-22-2011 08:16 AM

anyone else get these? I get 5-10 of them every once in a while

Code:

Database error in vBulletin 4.1.7:

Invalid SQL:
UPDATE vb_microcart_usercoupon SET valid=0 WHERE userid=;

MySQL Error  : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Error Number  : 1064
Request Date  : Saturday, October 22nd 2011 @ 10:27:48 AM
Error Date    : Saturday, October 22nd 2011 @ 10:27:50 AM
Script        : /cart_gateway.php?method=paypal
Referrer      :
Username      :
Classname    : vB_Database
MySQL Version :


JimL 10-22-2011 09:48 AM

Could this be a fix?

in cart_gateway.php

find
Code:

$db->query_write("UPDATE ".TABLE_PREFIX."microcart_usercoupon SET valid=0 WHERE userid=".$user['userid']);

replace with
Code:

$db->query_write("UPDATE ".TABLE_PREFIX."microcart_usercoupon SET valid=0 WHERE userid=".$user["userid"]);

JimL 10-22-2011 04:05 PM

I have a strange bug

if I go to admincp - invoices - edit - save
it multiplies Subtotal, Shipping Fees and Amount to pay by 100.

Before edit:
Subtotal: 50.00
Shipping Fees: 7.00
Amount to pay: 57.00

after edit (no change made, only chosen edit and save:
Subtotal: 5000.00
Shipping Fees: 700.00
Amount to pay: 5700.00

after another edit/save:
Subtotal: 500000.00
Shipping Fees: 70000.00
Amount to pay: 570000.00

I can't figure out why it does this :\

Christos Teriakis 10-22-2011 05:41 PM

Quote:

Originally Posted by JimL (Post 2260091)
Could this be a fix?

in cart_gateway.php

find
Code:

$db->query_write("UPDATE ".TABLE_PREFIX."microcart_usercoupon SET valid=0 WHERE userid=".$user['userid']);

replace with
Code:

$db->query_write("UPDATE ".TABLE_PREFIX."microcart_usercoupon SET valid=0 WHERE userid=".$user["userid"]);

Both are wrong:D The query is not completed. Is missing a ." to close the userid=
Try this:
Code:

$db->query_write("UPDATE ".TABLE_PREFIX."microcart_usercoupon SET valid=0 WHERE userid=".$user['userid'].");

Chris

Christos Teriakis 10-22-2011 05:43 PM

Quote:

Originally Posted by JimL (Post 2260071)
anyone else get these? I get 5-10 of them every once in a while

Code:

Database error in vBulletin 4.1.7:

Invalid SQL:
UPDATE vb_microcart_usercoupon SET valid=0 WHERE userid=;

MySQL Error  : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Error Number  : 1064
Request Date  : Saturday, October 22nd 2011 @ 10:27:48 AM
Error Date    : Saturday, October 22nd 2011 @ 10:27:50 AM
Script        : /cart_gateway.php?method=paypal
Referrer      :
Username      :
Classname    : vB_Database
MySQL Version :


The value of userid is missing.

Chris

JimL 10-22-2011 07:56 PM

Quote:

Originally Posted by ChrisTERiS (Post 2260232)
Both are wrong:D The query is not completed. Is missing a ." to close the userid=
Try this:
Code:

$db->query_write("UPDATE ".TABLE_PREFIX."microcart_usercoupon SET valid=0 WHERE userid=".$user['userid'].");

Chris

Ok, will report back. The original quote was from the standard
cart_gateway.php file though..


are you sure this is correct? doesn't it have to be something like

$db->query_write("UPDATE ".TABLE_PREFIX."microcart_usercoupon SET valid=0 WHERE userid=".$user['userid']."");



Quote:

Originally Posted by ChrisTERiS (Post 2260236)
The value of userid is missing.

Chris

Proobably because the sql-query in question was wrong? :P

Christos Teriakis 10-23-2011 04:36 AM

Quote:

Originally Posted by JimL (Post 2260287)
$db->query_write("UPDATE ".TABLE_PREFIX."microcart_usercoupon SET valid=0 WHERE userid=".$user['userid']."");

Yes, that's correct. I focused only in the part of userid.

Chris

Germantin 10-27-2011 03:11 AM

Thanks for this great Mod, I have a couple questions or issues. When someone buys something from my site they have to fill in the name, address etc. This info never clears for the next person to buy something. Also the paypal link does not work, when you click on pay with paypal a broken link comes up. It use to work not sure what happened there. Any help would be great.

Thanks,
Steven

Scyther 10-27-2011 08:40 AM

One of the best mods i came thru...

Marked installed...

Keysailor 11-01-2011 07:12 PM

Quote:

Originally Posted by Easy5s.net (Post 2259224)
When I click Payment, it fails this


Invalid Redirect URL (https://www.paypal.com/cgi-bin/websc...ethod%3Dpaypal)

I was getting that too, until I read and followed the instructions which said to create at least one agreement. Once I did that, that error went away and I got a normal paypal checkout window. Who'd a'thunk that paypal verification (even for items that don't have a MicroCart agreement) won't work without at least one agreement in place!

Cheers!
Keysailor

p.s., also to create the upload directory and reflect it in the options. I did both these at once, so I'm not 100% sure which (or if both) was what fixed the Paypal payment issue.

CrimsonRayne 11-08-2011 01:45 PM

Hey,

I'm getting exactly the same error with the application.

I've added in an agreement (and changed a product to use that agreement) and also added in a valid download URL. I can upload files fine, but it still gives me the error. I've even tried to make a basic sub where a member will be promoted to another user group, and it still doesn't work.

Any ideas? I'm running VB 4.1.7 (patch level 2)

I've specified the path as c:\onlinestore\ and set permissions to everyone. Still no joy?

AndyP 11-09-2011 12:08 AM

Did you add paypal to your whitelist of websites in the vbulletin options?

DoDe 11-09-2011 07:13 AM

Is this mod coded 100% XHTML 1.0 Transitional valid?

rdavm 11-14-2011 05:34 AM

Very well done shopping cart, THANKS a lot for this one :)

eh69 11-19-2011 02:18 PM

Any1 have microcart widget with latest products for vbCMS?

vBNinja 11-25-2011 04:13 AM

Is this working in 4.1.x ?

Thanks

Meizu 11-25-2011 04:36 AM

How to payments with Credits ([DBTech] vBCredits II Deluxe) Or http://www.libertyreserve.com/

Who help me ?

kfyonur 11-25-2011 05:38 AM

<a href="http://www.totally-scripts.com/f9/microcart-version-2-6-4-a-1333.html" target="_blank">http://www.totally-scripts.com/f9/mi...-4-a-1333.html</a>

Meizu 11-25-2011 08:49 AM

Quote:

Originally Posted by Meizu (Post 2271658)
How to payments with Credits ([DBTech] vBCredits II Deluxe) Or http://www.libertyreserve.com/

Who help me ?

Please help me

thedarkroom 11-25-2011 11:48 AM

Quote:

Originally Posted by ivant (Post 2271657)
Is this working in 4.1.x ?

Thanks

working in 4.1.8

SpikedRocker 11-26-2011 03:58 AM

Anyone having issues with the Agreements, Features, and System Messages editors?

I did do the fix for the fuction_wysiwyg.php, it fixed a few things but I still cannot get these things to update.

Any ideas?

thedarkroom 11-26-2011 07:37 AM

im translating the mod to spanish language, but in user profiles it says
Quote:

Shopping... {vb:var vbphrase.microcart_navbar}
in the current activity, someone knows where can i fix this?

GeorgeB85 11-27-2011 04:53 AM

If, I set up a private VIP section on my forums, could this be used to handle the payments to access that part of my site?

micheal332001 11-27-2011 06:07 PM

Quote:

Originally Posted by Keysailor (Post 2263540)
I was getting that too, until I read and followed the instructions which said to create at least one agreement. Once I did that, that error went away and I got a normal paypal checkout window. Who'd a'thunk that paypal verification (even for items that don't have a MicroCart agreement) won't work without at least one agreement in place!

Cheers!
Keysailor

p.s., also to create the upload directory and reflect it in the options. I did both these at once, so I'm not 100% sure which (or if both) was what fixed the Paypal payment issue.

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

If you have any other payment url's you use add these as well.

Quote:

Originally Posted by eh69 (Post 2269566)
Any1 have microcart widget with latest products for vbCMS?

The latest version of microcart makes widgets for the cmps and forum home page with a click of a button.
This is only the commercial version.

Quote:

Originally Posted by ivant (Post 2271657)
Is this working in 4.1.x ?

Thanks

Yes this will work on all versions of 4.x.x

Quote:

Originally Posted by Meizu (Post 2271658)
How to payments with Credits ([DBTech] vBCredits II Deluxe) Or http://www.libertyreserve.com/

Who help me ?

This may be an option added to the cart at some stage.

Quote:

Originally Posted by GeorgeB85 (Post 2272292)
If, I set up a private VIP section on my forums, could this be used to handle the payments to access that part of my site?

Yes you can when adding a product choose subscriptions as the product type and the usergroup they will be upgraded to and thats it.

Please remember that i am not fully supporting this version but i will give tips and help where needed.

Also the posts i give here bay be only posted from time to time.

Raeven 12-19-2011 12:14 PM

No mater what i do, in the AdminCP I always get on almost all Options of this Mod:

Parse error: syntax error, unexpected $end in ******\admincp\microcart_admin.php on line 2781

redownloaded and uploaded the files many times, simply dosent work.
(vBulletin 4.1.5 and 4.1.9)

SEW810 12-29-2011 09:06 PM

Quote:

Originally Posted by Raeven (Post 2279090)
No mater what i do, in the AdminCP I always get on almost all Options of this Mod:

Parse error: syntax error, unexpected $end in ******\admincp\microcart_admin.php on line 2781

redownloaded and uploaded the files many times, simply dosent work.
(vBulletin 4.1.5 and 4.1.9)

yeah,same here :(

bulldog51981 01-03-2012 02:59 AM

If this has been covered somewhere I apologize, but I have a small alignment issue that I need help with. The width of the content on the page is over shooting the border and causing the page to be too wide to be displayed. Any help would be appreciated! See image:

http://www.stlextremeryderz.com/imagebank/align.jpg

ForceHSS 01-03-2012 04:44 AM

to many bugs in this still so removed

AFemaleProdigy 01-06-2012 09:50 PM

I am a bit confused as to why there are two different zip file with very similar names? What is the difference between the two and which one am I supposed to use?

Also, does this support XML or other datafeed (product) import? That would be ideal for those using dropshipping from manufacturers.

And I noticed in your description about shipping rates that you do not mention lb or pounds which is often used by USPS, UPS, and FedEx. Is that an option?

Thanks!

AFemaleProdigy 01-06-2012 09:56 PM

Quote:

Originally Posted by bulldog51981 (Post 2283253)
If this has been covered somewhere I apologize, but I have a small alignment issue that I need help with. The width of the content on the page is over shooting the border and causing the page to be too wide to be displayed. Any help would be appreciated! See image:

My first guess is that it is probably a CSS issue somewhere. You can probably fix it by adjusting the CSS attributes for your style and this mod. Whatever is throwing the layout out of whack can probably be easilly tracked down through the CSS stylings.

tbrummell 01-10-2012 06:51 PM

Should the admin or the seller be receiving any type of email when a purchase it made? If the answer is yes, any reason I am not? vB itself can send emails fine.

AndyP 01-10-2012 08:54 PM

Quote:

Originally Posted by tbrummell (Post 2286135)
Should the admin or the seller be receiving any type of email when a purchase it made? If the answer is yes, any reason I am not? vB itself can send emails fine.

I don't get them either, but I believe something needs to be installed on the hosts side for it to work. I can't recall what it is, but I seem to recall that it was mentioned somewhere in this thread.

Jakub03 01-11-2012 01:46 AM

What is the recommend currency system that would work with this? Would it work with something like Ucash? Or does this mod not work with any Point system and uses only regular currency.

micheal332001 01-11-2012 04:47 PM

Quote:

Originally Posted by SEW810 (Post 2282008)
yeah,same here :(

Quote:

Originally Posted by bulldog51981 (Post 2283253)
If this has been covered somewhere I apologize, but I have a small alignment issue that I need help with. The width of the content on the page is over shooting the border and causing the page to be too wide to be displayed. Any help would be appreciated! See image:

you have to many items showing within the block change the qty to 3 or 4 not more than this for front page blocks.


Quote:

Originally Posted by AFemaleProdigy (Post 2284600)
I am a bit confused as to why there are two different zip file with very similar names? What is the difference between the two and which one am I supposed to use?

Also, does this support XML or other datafeed (product) import? That would be ideal for those using dropshipping from manufacturers.

And I noticed in your description about shipping rates that you do not mention lb or pounds which is often used by USPS, UPS, and FedEx. Is that an option?

Thanks!

download this one MICROCART_114_13_06_2011.zip
at this time no it does not suport and datafeeds.

Which unit are you using to count weights? Please use the minimum, eg gr instead kgr as its easier for calculations.

so you can put what you want here.


Quote:

Originally Posted by tbrummell (Post 2286135)
Should the admin or the seller be receiving any type of email when a purchase it made? If the answer is yes, any reason I am not? vB itself can send emails fine.

within the commercial version the admin and the vender get PM's on new sales.

Quote:

Originally Posted by Jakub03 (Post 2286314)
What is the recommend currency system that would work with this? Would it work with something like Ucash? Or does this mod not work with any Point system and uses only regular currency.

the system will work with paypal and a few others but does not work with ucash or any other points system only real cash is used.

there is plans to add a points system use for the commercial version at some stage.

please remember that this is the free version and its not suported any more as to many thanks have changed from this to the current commerical version 3.0.1

the list of things that have been added to the commercial version is endless and cannot be posted here.

if you need more info on the commercial version please feel free to visit my site www.totaqlly-scripts.com


All times are GMT. The time now is 08:03 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02116 seconds
  • Memory Usage 1,864KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (9)bbcode_code_printable
  • (27)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete