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)

appsfinder 06-05-2011 11:33 AM

Hi how do i add GBP £ does not show when i input in admincp

please can you help

appsfinder 06-05-2011 11:35 AM

its under vbulletin usergroup permission in vb4 hope this helps

Quote:

Originally Posted by hyperviperx99 (Post 2203650)
How do I set usergroup permissions for this? I can't find it.


micheal332001 06-06-2011 05:20 AM

Quote:

Originally Posted by mrmanners (Post 2203370)
Michael a while back I posted about getting some instructions for getting VBSEO to work with microcart. Have you come up with anything?

Thanks

Here is the one made for the commercial version that should work with most of the free version.

Code:

'cart\.php$' => 'shop/shop.html'
'cart\.php\?do=main$' => 'shop/shop.html'
'cart\.php\?do=main&catid=(\d+)&catn=(.+?)$' => 'shop/category-$1/$2.html'
'cart\.php\?do=viewproduct&productid=(\d+)&prodn=(.+?)$' => 'shop/product-$1/$2.html'
'cart\.php\?do=checkout$' => 'shop/checkout.html'
'cart\.php\?do=cart$' => 'shop/cart.html'
'cart\.php\?do=thankyou$' => 'shop/thankyou.html'
'cart\.php\?do=cpanel$' => 'shop/accounts/cpanel/cpanel.html'
'cart\.php\?do=mvcpanel$' => 'shop/vender/cpanel/vender.html'
'cart\.php\?do=cart&action=changequantity&id=(\d+)&quantity=(\d+)$' => 'shop/cart/product-$1/$2.html'
'cart\.php\?do=cpanel&tab=(\d+)$' => 'shop/accounts/cpanel/$1.html'
'cart\.php\?do=mvcpanel&tab=(\d+)$' => 'shop/vender/cpanel/$1.html'
'cart\.php\?do=invoice&invoiceid=(\d+)&action=(\d+)$' => 'shop/cart/invoice-$1/$2.html'
'cart\.php\?do=payinvoice&invoiceid=(\d+)$' => 'shop/invoice/payment/$1.html'
'cart\.php\?do=mvpaypalbank&bid=(\d+)$' => 'shop/bank/payment/paypal-$1.html'
'cart\.php\?do=mvpaygatebank&bid=(\d+)$' => 'shop/bank/payment/paygate-$1.html'
'cart\.php\?do=addeditreview&orderid=(\d+)$' => 'shop/review-$1.html'
'cart\.php\?do=mvdeleteproduct&id=(\d+)$' => 'shop/remove-product-$1.html'
'cart\.php\?do=mv_addproduct$' => 'shop/vender/add-product.html'
'cart\.php\?do=mv_addimages$' => 'shop/vender/add-screenshots.html'
'cart\.php\?do=mv_addfiles$' => 'shop/vender/add-files.html'
'cart\.php\?do=mv_addoptions$' => 'shop/vender/add-options.html'


micheal332001 06-06-2011 05:22 AM

Quote:

Originally Posted by mierzwin (Post 2203608)
I have same issue. Also when I put ? sign it changes it to & # 163 ; Any ideas?

Quote:

Originally Posted by appsfinder (Post 2203783)
Hi how do i add GBP ? does not show when i input in admincp

please can you help

you can try these

PHP Code:

£ 

or

HTML Code:

£
or

?

likaweb 06-06-2011 08:08 PM

Quote:

Originally Posted by micheal332001 (Post 2203328)
when you signed up to your webhost you used a username for the account this is most likly the username you will have to put here.
/home/username/downloads/
you can also login to your forum admincp click on maintenance then click on view php info

once on this page scroll down to this
Apache Environment

and look for this
DOCUMENT_ROOT should look something like this
/home/USERNAME/public_html

whats here is your username for your site.

Perfect thanksssssssssss micheal332001

hyperviperx99 06-07-2011 05:34 AM

Quote:

Originally Posted by appsfinder (Post 2203784)
its under vbulletin usergroup permission in vb4 hope this helps

Hmm I did check that and it didn't show permissions for Microcart. I'll check again..

hyperviperx99 06-09-2011 02:01 AM

I figured it out. nvm

But how do I change the "e-shop" on the tab to another name?

hyperviperx99 06-10-2011 01:26 AM

Quote:

Originally Posted by jgt58 (Post 2203312)
Hi , first off great mod! But I do have a bit of a problem.

When customers are using paypal and checkout with paypal , it is not updating the order as "paid". Anyone else ever have this issue?

I'm having that problem too. When we tested it, after payment is made on Paypal, it's only re-directing it to the shop page, but not the download page.
How do I solve this issue?

nhawk 06-10-2011 12:23 PM

Not compatible with vBulletin 4.1.4..

includes/functions_wysiwyg.php was removed in vB 4.1.4.

