Search found 7925 matches

by aimeos
07 Jul 2015, 13:21
Forum: Laravel package
Topic: Upload images through own Controller
Replies: 2
Views: 4540

Re: Upload images through own Controller

Hello, and sorry to bother you once again! :-) Don't excuse yourself, it's nice to see that you are still working on your project and already achieved so much! :-) I'm trying to upload images through my own controller and my custom admin, so far I'm not having luck with getting the images uploaded....
by aimeos
23 Jun 2015, 12:40
Forum: Laravel package
Topic: Admin rebuild : getting/creating/updating data
Replies: 17
Views: 10825

Re: Admin rebuild : getting/creating/updating data

There's a bug in the rebate percentage calculation. I added a price of 100 with a rebate of 10 and the rebate percentage displaying is 9% This is a common mistake in thinking. The price is the current value, the rebate is the amount the original price was reduced by, so - current: 100 - rebate: 10 ...
by aimeos
23 Jun 2015, 12:35
Forum: Laravel package
Topic: Admin rebuild : getting/creating/updating data
Replies: 17
Views: 10825

Re: Admin rebuild : getting/creating/updating data

Everything seems to be added to the database, but I can't see the product on the homepage or under the categories.. Is there a cache I need to clear? I already tried "\MShop_Factory::clear();" but that doesn't seem to work. I do see this product when I surf to it directly (with the ID) Al...
by aimeos
23 Jun 2015, 07:13
Forum: Help
Topic: Retrieve the category of a product
Replies: 8
Views: 9587

Re: Retrieve the category of a product

[quote="Yvler"The problem is that we're using this on a productlist page, so we'd have to query for all the item id's :)[/quote] The most efficient way is to add all product IDs of that list page to your query (compare() also accepts an array as third parameter), execute that query once an...
by aimeos
22 Jun 2015, 20:59
Forum: Laravel package
Topic: Admin rebuild : getting/creating/updating data
Replies: 17
Views: 10825

Re: Admin rebuild : getting/creating/updating data

We've written some documentation that explains this in more detail and in different environments:
http://aimeos.org/docs/Laravel/Extend_A ... os_objects
by aimeos
22 Jun 2015, 11:52
Forum: Help
Topic: Retrieve the category of a product
Replies: 8
Views: 9587

Re: Retrieve the category of a product

Is it possible to retrieve the category of a product? In the breadcrumb of the detail page of the shop, the category is echo'd. But I don't seem to find how this works :) Product can be in several categories, so there's no 1:1 relationship. You can retrieve the categories of a product by using the ...
by aimeos
22 Jun 2015, 09:28
Forum: Help
Topic: Get Parent Id from catalog
Replies: 1
Views: 5431

Re: Get Parent Id from catalog

I am trying to get the Parent item from a Catalog item through the parentid, however there doesn't seem to be a getParentId function available. I also tried with other functions (like searchItems) with no success whatsoever. Is there any way I am missing to get this parentid/item? The catalog items...
by aimeos
19 Jun 2015, 16:48
Forum: TYPO3 extension
Topic: E-Mail text for delivery etc
Replies: 1
Views: 2685

Re: E-Mail text for delivery etc

One more time it's me. How can I change the text of the E-Mails? Where nad how can I change the templates? A link to the corresponding docu qould be enough :-) (hope so) Everything is translatable and the e-mails are no exception. You can overwrite the translations in TYPO3 like described here: htt...
by aimeos
19 Jun 2015, 13:33
Forum: TYPO3 extension
Topic: Problem with sending scheduled e-mails
Replies: 22
Views: 12878

Re: Problem with sending scheduled e-mails

WahnM wrote:Here is the task. Anything wrong?]
No, your task seem to be totally fine.
The main failure you can do is to execute the e-mail related tasks in the general Aimeos scheduler too.
by aimeos
19 Jun 2015, 13:31
Forum: TYPO3 extension
Topic: Problem with sending scheduled e-mails
Replies: 22
Views: 12878

Re: Problem with sending scheduled e-mails

I have found "Item with ID "" in "product.id" not found" in the madmin_log, but the producty have IDs?! Those log entries are from the front-end because they have a request ID, so your scheduler tasks seem to be correctly configured. Are e-mails sent at all, e.g. if yo...