All Activity
- Today
-
black_tar joined the community
- Yesterday
-
InFocus joined the community
-
Sherdil Cloud joined the community
-
Yes all official ones at the latest version should be fine. The PHP error log will give you more detailed information.
-
Thanks for your prompt reply. I presume CC and CC Ltd extensions will be compatible automatically? If so, it must be one or both of the other 2 extensions I'm using, but at least I'll know who to chase up or ditch.
-
Al Brookbanks started following php 8.2 upgrade?
-
It's already compatible with PHP 8.2 and 8.3. Whether your 3rd party extensions or skins are is another matter...
-
RogerM started following php 8.2 upgrade?
-
Are there plans to upgrade CC6.5.6 to be automatically compatible with php 8.2+? My website host changed the php to 8.2 and my CC stopped working until I manually changed it back to php 7.4 but I gather it has a finite life.
-
To customize your product's display, you'll need to edit the content.product.php file by adding key variables. If a variable is empty, it won't impact the product. However, if the variable contains data—like a file name or specific value—the template code will use it accordingly. To apply these changes selectively, you should add extra fields to the product details. This allows only certain products to have these special features. For further assistance, feel free to send a private message.
-
Festivalkyrie joined the community
- Last week
-
BeckerHugues joined the community
-
5k8dl6vm joined the community
-
Aussie Discreet changed their profile photo
-
Aussie Discreet joined the community
-
Al Brookbanks started following United States Postal Service - (API 3.0)
-
USPS are soon to discontinue their old RateV4 shipping calculator. In response to this we have released a free new USPS extension to connect to the current API (3.0). We recommend that all our US merchants upgrade to this extension. More Information: https://www.cubecart.com/extensions/shipping-methods/united-states-postal-service-usps-api-3-0 Public forum discussion can be found here. To use this new extension, merchants will need to obtain a new Consumer Key and Consumer Secret.
-
Name: United States Postal Service (USPS - API 3.0) Price: Free Category: Shipping Methods Homepage: https://www.cubecart.com/extensions/shipping-methods/united-states-postal-service-usps-api-3-0
-
Images show in one place, not in another
ThomasMate replied to MJPMalc's topic in Customising Look & Feel
Thanks for the detailed explanation, Jan. You're right that using a shared SSL can be risky, and investing in a dedicated SSL certificate is usually a better choice for security. It's good to know that it's relatively inexpensive to purchase and install your own SSL certificate these days. If you need any help writing or improving your security policy or related documentation, EssayHub offers professional help in creating clear and effective writing. Also, on https://essayhub.com/blog/how-to-end-a-college-essay you will learn how to end a college essay. Their expertise can be useful in the development of any security-related messages or policies. - Earlier
-
In: https://forums.cubecart.com/topic/59315-syntax-error-in-classescubecartclassphp/ Looking at (your edited file's) line 2796 more closely, this happens when a non-logged-in customer wants to check on the status of an order. When first presented with the Order Lookup form, the Order Number is taken from the web address given to the customer in their email, "/index.php?_a=vieworder&cart_order_id=xxxx". If a visitor just happens to want to visit "/index.php?_a=vieworder" without providing the cart_order_id part, that will generate this error. How often will that happen? Can you list the steps needed to get this error on demand -- without actually munging the web address? So, changing $_GET to $_REQUEST won't help. Try this edit: $cart_order_id = Order::validOrderId(trim($_GET['cart_order_id'] ?? '')) ? trim($_GET['cart_order_id'] ?? '') : '';
-
We had discussed line 2197 earlier. -- We did? You have a better memory than me LOL I'll try the edit above
-
Having made the edits to synchronize lines of code to your file, line 2796 is: $cart_order_id = Order::validOrderId(trim($_GET['cart_order_id'])) ? trim($_GET['cart_order_id']) : ''; A few lines of code just above it, the statements are using $_REQUEST. So, maybe try this edit: $cart_order_id = Order::validOrderId(trim($_REQUEST['cart_order_id'])) ? trim($_REQUEST['cart_order_id']) : ''; We had discussed line 2197 earlier.
-
cubecart.class Line 2197 Red box with x: syntax error, unexpected "=" The only difference between stock and mine is this edit I made many versions ago starting at line 2644: $delivery = array( 'url' => $url, 'method' => $order['ship_method'], 'product' => $order['ship_product'], 'tracking' => $order['ship_tracking'], 'all_ship_date' => $order['all_ship_date'], 'venue_ship_product' => $order['venue_ship_product'], 'all_shipping_used' => $order['all_shipping_used'], 'date' => (!empty($order['ship_date']) && $order['ship_date']!=='0000-00-00') ? formatDispatchDate($order['ship_date']) : '' ); } unset($ship_class); } else { $delivery = array( 'url' => filter_var($order['ship_tracking'], FILTER_VALIDATE_URL) ? $order['ship_tracking'] : '', 'method' => $order['ship_method'], 'product' => $order['ship_product'], 'tracking' => $order['ship_tracking'], 'all_ship_date' => $order['all_ship_date'], 'venue_ship_product' => $order['venue_ship_product'], 'all_shipping_used' => $order['all_shipping_used'], 'date' => (!empty($order['ship_date']) && $order['ship_date']!=='0000-00-00') ? formatDispatchDate($order['ship_date']) : '' ); }
-
"So, you added the debugMessage statement at line 279? Then two lines of code later it's gone? " These errors were before I did the debug? The Product Appearances was discussed via PM. I got this error after I made the edit. I checked. The edit is there I'll check my cubecart.class file
-
So, you added the debugMessage statement at line 279? Then two lines of code later it's gone? That inconceivable! Unless your "cPanel Error Log" is collecting errors from an installation of CubeCart that is other than what you are editing. The first two pair of errors have been reported (see issue #3572). The Product Appearances was discussed via PM. As for the last error, line 2796 of cubecart.class.php must be different than stock in your set of files.
-
It's there too: Array ( [cat_id] => 67 [cat_name] => Banks and Bells [cat_desc] => [cat_parent_id] => 0 [cat_image] => 860 [per_ship] => 0.00 [item_ship] => 0.00 [item_int_ship] => 0.00 [per_int_ship] => 0.00 [hide] => 0 [seo_meta_title] => Banks and Bells [seo_meta_description] => Buy your vintage and collectible banks and bells at low prices with fast shipping [seo_meta_keywords] => [priority] => 11 [status] => 1 [cat_hier_position] => 0 [cat_parse] => 0 ) This is my cPanel error log [01-Sep-2024 19:22:02 America/Louisville] PHP Warning: Invalid Security Token in /home/xx/public_html/classes/sanitize.class.php on line 162 [01-Sep-2024 19:22:02 America/Louisville] PHP Warning: Undefined global variable $_GET in /home/xx/public_html/includes/functions.inc.php on line 218 [01-Sep-2024 19:22:03 America/Louisville] PHP Warning: Invalid Security Token in /home/xx/public_html/classes/sanitize.class.php on line 162 [01-Sep-2024 19:22:03 America/Louisville] PHP Warning: Undefined global variable $_GET in /home/xx/public_html/includes/functions.inc.php on line 218 [01-Sep-2024 22:00:16 America/Louisville] PHP Warning: Undefined array key "cat_parse" in /home/xx/public_html/classes/catalogue.class.php on line 281 [01-Sep-2024 23:49:38 America/Louisville] PHP Warning: Undefined array key "cat_parse" in /home/xx/public_html/classes/catalogue.class.php on line 281 [02-Sep-2024 00:29:08 America/Louisville] PHP Warning: Undefined array key "product_id" in /home/xx/public_html/modules/plugins/Product_Appearances/hooks/admin.product.tabs.php on line 5 [02-Sep-2024 02:07:34 America/Louisville] PHP Warning: Undefined array key "cat_parse" in /home/xx/public_html/classes/catalogue.class.php on line 281 [02-Sep-2024 03:06:09 America/Louisville] PHP Warning: Undefined array key "cat_parse" in /home/xx/public_html/classes/catalogue.class.php on line 281 [02-Sep-2024 04:30:28 America/Louisville] PHP Warning: Undefined array key "cat_parse" in /home/xx/public_html/classes/catalogue.class.php on line 281 [02-Sep-2024 05:32:26 America/Louisville] PHP Warning: Undefined array key "cat_parse" in /home/xx/public_html/classes/catalogue.class.php on line 281 [02-Sep-2024 05:34:56 America/Louisville] PHP Warning: Security Warning: Illegal array key "@zdi/Powershell" was detected and was removed. in /home/xxx/public_html/classes/sanitize.class.php on line 121 [02-Sep-2024 12:58:32 America/Louisville] PHP Warning: Undefined array key "cart_order_id" in /home/xxx/public_html/classes/cubecart.class.php on line 2796
-
Hi there, To set up SMTP settings for Office 365, you can use the following details: SMTP Server: smtp.office365.com Port: 587 Encryption: STARTTLS Username: Your Office 365 email address Password: Your Office 365 password These settings should work to notify you when there's an order. If you ever find yourself needing help with tasks, whether it’s setting up configurations or even when you need someone to do my homework for money, you can check out services like https://studyfy.com/service/do-my-homework. They can be really handy!
-
I’m looking to customize the checkout process in CubeCart to better suit our business needs. Can anyone provide guidance or share resources on how to modify the checkout fields or add custom steps to the process? poly clinic
-
So, if $catData at line 273 has an array element 'cat_parse', but the $catData at line 281 does not, the only thing between them is a hook. As an experiment, at line 279 (should be a blank line), add the debugMessage statement that was added to line 273. If 'cat_parse' does not show up in the second showing in CubeCart's Debug Console, Debug Messages section, then we know that the hook is causing interference.
-
Yes, if the sub-domain and new domain are on different hosting accounts, ensure that any plugins needing ionCube or specific PHP versions are compatible with both servers. Check if you can access the admin login screen to verify if the issue is with plugin compatibility or server configuration.
-
It's there: Debug Messages: [0] Array ( [cat_id] => 22 [cat_name] => Beer and Liquor [cat_desc] => [cat_parent_id] => 0 [cat_image] => 502 [per_ship] => 0.00 [item_ship] => 0.00 [item_int_ship] => 0.00 [per_int_ship] => 0.00 [hide] => 0 [seo_meta_title] => Beer and Liquor Collectibles - CamBargainStore [seo_meta_description] => Buy all your vintage beer and liquor collectibles here. Great products at low prices. More to come! [seo_meta_keywords] => [priority] => 12 [status] => 1 [cat_hier_position] => 0 [cat_parse] => 0 )
-
Please enable CubeCart's debug mode, if not already. In the file /classes/catalogue.class.php, near line 273: Find: $catData = $this->_categoryData; Change to: $catData = $this->_categoryData; $GLOBALS['debug']->debugMessage('<pre>'.print_r($catData,true).'</pre>'); View a category page. CubeCart's Debug Console will popup(*). Scroll to the bottom to see the Debug Messages section. Verify that [cat_parse] is an element of the array. * If not having given permission before, the browser may complain about a page wanting to display a popup window. Let it do so. You may need to close the popup window and reload the category page.
-
yes it is I just reuploaded the file with the stock file for 6.5.6 - and I'll see if I get any warnings. In the admin error log it says category discount table doesn't exist, but I see it has been addressed in GitHub I'll go ahead and add it
-
In /classes/catalogue.class.php, near line 757, find: if (($result = $GLOBALS['db']->select('CubeCart_category', false, array('cat_id' => $category_id, 'status' => 1))) !== false) { Please determine if this statement is exactly as is shown above.
-
Here's my code: if (isset($catData) && is_array($catData)) { if($catData['cat_parse']=='1') { $catData['cat_desc'] = $GLOBALS['smarty']->fetch('string:'.$catData['cat_desc']); } $vars['category'] = $catData;
-
I think that would not be necessary. But now we need to find out why that column and its value is not becoming available at line 281. In /classes/catalogue.class.php, near line 757, find: if (($result = $GLOBALS['db']->select('CubeCart_category', false, array('cat_id' => $category_id, 'status' => 1))) !== false) { Please determine if this statement is exactly as is shown above.