micheal332001 06-11-2011 10:24 AM

Quote:

Originally Posted by nhawk (Post 2205812)
Not compatible with vBulletin 4.1.4..

includes/functions_wysiwyg.php was removed in vB 4.1.4.


all you have to do is edit the files and change this
PHP Code:

=& 

to
PHP Code:



and that will fix the problem.

anddymax 06-11-2011 03:25 PM

Quote:

Originally Posted by micheal332001 (Post 2206180)
all you have to do is edit the files and change this
PHP Code:

=& 

to
PHP Code:



and that will fix the problem.

Can you please say detail about this ? which file and where ?

thank you

preemz10314 06-11-2011 04:15 PM

Is there a way to incorperate affiliate products? and link them to the buy page?....

nhawk 06-11-2011 05:16 PM

Quote:

Originally Posted by micheal332001 (Post 2206180)
all you have to do is edit the files and change this
PHP Code:

=& 

to
PHP Code:



and that will fix the problem.

It's not as simple as that.

Code:

// Include Globals
require_once('./global.php');
require_once('./includes/functions_editor.php');
require_once('./includes/functions_wysiwyg.php');
require_once('./includes/functions_newpost.php');
require_once('./includes/functions_user.php');
require_once('./includes/class_bbcode.php');
require_once('./includes/class_image.php');
require_once('./includes/functions_bigthree.php');
require_once('./microcart/pdf/class.ezpdf.php');
require_once('./microcart/functions.php');
require_once('./includes/class_bootstrap_framework.php');

/includes/functions_wysiwyg.php does not exist in a fresh install of 4.1.4.

So I would imagine removing it from the includes would break some functions in the mod. Yes?

micheal332001 06-11-2011 07:10 PM

Quote:

Originally Posted by nhawk (Post 2206316)
It's not as simple as that.

Code:

// Include Globals
require_once('./global.php');
require_once('./includes/functions_editor.php');
require_once('./includes/functions_wysiwyg.php');
require_once('./includes/functions_newpost.php');
require_once('./includes/functions_user.php');
require_once('./includes/class_bbcode.php');
require_once('./includes/class_image.php');
require_once('./includes/functions_bigthree.php');
require_once('./microcart/pdf/class.ezpdf.php');
require_once('./microcart/functions.php');
require_once('./includes/class_bootstrap_framework.php');

/includes/functions_wysiwyg.php does not exist in a fresh install of 4.1.4.

So I would imagine removing it from the includes would break some functions in the mod. Yes?

within the cart.php file find

PHP Code:

$bbcode_parser =& new vB_BbCodeParser($vbulletinfetch_tag_list()); 

should be on lines 342 and 1959 and remove the &

Eric 06-11-2011 09:20 PM

Quote:

Originally Posted by micheal332001 (Post 2206356)
within the cart.php file find

PHP Code:

$bbcode_parser =& new vB_BbCodeParser($vbulletinfetch_tag_list()); 

should be on lines 342 and 1959 and remove the &

Sorry Michael, but I think you're missing the issue. They are right, the functions_wysiwyg.php file no longer exists as of vB 4.1.4. You may need to update the mod to support both <= 4.1.3 AND >= 4.1.4 because of ckeditor.

deverill2010 06-12-2011 11:13 AM

Oh bugger, I was just about to install this but I am on 4.1.4 :(

SH3A3-Q 06-12-2011 05:00 PM

Please
update to 4.1.4

micheal332001 06-12-2011 07:02 PM

Quote:

Originally Posted by Eric (Post 2206391)
Sorry Michael, but I think you're missing the issue. They are right, the functions_wysiwyg.php file no longer exists as of vB 4.1.4. You may need to update the mod to support both <= 4.1.3 AND >= 4.1.4 because of ckeditor.

I will have alook into this and get a fix for this very soon.

deverill2010 06-12-2011 07:35 PM

Thank you as I really want to use this!!! :)

Martyn1983 06-12-2011 08:28 PM

1 Attachment(s)
Hiya,

Have just installed this on my board and must say first of all - very impressive software!

Adding a few tester products just now though, and just come across the following bug (see screenshot)

Just wondering if any solutions/reasons for this are known?

micheal332001 06-13-2011 05:38 AM

Quote:

Originally Posted by Martyn1983 (Post 2206801)
Hiya,

Have just installed this on my board and must say first of all - very impressive software!

Adding a few tester products just now though, and just come across the following bug (see screenshot)

Just wondering if any solutions/reasons for this are known?

as you will see one is a physical product and will only show the price and the other is a downloable or subscription and has a diffarent format than the physical one.
but i do see a little error in the template, its not that much of a problem as it is showing the right info for each product.
also i would not be able to fix without the style you are using.
also what vb version are you using.

micheal332001 06-13-2011 06:40 AM

