Search found 196 matches

Search found 196 matches

Re: Folder Permissions

Thank you for your answer!

If your host does not allow 755 for some reason, consider changing hosts.
I would rather want to know how to configure my (dedicated) host so it will accept 755.

Jump to post
  • Fri Sep 20, 2013 6:56 pm
  • Replies 3
  • Views 2602
Re: Add New Column "Store" in Admin > Order List

Get yourself a programmer. Adding a column to OpenCart is a relatively simple example-task that every applicant (even interns) in our company has to pass...

OpenCart is very uniform and someone with little programming skills should be able to achieve this without too much effort.

Jump to post
  • Wed Sep 18, 2013 9:09 pm
  • Replies 1
  • Views 813
Folder Permissions

I have seen a lot of posts about this topic, but none could help me further... Like many others in this forum, I cannot set the folder permissions according to the installation guide. As said on http://docs.opencart.com/display/opencart/Basic+security+practices we should set the config files to 644 ...

Jump to post
  • Wed Sep 18, 2013 6:15 pm
  • Replies 3
  • Views 2602
Re: Making cron jobs

You might want to limit your cronjobs to a CLI execution, so nobody can start them from within their browser. Example: if(php_sapi_name() != 'cli'){ die('maandafrekening via web niet toegestaan'); } Then you have actual control over how often your job is executed. For this solution, you will need a ...

Jump to post
  • Wed Jul 17, 2013 9:52 pm
  • Replies 7
  • Views 20196
Re: Code Completion for NetBeans

This is awesome! Exactly what i needed. If anybody is wondering, how he can have code completion for the models as well... you could type them all in manually, or use the following generator script: public function models() { $files = glob(DIR_APPLICATION . 'model/*/*.php'); foreach ($files as $file...

Jump to post
  • Thu Mar 28, 2013 5:19 am
  • Replies 3
  • Views 3028
Re: thumbnail icons for categories

Do you already have vQmod installed and working?

Jump to post
  • Mon Jul 16, 2012 8:26 pm
  • Replies 13
  • Views 9265
Re: Bind the Order History to a User

I you mean sending email by "notify", you should take a look on how the customer gets notified. I merged my vQmods into the code, and now my OpenCart is very very different from the orginal one, so i cant point you to a specific point in code. But I kind of remember that emails are sent in...

Jump to post
  • Fri Dec 16, 2011 6:50 pm
  • Replies 12
  • Views 7216
Re: thumbnail icons for categories

i am sorry, i have not been working on 1.5.x

Jump to post
  • Sat Oct 22, 2011 9:41 pm
  • Replies 13
  • Views 9265
Re: Returns Have To Add Manually Back To Stock

alright, as a fix this will work out alright.
in general, this is one of the largest problem i see with opencart....
Adding new features all the time is nice, but for a business application, some things might need a little more thinking.

Jump to post
  • Wed Jul 27, 2011 11:30 pm
  • Replies 20
  • Views 4944
Re: Returns Have To Add Manually Back To Stock

people, be careful what you are doing! please do not bind the code to specific status ID's rather give the statuses logical and configurable properties (is done, is cancelled, is in progress) And while doing, think about that also order_products could have a status, so i dont have to delete an order...

Jump to post
  • Wed Jul 27, 2011 10:35 pm
  • Replies 20
  • Views 4944
Re: Call to member function getFile() on a non-object Front.

stupid me....
replace

Code: Select all

return 'test';
with

Code: Select all

echo 'test';
and everything is fine

Jump to post
  • Wed Jul 27, 2011 9:14 pm
  • Replies 1
  • Views 3682
Call to member function getFile() on a non-object Front.php

Hello When trying to add my own AJAX callback function to the catalog/product/product controller, I get the following error: atal error: Call to a member function getFile() on a non-object in /home/xxx/domains/xxx/public_html/system/engine/front.php on line 34 I am seriously confused because it work...

Jump to post
  • Wed Jul 27, 2011 9:08 pm
  • Replies 1
  • Views 3682
Re: Recalculate Shipping on Backend Order Changes?

Seriously, this cannot only be a problem for me? Did nobody ever ask this?

Jump to post
  • Tue Jul 26, 2011 8:27 pm
  • Replies 2
  • Views 890
Re: thumbnail icons for categories

I works for me on 1.4.9.5, have not tested it yet on 1.5.x

Jump to post
  • Mon Jul 25, 2011 3:32 pm
  • Replies 13
  • Views 9265
AJAX mass processing provokes errors

Hello My company wants to create a recurring report, that ignores all values that already are in a report. (background: they create monthly invoices for their customers, which are based on the order_product status instead of the order status) So i created a javascript function that creates a ajax re...

Jump to post
  • Mon Jul 18, 2011 8:21 pm
  • Replies 0
  • Views 699
Re: How long will 1.4x be supported now 1.5 is out?

I am really looking forward to see the next 1.4 releases. I worked on a OpenCart systems for 6 months using vQmod to keep it upgradeable. But re-working my 35 vQmods for 1.5 is not really desirable... and thanks to god also not necessary! So I am going to wait for the next 1.4 releases, and when its...

Jump to post
  • Thu Jul 14, 2011 9:06 pm
  • Replies 9
  • Views 1479
Recalculate Shipping on Backend Order Changes?

Hello, i created a Shipping Extension, that calculates the shipping costs dependant on the product categories. Example: Category A -> 35€ Category B -> 10€ It works fine in the frontend. But when I delete or add new products in the backend, how do I tell OpenCart to recalculate the costs for shippin...

Jump to post
  • Mon Jul 11, 2011 3:49 pm
  • Replies 2
  • Views 890
Re: Ginkgo T-shirts in Vietnam.

your color picker does not work for me.
using Google Chrome.
Therefore I cannot add anything to the cart :(

Code: Select all

index.php:341Uncaught TypeError: Cannot set property 'value' of undefined

Jump to post
  • Fri Jul 01, 2011 5:52 pm
  • Replies 9
  • Views 4203
Re: What is VqMod?

Although you already made 25 posts, you obviously haven't discovered the search function of this forum yet.
www.vqmod.com
or SEARCH for vQmod in this forum.

Jump to post
  • Thu Jun 30, 2011 10:42 pm
  • Replies 5
  • Views 1151
Re: OpenCart 1.6.0 Roadmap

Add the User to the order history, so it is possible to see who made the changes. Add a status and a history to each order_product. This way, partially finished orders can be communicated to the customer. Also this makes it possible to cancel single items of an order which is much more transparent t...

Jump to post
  • Thu Jun 30, 2011 6:30 pm
  • Replies 538
  • Views 255622

Search found 196 matches