Search:

Type: Posts; User: andreas.schempp

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. increasing the memory limit in your .htaccess...

    increasing the memory limit in your .htaccess file will not affect the command line PHP version. You need to update the php.ini or create a specific php.ini in the contao-manager folder.
  2. Hi Tõnu, If you use the default .htaccess file...

    Hi Tõnu,

    If you use the default .htaccess file of Contao 3.5, then files and folders that actually exist on your webserver are not rewritten to Contao.

    I think these are the relevant lines:...
  3. Replies
    8
    Views
    3,292

    What does your DCA configuration look like?

    What does your DCA configuration look like?
  4. Replies
    4
    Views
    2,245

    The cart is bound to the user account. So if you...

    The cart is bound to the user account. So if you log out, the cart will be empty (because you get a new guest cart). If you log back in, your cart will be "restored".
  5. I did not mean the DCA, but in the backend...

    I did not mean the DCA, but in the backend configuration.
  6. Re: Class Loading failure in 3.x? Worked in 2.x

    Hey there everyone,

    These loading issues happen, because the ClassLoader does not realize the class is already there and includes the file again. This usually happened to me when the class was...
  7. Replies
    2
    Views
    1,208

    Re: Related products in product list

    That is not possible, because you would not know which product in a list you want to show it for. Do you want to shop related products to specific category?
  8. Replies
    7
    Views
    2,540

    Re: multilangual cart

    Wow, interesting noone ever noticed/mentioned that in a ticket. It will be fixed in the next 1.3 release.
  9. Replies
    5
    Views
    1,774

    Re: XHTML validation

    The <span> issue should be fixed in 1.3. Regarding the form name attribute, this is required for Firefox to behave correctly... I don't worry about it very much as Contao is switching to HTML5 (and I...
  10. Re: Local translationtool for extentions (ex. isotope).

    We do have an online translation tool. Local language files are not very useful, because they cannot be merged if someone else will provide some translations.
  11. Replies
    9
    Views
    2,502

    Re: Product's listing from a folder

    Basically, everything is possible if you find a (good) developer ;-)
    However, what you description sounds like a 100% custom solution, so there is no default fix for that.
  12. Replies
    2
    Views
    1,457

    Re: Prices management

    I think this is possible using variants. Did you set that up?
  13. Replies
    2
    Views
    1,239

    Re: Variant Pricing

    That is currently not possible. The main reason is, the variant could be based on multiple attributes. Therefore one option cannot have a price.
  14. Re: Stumped by SQL Queries on the iso_product_categories tab

    You can try FIND_IN_SET(), but that query is a reeeal hack:


    SELECT * FROM tl_iso_products p
    WHERE
    FIND_IN_SET(25, (SELECT GROUP_CONCAT(page_id SEPARATOR ',') FROM tl_iso_product_categories c...
  15. Re: Stumped by SQL Queries on the iso_product_categories tab

    1: Because that would not be "correct" SQL and more difficult to search.
    2: My query should do what you need, does it not? I'm sure there is an SQL query to solve your problem.
  16. Re: Stumped by SQL Queries on the iso_product_categories tab

    How can the user view 2 different categories at the same time??
  17. Re: Stumped by SQL Queries on the iso_product_categories tab

    Hey thyon,

    It is quite complex to understand what you try to do. But shouldn't your query look like that?


    SELECT p.*, COUNT(c.pid) AS encounters FROM tl_iso_product_categories c,...
  18. Re: 21000+ tl_iso_cart records???? Not using Cart at all!

    I don't know that... you would need to compare the two versions using a file comparison tool.
  19. Re: 21000+ tl_iso_cart records???? Not using Cart at all!

    Yes, you can safely truncate that table. Are you using the latest version? Older releases did not delete cart records not in use...
  20. Replies
    2
    Views
    1,461

    Re: Front end login

    Yes, Isotope uses the standard Contao modules. You might need to define the redirect to checkout in the login module.
  21. Replies
    8
    Views
    2,806

    Re: I need some help adding a variant

    You might need to go through the setup process again, eg. configure the product type. I can tell you it is a misconfiguration, not a bug in Isotope ;)
  22. Replies
    8
    Views
    2,806

    Re: I need some help adding a variant

    You should check the "Add to product variant settings" checkbox, not the "User defined" checkbox in your attribute settings.
  23. Replies
    8
    Views
    2,806

    Re: I need some help adding a variant

    Please also post a screenshot of the attribute you created and the product type settings. I suppose you did not enable the field in your product type.
  24. Replies
    1
    Views
    1,078

    Re: Limited number of items

    Currently not, sorry
  25. Replies
    2
    Views
    3,080

    Re: Changelanguage across sub-domains

    You don't need to modify the extension! Switching between multiple (sub)domains is supported. What you need to consider is, you must have one fallback language for EVERY subdomain, because to Contao,...
  26. Replies
    9
    Views
    5,528

    Re: Mod_Selection language trouble!!

    Cant see any error in that code. I think it must be your CSS. However, you dont need to change the template, just use float:left on the elements to get them in line.
  27. Replies
    9
    Views
    5,528

    Re: Mod_Selection language trouble!!

    maybe you can show us your template?
  28. Replies
    9
    Views
    5,528

    Re: Mod_Selection language trouble!!

    So you modified the template? You probably did something wrong there...
  29. Replies
    9
    Views
    5,528

    Re: Mod_Selection language trouble!!

    There is a checkbox in the frontend module configuration (Theme => Modules)
  30. Replies
    9
    Views
    5,528

    Re: Mod_Selection language trouble!!

    Did you enable custom language tags in the module settings?
  31. Replies
    2
    Views
    1,059

    Re: Broken news links in Twitter

    Does it work when you enable page alias?
  32. Replies
    21
    Views
    11,295

    Re: Index page not in primary language

    No thats not a bug, root page with domain always has priority over any page outside the root tree.
  33. Replies
    21
    Views
    11,295

    Re: Index page not in primary language

    I dont think that will work then. You must assign unuseful language codes (eg. "xy") and then the user will always get the fallback page. However, you then need to manually assign the icons in...
  34. Replies
    21
    Views
    11,295

    Re: Index page not in primary language

    If your browser is set to "en", it will show the english page. If none of the languages matches your browser, it will take the fallback. There can/should only be one fallback!
  35. Replies
    21
    Views
    11,295

    Re: Index page not in primary language

    I think you should remove that index site. Why would you need that? Contao does detect what page to serve when there is a root page for the current domain.
  36. Replies
    21
    Views
    11,295

    Re: Index page not in primary language

    Please show us a full picture (or first 3 levels) of your page tree.
  37. Replies
    21
    Views
    11,295

    Re: Index page not in primary language

    So you created a page called "index.php" :lol:
    What would you need that for? Contao is automatically detecting the incoming domain and only picking those pages.
  38. Replies
    21
    Views
    11,295

    Re: Index page not in primary language [SOLVED]

    What do you mean with that?
  39. Replies
    5
    Views
    1,592

    Re: fastedit

    It is probably related to a bug in Contao (displaying the "Exception" message at the bottom). A ticket has already been submitted and should be included in 2.10
  40. Replies
    5
    Views
    1,592

    Re: fastedit

    That's only happening when you are logged in as a backend user, or for all visitors if the extension is installed?
  41. Replies
    12
    Views
    3,877

    Re: Comments for products?

    As far as I know, thats not yet possible.
  42. Re: Flags for Swedish and San Salvador mixed up

    Thanks for letting me know, the latest build should fix this.
  43. Re: isotope Upgrade - No Images and Ajax Filter

    Thanks for reporting this. It will be fixed in the next release.

    system/modules/isotope/IsotopeProduct.php Line 470 should be

    foreach( (array)$this->Isotope->Config->imageSizes as $size )
    and...
  44. Re: Product List by last 7 days (start date) and multiple pr

    There's nothing more to be said from me...
  45. Re: isotope Upgrade - No Images and Ajax Filter

    The search and filter capabilities have been implemented by Fred Bliss, I have never used them.
  46. Re: isotope Upgrade - No Images and Ajax Filter

    Hi Tyon,

    You can adjust the iso_gallery_default template to get what you want, or create your own gallery class.

    Thanks for the notice regarding strtolower(). Not sure if it is still required...
  47. Re: Product List by last 7 days (start date) and multiple pr

    You must enable the new attribute in this product type, otherwise the product type cannot know which fields define it's variant selection.
  48. Replies
    21
    Views
    11,295

    Re: Index page not in primary language

    There's one other sollution: Do not name the english page tree "en", but any other fancy name (eg. "xy"). This way it will never be found. However, you then need to manually assign flags to it when...
  49. Replies
    21
    Views
    11,295

    Re: Index page not in primary language

    Which page you see does not depend on changelanguage, but on your local computer configuration and Contao setup. I suppose your browser tells Contao to serve pages in english.
  50. Replies
    2
    Views
    3,005

    Re: Change Language Template

    It is possible with Contao 2.9 and multiple Themes...
  51. Replies
    3
    Views
    1,726

    Re: Download possibilities Isotope

    Yes, Isotope eCommerce does support downloads for products. Please read the manual carefully how to set this up!
    (The manual link is available trough the repository).
  52. Replies
    2
    Views
    1,107

    Re: Autolink

    Hi,

    I don't really understand what you mean? You can not only link, but also add a tool tip to autolink items.
  53. Replies
    2
    Views
    3,366

    Re: Problem with change language module

    In frontend or backend?
  54. Replies
    4
    Views
    3,723

    Re: Current language url

    As far as I remember, there is an "active" parts, isn't it?
  55. Replies
    4
    Views
    3,723

    Re: Current language url

    Normally the current language does not have a link. Have you changed that in the template?
  56. Replies
    14
    Views
    3,921

    Re: GoogleSiteMap

    I did not add a new release of the extension. It possibly was a new build when I set it compatible to a new TYPOlight version.
  57. Re: Custom Navigation module not translated

    You seem to have set a reference page in the navigation menu. Try to remove that.
  58. Replies
    14
    Views
    3,921

    Re: GoogleSiteMap

    The new release of googlesitemap will defenetly cover this feature and it should come out in the next weeks. Just take a look when it is updated (I'll not nofiy here anymore) 8-)
  59. Replies
    14
    Views
    3,921

    Re: GoogleSiteMap

    Currently you cannot without modifying the code. I'll see if I can include that in the next release.
  60. Replies
    14
    Views
    3,921

    Re: GoogleSiteMap

    What is formatting the xml-file is an xsl style sheet (on top of the xml). TYPOlight includes a link to the xml file in the head of your site.
Results 1 to 60 of 63
Page 1 of 2 1 2