i have updated the file cart.php to try and get the new editor to work.
this has not been tested as yet but please feel free and let me know if it works.

micheal332001 06-13-2011 07:59 AM

Quote:

Originally Posted by micheal332001 (Post 2206975)
i have updated the file cart.php to try and get the new editor to work.
this has not been tested as yet but please feel free and let me know if it works.

just tested this and all is working fine with vb version 4.1.4

mrmanners 06-13-2011 10:29 AM

I have a problem. I have setup all my products to all a review. I have a customer who bought a product before microcart was installed and he now wants to write a review however when he goes into that products review tab there is no way to enter it... Here is the product.

Thanks,

mrmanners 06-13-2011 10:34 AM

Quote:

Originally Posted by micheal332001 (Post 2204146)
Here is the one made for the commercial version that should work with most of the free version.

Code:

'cart\.php$' => 'shop/shop.html'
'cart\.php\?do=main$' => 'shop/shop.html'
'cart\.php\?do=main&catid=(\d+)&catn=(.+?)$' => 'shop/category-$1/$2.html'
'cart\.php\?do=viewproduct&productid=(\d+)&prodn=(.+?)$' => 'shop/product-$1/$2.html'
'cart\.php\?do=checkout$' => 'shop/checkout.html'
'cart\.php\?do=cart$' => 'shop/cart.html'
'cart\.php\?do=thankyou$' => 'shop/thankyou.html'
'cart\.php\?do=cpanel$' => 'shop/accounts/cpanel/cpanel.html'
'cart\.php\?do=mvcpanel$' => 'shop/vender/cpanel/vender.html'
'cart\.php\?do=cart&action=changequantity&id=(\d+)&quantity=(\d+)$' => 'shop/cart/product-$1/$2.html'
'cart\.php\?do=cpanel&tab=(\d+)$' => 'shop/accounts/cpanel/$1.html'
'cart\.php\?do=mvcpanel&tab=(\d+)$' => 'shop/vender/cpanel/$1.html'
'cart\.php\?do=invoice&invoiceid=(\d+)&action=(\d+)$' => 'shop/cart/invoice-$1/$2.html'
'cart\.php\?do=payinvoice&invoiceid=(\d+)$' => 'shop/invoice/payment/$1.html'
'cart\.php\?do=mvpaypalbank&bid=(\d+)$' => 'shop/bank/payment/paypal-$1.html'
'cart\.php\?do=mvpaygatebank&bid=(\d+)$' => 'shop/bank/payment/paygate-$1.html'
'cart\.php\?do=addeditreview&orderid=(\d+)$' => 'shop/review-$1.html'
'cart\.php\?do=mvdeleteproduct&id=(\d+)$' => 'shop/remove-product-$1.html'
'cart\.php\?do=mv_addproduct$' => 'shop/vender/add-product.html'
'cart\.php\?do=mv_addimages$' => 'shop/vender/add-screenshots.html'
'cart\.php\?do=mv_addfiles$' => 'shop/vender/add-files.html'
'cart\.php\?do=mv_addoptions$' => 'shop/vender/add-options.html'


Sorry, rookie here. Where does this code get entered?

ckelley 06-13-2011 01:36 PM

To add to the product review post by mrmanners, there is no apparent review button visible and the "Star Ratings" are not working when you hover or try to click on them.

mrmanners 06-13-2011 01:38 PM

One more question; this one regarding shipping. Is there a way to configure flat rate shipping and even separate it for different items. Example: 10, 20, 30 shipping rate?

Also could you PM me the differences between the commerical and free version.

ckelley 06-13-2011 01:53 PM

DO you just add this to the cart.php file or does it replace an already existing piece of the code?

Quote:

Originally Posted by micheal332001 (Post 2204146)
Here is the one made for the commercial version that should work with most of the free version.

Code:

