Search found 20 matches

Page 1 of 1

Search found 20 matches

Modify Tool for OpenCart Inventory Import

We have two separate inventory files—one for US stock and one for Chinese stock—that contain information on product models, colors, sizes, and quantities. The goal is to merge these two files into a single database, where we can calculate the total quantity available for each unique combination of m...

Jump to post
  • Mon Apr 14, 2025 11:55 pm
  • Replies 8
  • Views 901
Learning to Program

Hi, I want to learn to program. I started several years ago working at my father's shop and built him an e-commerce store using OpenCart. Now, I've done a little of playing around with code, and I love it. I want to become a professional programmer. The problem is I find it so hard to apply what I'm...

Jump to post
  • Tue Apr 08, 2025 8:39 pm
  • Replies 1
  • Views 29008
Re: [OC 3.0.4.0] Twig Include

You could try this in a modified system/library/template/twig.php: $loader1 = new \Twig\Loader\ArrayLoader(array($filename . '.twig' => $code)); $loader2 = new \Twig\Loader\FilesystemLoader(array(DIR_TEMPLATE)); // to find further includes $loader = new \Twig\Loader\ChainLoader(array($loader1, $loa...

Jump to post
  • Wed Sep 25, 2024 11:28 pm
  • Replies 3
  • Views 815
[SOLVED] OC 3.0.4.0 Twig Include

This line is not working for an extension: {% include 'extension/module/related_options_edit_variants.twig' %} I even tried this modification but it did not work. https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=40603&filter_search=ocmod%20fix&filter_downl...

Jump to post
  • Wed Sep 25, 2024 9:04 pm
  • Replies 3
  • Views 815
[Professional Developer] Custom Work

In need of a Professional OpenCart Developer familiar with database manipulation and product data import.

1 week deadline.

More details will be sent via email so please provide an email to contact you at.

Jump to post
  • Tue Mar 05, 2024 5:43 am
  • Replies 7
  • Views 1176
OpenCart Developer Needed

I have a project I would like help with that involves webp images and compatibility. Please, if you are interested in working with me, offer your email address and I will send you more details. Looking for the following: Experience with OpenCart 2.3.0.2 Willing to work on Journal 3.2 Theme Quick pro...

Jump to post
  • Sat Nov 18, 2023 2:19 am
  • Replies 5
  • Views 1230
Re: [OC 2.3.0.2] PHP 7.4.33 Error

require_once(DIR_SYSTEM . 'library/session.php'); require_once(DIR_SYSTEM . 'library/session/native.php'); $f = new Session(); $f->start(); $session_data = $f->data; Here is the code causing the trouble. It is part of a page cache extension. Could I just comment the other part out, safely? require_...

Jump to post
  • Wed Nov 08, 2023 11:34 pm
  • Replies 8
  • Views 1454
Re: [OC 2.3.0.2] PHP 7.4.33 Error

Thank you. I was able to find the extension causing the problem. I will contact the developer of the extension.

Jump to post
  • Tue Nov 07, 2023 7:35 pm
  • Replies 8
  • Views 1454
Re: [OC 2.3.0.2] PHP 7.4.33 Error

It will have always been an error, it's just the warning message was only added in later versions of PHP. I would use phpinfo() to check the session.auto_start setting and you other session settings. Also check session_autostart is set to false in system/config/catalog.php. You want to look for any...

Jump to post
  • Tue Nov 07, 2023 4:12 pm
  • Replies 8
  • Views 1454
Re: [OC 2.3.0.2] PHP 7.4.33 Error

Somehow sessions are being started too early on your site. Check the value of session.auto_start in your PHP settings. Could also be an issue with a them or extension. I am using the OpenCart php.ini file to manage this setting, which is set as follows: session.auto_start = Off; What should I searc...

Jump to post
  • Mon Nov 06, 2023 4:40 am
  • Replies 8
  • Views 1454
[OC 2.3.0.2] PHP 7.4.33 Error

Hi everyone, I hope your day is going well. I have scourged the forums for this topic and am surprised I have been unable to find it because it seems to be an issue with PHP 7.4.33 and OC 2.3.0.2. What is happening is I keep getting this error in my PHP logs: AH01071: Got error 'PHP message: PHP War...

Jump to post
  • Sun Nov 05, 2023 7:31 pm
  • Replies 8
  • Views 1454
Re: [2.3.0.2] Extension Installer: Could not upload file

It was my server security software blocking the installer.php script.

Solved :)

Jump to post
  • Thu Nov 02, 2023 7:44 pm
  • Replies 3
  • Views 669
[Solved] Extension Installer: Could not upload file

Halfway through extension installer performing an installation I get an error like "could not upload file" and I have never seen anything like this. Please advise.

Jump to post
  • Thu Nov 02, 2023 6:01 am
  • Replies 3
  • Views 669
Re: [OC-2.3.0.2][Ext=RelatedOptions] Import Tool Not Working as Expected

Honestly, I'm looking for a long-time partner.

I was able to solve the problem I had on my own using the code previously mentioned.

If anyone wants to be my partner for the long-term please let me know. I am now in contact with Paul and plan on using him in the future for bigger projects.

Jump to post
  • Fri Oct 27, 2023 8:18 pm
  • Replies 8
  • Views 1589
Re: [OC-2.3.0.2][Ext=RelatedOptions] Import Tool Not Working as Expected

This was my final result for function getProductByModel public function getProductByModel($model, $manufacturers){ $query = $this->db->query("SELECT product_id FROM " . DB_PREFIX . "product WHERE model = '" . $this->db->escape($model) . "' AND manufacturer_id IN (" . im...

Jump to post
  • Fri Oct 27, 2023 9:45 am
  • Replies 8
  • Views 1589
Re: [OC-2.3.0.2][Ext=RelatedOptions] Import Tool Not Working as Expected

Hi Shawn So if I'm understanding correctly, you want to disable any products not in the CSV after you've updated all the items that are? You also want to put quantities into standard options as well as related options? Kind regards Jay Yes, you are right, my friend! Yes, after updating related opti...

Jump to post
  • Fri Oct 27, 2023 8:31 am
  • Replies 8
  • Views 1589
[OC-2.3.0.2][Ext=RelatedOptions] Import Tool Not Working as Expected

Hi, I need some help with an import tool for my website that imports CSV files and updates product information accordingly through the extension Related Options. The code of subject is the following public function getProductByModel($model, $manufacturers){ $query = $this->db->query("SELECT pro...

Jump to post
  • Fri Oct 27, 2023 3:46 am
  • Replies 8
  • Views 1589
Opencart v2.3.0.2 Gmail API

Hi,

I have an extension for Gmail API for Opencart 2.3.0.2 that is working.

Based on a GitHub version for OpenCart 3.0

Thanks

Jump to post
  • Wed Oct 19, 2022 11:16 pm
  • Replies 2
  • Views 6005
Generate image cache for opencart

Hi, I wanted to generate the image cache perpetually. I created a small HTML file that will open each link listed every 10 seconds. A great way to generate the image cache. You can simply open the HTML file in Chrome and then go to chrome:\\discards and disable discarding. Next, change your computer...

Jump to post
  • Sun Oct 16, 2022 10:22 pm
  • Replies 0
  • Views 7021

Page 1 of 1

Search found 20 matches