Search found 83 matches

Search found 83 matches

Re: OpenCart 3.0.1.0 Released

i have already got isenses master card extension installing from the admin marketplace. its really going to sell a lot of extension once i start approving extensions. i will be restricting some php functions from being used in extensions such as eval to avoid being hacked. Do you plan on some way o...

Jump to post
  • Sat Jul 15, 2017 8:55 pm
  • Replies 51
  • Views 59122
Re: New opencart web site - bugs

I somehow don't see this being an issue at all (except that users need to search for strange named zip files in their download folder). I would recommend you check the experience of adding extensions in other software. Things like wordpress, prestashop, and so on. They are much easier on end users....

Jump to post
  • Thu Dec 15, 2016 2:51 am
  • Replies 351
  • Views 96146
Re: New opencart web site - bugs

>A temporany idea would be to write a note yourself on your extension page Unfortunately, any text you put on your extension page isn't anywhere near the download button. People don't read all the text you put on the page and remember it later. Contextual (near the button) would help a bit. Fixing t...

Jump to post
  • Tue Dec 13, 2016 3:49 am
  • Replies 351
  • Views 96146
Re: New opencart web site - bugs

I take it the issue of downloaded ocmod files not being installable without the end user renaming the file isn't going to be fixed...ever? Would the opencart team at least consider putting some text around the download button that explains to end users that they'll need to rename the file? Edit: I s...

Jump to post
  • Mon Dec 12, 2016 8:04 pm
  • Replies 351
  • Views 96146
Re: New opencart web site - bugs

There are better ways to handle OpenCart modifications: Event handlers, or Override Engine. Well, sure. But, suppose you decide to use event handlers. You would probably then package them for download as a...wait for it...ocmod extension. Which currently isn't installable without renaming the downl...

Jump to post
  • Mon Nov 28, 2016 1:24 am
  • Replies 351
  • Views 96146
Re: New opencart web site - bugs

Would be good for Daniel to chime in again. We're headed towards about 20 days with the Marketplace still pretty much unusable. I know there's a list of bugs out there being tracked, but 20 days with bugs like: "users cannot download and install ANY ocmod extension due to random file naming&quo...

Jump to post
  • Fri Nov 25, 2016 10:28 pm
  • Replies 351
  • Views 96146
Re: Official OpenCart Website Bug Reports

There's a pretty bad security exploit on the extension pages now as well. You can inject javascript into the description of your module. See: https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=19079 for an example. No tricks to do it either...just insert some <scrip...

Jump to post
  • Thu Nov 10, 2016 11:35 pm
  • Replies 351
  • Views 96146
Re: New opencart web site - bugs

Just when you thought the search function in the market place couldn't be any worse... :D :D Agreed. I tried searching for "page cache", since I have an extension that does that. The first page of results doesn't show ANY extensions that are a page cache. Not ours, and not even Jay's page...

Jump to post
  • Tue Nov 08, 2016 6:19 am
  • Replies 351
  • Views 96146
Re: New opencart web site - bugs

artcore wrote:Are all the extension comments gone forever?
It appears that way, as they've switched to using a 3rd party service (Disqus) for comments.

Jump to post
  • Mon Nov 07, 2016 9:53 pm
  • Replies 351
  • Views 96146
Re: Https Mixed content error

If this is 2.2.0.0:

Look in upload/system/config/catalog.php and upload/system/config/admin.php.

Set

$_['site_ssl'] = false;

to

$_['site_ssl'] = true;

Jump to post
  • Thu Mar 17, 2016 7:53 pm
  • Replies 17
  • Views 27242
Re: Redirect to store extension

I'm looking for an extension or php to do the following: A small simple form that can be placed on my main default opencart store that says "enter your store id here" and a text box for them to enter a code. By them entering a specific "store code" they will then be redirected t...

Jump to post
  • Wed Mar 16, 2016 5:30 am
  • Replies 5
  • Views 1798
Re: Constant Errors

both are definitely there... I can see them and the password is correct If you have command line access, I would try that next. Aside from the username and password, get the host and database name from that same file, then: # note that you don't enter the < or > chars...like mysql -u myuser -p -h m...

Jump to post
  • Wed Mar 16, 2016 4:03 am
  • Replies 7
  • Views 1265
Re: Constant Errors

Maybe check that your config.php in the root www directory has these two entries, and that they are correct.

Code: Select all

define('DB_USERNAME', 'whateveryourdbuseris');
define('DB_PASSWORD', 'yourdbpassword');

Jump to post
  • Tue Mar 15, 2016 7:37 am
  • Replies 7
  • Views 1265
Re: Looged

Sounds like he wants a list of "Logged In Customers" showing on the website. Opencart does have functionality to show logged in customers, but only in the admin area (Reports->Customers->Customers Online)...not on the website itself. You would basically need to copy the model/view/controll...

Jump to post
  • Tue Mar 15, 2016 7:33 am
  • Replies 3
  • Views 864
Re: Massive Slow Response - PLEASE HELP

You don't need to post the entire log, just the last 50 or 100 lines or so. Maybe copy and paste it into http://pastebin.com/ if the forum isn't allowing you to post it here? Then you can just a link to it here. Personally, if you need shared hosting (vs a vps, etc), you might have much better luck ...

Jump to post
  • Tue Mar 15, 2016 7:28 am
  • Replies 6
  • Views 973
Re: vQmod fails to write to vqcache directory

We will test this out and put it in the next release if all goes well. Changing the preg_match to be case insensitive could create an issue on linux/unix, since files there are case sensitive. It wouldn't be typical to have two vqmods with the same name but varied in case, but it could happen. I'm ...

Jump to post
  • Tue Mar 15, 2016 12:25 am
  • Replies 25
  • Views 4957
Re: How do I re-open an Issue in OC GitHub?

couldn't wait so I tested the fixes in latest branch and it works now as expected. I do find another issue w/ Admin > System > Localisation > Language though. The screen is different from the docs http://docs.opencart.com/system/localisation/language/ and adding a Language is now more cumbersome be...

Jump to post
  • Mon Mar 14, 2016 10:56 pm
  • Replies 5
  • Views 1164
Re: OC cache resizing cripples colours - bad color managemen

For what it's worth, 100% of your complaints map back to the php GD library. The imagecopyresample() function strips the color profile. And, just about every other php shopping cart uses GD. So, while I agree that it sucks, all of the indignation pointed at opencart isn't really fair. They all use G...

Jump to post
  • Mon Mar 14, 2016 9:29 pm
  • Replies 23
  • Views 6968
Re: How do I re-open an Issue in OC GitHub?

I posted the following few days ago https://github.com/opencart/opencart/issues/4102 Daniel did a commit and thought he fixed the issue and close the thread. I have since added some comments regarding the issue because it's not yet fixed. How do I re-open that thread? Or should I submit a new issue...

Jump to post
  • Mon Mar 14, 2016 9:19 pm
  • Replies 5
  • Views 1164
Re: How to expand the width of the "Description" in product

not helpful at all Please have a look the topic "General support", am I came to the wrong place? Maybe you don't understand that the people helping you are doing so only because they want to. They are not being paid. Like, you know, if you ask someone on the street for directions. If you ...

Jump to post
  • Mon Mar 14, 2016 8:56 pm
  • Replies 11
  • Views 2508

Search found 83 matches