'cart\.php$' => 'shop/shop.html'
'cart\.php\?do=main$' => 'shop/shop.html'
'cart\.php\?do=main&catid=(\d+)&catn=(.+?)$' => 'shop/category-$1/$2.html'
'cart\.php\?do=viewproduct&productid=(\d+)&prodn=(.+?)$' => 'shop/product-$1/$2.html'
'cart\.php\?do=checkout$' => 'shop/checkout.html'
'cart\.php\?do=cart$' => 'shop/cart.html'
'cart\.php\?do=thankyou$' => 'shop/thankyou.html'
'cart\.php\?do=cpanel$' => 'shop/accounts/cpanel/cpanel.html'
'cart\.php\?do=mvcpanel$' => 'shop/vender/cpanel/vender.html'
'cart\.php\?do=cart&action=changequantity&id=(\d+)&quantity=(\d+)$' => 'shop/cart/product-$1/$2.html'
'cart\.php\?do=cpanel&tab=(\d+)$' => 'shop/accounts/cpanel/$1.html'
'cart\.php\?do=mvcpanel&tab=(\d+)$' => 'shop/vender/cpanel/$1.html'
'cart\.php\?do=invoice&invoiceid=(\d+)&action=(\d+)$' => 'shop/cart/invoice-$1/$2.html'
'cart\.php\?do=payinvoice&invoiceid=(\d+)$' => 'shop/invoice/payment/$1.html'
'cart\.php\?do=mvpaypalbank&bid=(\d+)$' => 'shop/bank/payment/paypal-$1.html'
'cart\.php\?do=mvpaygatebank&bid=(\d+)$' => 'shop/bank/payment/paygate-$1.html'
'cart\.php\?do=addeditreview&orderid=(\d+)$' => 'shop/review-$1.html'
'cart\.php\?do=mvdeleteproduct&id=(\d+)$' => 'shop/remove-product-$1.html'
'cart\.php\?do=mv_addproduct$' => 'shop/vender/add-product.html'
'cart\.php\?do=mv_addimages$' => 'shop/vender/add-screenshots.html'
'cart\.php\?do=mv_addfiles$' => 'shop/vender/add-files.html'
'cart\.php\?do=mv_addoptions$' => 'shop/vender/add-options.html'



micheal332001 06-13-2011 02:43 PM

Quote:

Originally Posted by mrmanners (Post 2207055)
I have a problem. I have setup all my products to all a review. I have a customer who bought a product before microcart was installed and he now wants to write a review however when he goes into that products review tab there is no way to enter it... Here is the product.

Thanks,

the reviews only work with downloadable productsat this time,
but the commercial version will let you review all products when i have added this to it.
This will not be an option for the free version.

Quote:

Originally Posted by mrmanners (Post 2207057)
Sorry, rookie here. Where does this code get entered?

this code has to be put into the vbseo system if you dont have it installed you cannot use this.

mrmanners 06-13-2011 03:45 PM

Quote:

Originally Posted by micheal332001 (Post 2207141)
the reviews only work with downloadable productsat this time,
but the commercial version will let you review all products when i have added this to it.
This will not be an option for the free version.



this code has to be put into the vbseo system if you dont have it installed you cannot use this.

We have the paid version of VBSEO. Where does it get loaded there?

Thanks for your patience in answering my questions.

Martyn1983 06-13-2011 08:49 PM

Quote:

Originally Posted by micheal332001 (Post 2206954)
as you will see one is a physical product and will only show the price and the other is a downloable or subscription and has a diffarent format than the physical one.
but i do see a little error in the template, its not that much of a problem as it is showing the right info for each product.
also i would not be able to fix without the style you are using.
also what vb version are you using.

Thanks for the quick reply! Much appreciated!

Currently running 4.1.0 - skinned with Breeze/New Breeze

miszko 06-16-2011 11:39 AM

I have a question. Where can I see orders list paid by offline payment? I want to check manually my bank account and accept this transaction on my site.

Martyn1983 06-18-2011 07:42 AM

Bump - seems its only by listing the item as a Product that this problem occurs. Listing it as anything else displays it correctly - so heres another question. I wont be selling much thats a download - would it be possible to remove the license/download fields from the category listings? If thats an easier fix that might be better?

basilrath 06-18-2011 03:15 PM

Just noticed in FF the sidebox is slightly off is there a reason anyones found and fixed ?

koraykose 06-18-2011 08:28 PM

Fatal error: Class 'TCPDF' not found in /home5/divijico/public_html/isbu/microcart/functions.php on line 2123

deverill2010 06-19-2011 08:01 AM

The postage on this is confusing with Royal mail. Has anyone been able to configure the postage correctly using royal mail??

deverill2010 06-19-2011 08:46 AM

Im trying to set up optional fields on a product using colours as I have a item in multiple colours. I have listed it with no price change and it shows correctly on the product page.

My 2 questions -
Is there a way to force it so a colour HAS to be selected?
Also when a colour is selected where exactly do I see this information?

I also noticed that when ordering a product if I change the email in my details it still sends an email to the one in my VB account rather than the one I changed it too.

deverill2010 06-19-2011 11:40 AM

How to you write a review?

I've bought a product as a test but dont see an option to review the product?

Thanks.

Great mod and works perfectly on my site!

deverill2010 06-19-2011 01:17 PM

Also why do downloadable, subscription and service items show postage? They are not physically posted so surely this shouldnt show??

deverill2010 06-19-2011 02:37 PM

Is there a way of making the row on the front page of the shop break?

E.g I have 8 items on the front page but would like it to drop onto a new row after four..


All times are GMT. The time now is 03:22 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,865KB
  • 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
  • (5)bbcode_code_printable
  • (1)bbcode_html_printable
  • (9)bbcode_php_printable
  • (21)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