convict
-
Posts
1,302 -
Joined
-
Last visited
-
Days Won
1
Posts posted by convict
-
-
Peterp, do you still encounter this error in PHP error log?
PHP Fatal error: Class 'SMTP' not found
Either a blank page by order status change in admin area?
-
You do well but it takes some time Google changes it. It could take several weeks as it depends to the Google algorythm.used. Simply said it is Google crawler decision to change already recorded data.
-
C:xampphtdocswerevr4x4accessoriesShopclassesrequest.class.php on line 255
[04-Feb-2014 06:12:14 UTC] PHP Fatal error: Class 'SMTP' not found in C:xampphtdocswerevr4x4accessoriesShopclassesphpMailerclass.phpmailer.php on line 1142
Is this the same bug?
Yes files attached are fixing error you mentioned above. php() mail works well without any fix. Seems you didn't replace files.
-
Looks like bad logic
if (extension_loaded('mcrypt') && function_exists('mcrypt_module_open')) {}
$GLOBALS['main']->setACPWarning('Mcrypt library missing from server required to encrypt credit card data!');
Should be
if (extension_loaded('mcrypt') && function_exists('mcrypt_module_open')) {}
else
$GLOBALS['main']->setACPWarning('Mcrypt library missing from server required to encrypt credit card data!');
Exactly so! 'else' disapeared somewhere LOL
Wel done. Fixed in Git...
-
Seems your site does not store session data. Does product add to cart hold the product in basket? If so you have to set the folder session data are stored either open a sales ticket over at http://support.cubecart.com when you don't know how to do it.
-
-
Did you enable Contact Us form?
-
Try this
Enable SSL: Yes
Force SSL mode: No
SSL Root: '/'
SSL URL: https://www.example.com
Standard URL: http://www.example.com
-
Bug due to PHPMailer upgrade to the latest version in 5.2.6 and 5.2.7
Fixed file + new one in package.
-
I am sorry but feature you are after is not included at this time.
Issue fixed was the product main stock level vs product options level inconsistency.
-
I can see a "Master Category ID" option but no option to import sub category IDs.
Master category can be even a sub category. Master category means the main product category as product can be assigned to multiple categories but not using import tool
And is there a way to set the Google category ID in the spreadsheet before importing?
No option at this time but product import tool can be tweaked easily in adminsourcesproducts.import.inc.php
'brand' => $lang['catalogue']['product_brand'], 'gtin' => $lang['catalogue']['product_gtin'], 'man' => $lang['catalogue']['product_mpn'], to 'brand' => $lang['catalogue']['product_brand'], 'gtin' => $lang['catalogue']['product_gtin'], 'man' => $lang['catalogue']['product_mpn'], 'google_category' => 'Google Category Name',
-
A new feature is already developed prepared for 5.2.6 month ago "Main stock level as matrix stock level summary" this will set the product main stock level as all product options matrix summary to maintain hide out of stock issue even any next one.
-
Please take a look at my post of 21 December 2013 - 12:41 PM.
Is there enough detail there? It is only a test site at this stage, so you can make any alterations you wish. I won't touch it for the next couple of days.
We need to see files content and database probably thus webhost control panel access required. Please do use support area to open a sales ticket https://support.cubecart.com/index.php?/Tickets/Submit
Thank you.
-
Yes it is possible just disable sale mode in admin Store settings > Features tab.
Either read this post
-
Well, I was thinking I had done this successfully with categories, so I checked. I AM able to hide a category - as a test I was able to hide the Clearance category on plushcatalog. But, unlike a hidden document, I could NOT use the actual url for the clearance category to access it. So there is a difference between a hidden category, which is in effect disabled, and a hidden document, which is still accessible.
Documents have an extra field in the table called doc_url_openin that controls the hidden feature. It would seem logical that this is a bug in CC, as why otherwise hide a category when you have done the same thing as disable it?
Hidden category status is set to 0 - disabled. No other way to hide a category. When category is disabled it can't be accessed nor any product from such a category purchased.
Documents have the hide link feature category does not at this time. When a document is disabled it can't be even viewed this acts as the same as disabled category. However document link can be hidden using "Show link to document in storefront?" setting but document must be enabled to access its content via direct URL. Custom doc URL even doc_url_openin as you already mentioned has nothing common to hide doc link.
Well there is a category table column using name 'hide' but used almost nowhere apart from searchCatalogue() method of catalogue class but seems as an early v5 development result only. May be a new feature as the same as document has to hide link to a category from Shop By Category box. This however also removes such a category subcategories from list.
-
Do you mean customer account area over at http://cp.cubecart.com? Please submit a new Sales ticket at https://support.cubecart.com/index.php?/Tickets/Submit about so we can take a look.
-
Duplicated record of admin user might be the issue please check in database content
-
When order is pending it has been already placed with all customer data included. Even delivery address is recorded as a copy of billing one when customer check it.
-
I didn't leave MS yet. Using WIN7 however linux too. My desk is below :-D
-
I have seen this rare issue before. The number of characters of method_name column in CubeCart_shipping_rates table is 1 instead of 255. Just change it via myPHPAdmin. Something went wrong during installation.
-
Best to see module settings. Assume some typo either wrong setting there.
-
I already added one line of code to filemanager.class.php file line 574 is new below. As you can see even relative path to the image URL is added using CK Editor Image button browsing the image folder. Next release included.
$file['select_button'] = (bool)$select_button; if ($select_button) $file['master_filepath'] = $GLOBALS['rootRel'].$file['master_filepath']; // Fix the image path added to the FCK editor area $list_files[$key] = $file;
-
Link code has been fixed, thanks for an attention bsmither.
- link to order details added to assignOrderDetails()
- 2 new hooks added to assignOrderDetails() and getOrderDetails()
-
hi Al & Milos
Can you post more details of the problem and solution - I assume the fix will be in 5.2.5 but without knowing how long before that is released, many will want to implement a solution immediately.
We have had quite a few requests to set the admin session expiration time to higher than 60 minutes but maybe these can be set via the store settings so store owners can decide for themselves ?
Thanks
Ian
As you can find In CC524 classes/session.class.php line below
//$this->_session_timeout = (ADMIN_CP) ? 3600 * 24 : 3600 * 1;
Just uncomment for one day admin session. Code is there to remind me to add this from admin area configurable. Please note it does not work on server admin disabled session time extension.
Upgrade overwrites CSS changes
in Install & Upgrade Support
Posted
You did it well creating own skin. Last step is required to change even skin name in skin config.xml like
<name><![CDATA[mycrosshatch]]></name>
<display><![CDATA[mycrosshatch]]></display>