Search:

Type: Posts; User: qrczak

Page 1 of 3 1 2 3

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    4,172

    Re: Help with hacked website

    Check the index.php file in your installation folder. Look at the very bottom of the file, maybe there are some additional lines of code. I had similar situation two years ago.
  2. Replies
    5
    Views
    6,568

    Re: Looking for new moderators

    I can do it , too.
  3. Replies
    3
    Views
    1,677

    Re: Nested insert tags

    Try this

    {{link_title::home-<?php echo $this->replaceInsertTags('{{env::page_language}}'); ?>}}
  4. Replies
    3
    Views
    1,604

    Re: What is this? Contao?

    Yes, you right but I have screenshot of previous version of this article:
    http://img99.imageshack.us/img99/9779/fork.png
  5. Replies
    3
    Views
    1,604

    What is this? Contao?

    Read this article and focus on the second paragraph:
    http://www.webresourcesdepot.com/open-s ... face-fork/
  6. Replies
    0
    Views
    732

    Official Developer's guide - missing key

    I think in Developer's guide on http://www.contao.org/reference.html page there is a missing key in "Fields" section.
    Missing key is "value". So it should be:

    Key: value
    Value:...
  7. Re: White bar with "index,follow" appearing in Contao 2.10.0

    Change from

    <?php echo $this->robots; ?>
    to

    <meta name="robots" content="<?php echo $this->robots; ?>" />
  8. Replies
    2
    Views
    1,287

    Re: Problem after update to 2.10.0

    I think I figured out what going on. Actually everything is fine BUT before update to 2.10.0 in rootpage I had, in "Domain name" field, "domain.com" (without www.) but now I have to write...
  9. Replies
    2
    Views
    1,287

    Problem after update to 2.10.0

    I receive message "No pages found" after update installation to 2.10.0
    Template's extensions are changed.
    Any suggestions?

    I have few domain (5) in this installation and only one works. On all...
  10. Replies
    1
    Views
    3,381

    DB error instead 404 page

    Hi all

    I have installation with Catalog 2.0.0 beta2 and when I have right url like:

    domain.com/kolektory-sloneczne/product_category/active-energy
    it's working fine.

    where:...
  11. Replies
    6
    Views
    2,630

    Re: DCA field "radioTable"

    I think I know how it works. If you set in DCA

    'options' => array('1cl', '2cll', '2clr', '3cl'),
    and if you have in system/themes/default/images/ gifs with names like options names (1cl.gif,...
  12. Replies
    6
    Views
    2,630

    Re: DCA field "radioTable"

    No. Becouse in source code of Layout page is:

    [...]
    <td>
    <input type="radio" onclick="Backend.autoSubmit('tl_layout');" onfocus="Backend.getScrollOffset();" value="2clr" class="tl_radio"...
  13. Replies
    6
    Views
    2,630

    Re: DCA field "radioTable"

    Thanks ramjet.

    At the http://www.contao.org/reference.html page there is description of radioTable:
    "radioTable - Table with images and radio buttons"
    With images? How?

    I found piece of code...
  14. Replies
    6
    Views
    2,630

    DCA field "radioTable"

    Hi,

    Do you know where I can see any example of DCA "radioTable" field? Maybe in core files or in some custom module?
  15. Replies
    7
    Views
    5,379

    Re: Concrete5 vs Contao

    Me too :-) I thought that is "neverending story" :-)
  16. Replies
    2
    Views
    1,112

    Contao and MySQL server has gone away

    My client have sharing hosting where DB is very slow. From hosting support I received that I have to add to my script (means Contao) this:

    !!Sorry I have to use spaces in this code becouse without...
  17. Replies
    2
    Views
    1,453

    Re: Convert field to php array

    I solved this. Maybe it's not beautiful but it's works:

    <?php $xml = simplexml_load_string($entry['data']['myField']['raw']); ?>
    <ul>
    <?php foreach ($xml->row as $col): ?>
    <?php foreach...
  18. Replies
    2
    Views
    1,453

    Convert field to php array

    In my installation I use "catalogmultitextwizardfield" module.
    And in my Catalog module it works fine:
    http://img715.imageshack.us/img715/9769/scrspec.jpg

    Uploaded with ImageShack.us
    but in my...
  19. Re: form display terrible in Chrome and Safari

    Add this script to your head section: http://cssuseragent.org/
    and add this css rules at the very bottom of your stylesheet:

    .ua-webkit #condition_student {
    clear:both;
    }

    .ua-webkit...
  20. Replies
    10
    Views
    2,810

    Re: Contao performance

    I don't exactly remember what time period I set in cron but I have these commands


    wget -t 1 -O - http://www.domain.com/system/modules/cron/CronController.php >& /dev/null
    wget -t 1 -O -...
  21. Replies
    1
    Views
    992

    Re: Displaying records for logged in member

    or try in template put fields (or any other data) for only logged members into this code:

    <?php if (FE_USER_LOGGED_IN): ?>
    For members eye only
    <?php endif; ?>
  22. Replies
    5
    Views
    2,276

    Re: jquery and mootools swiff conflict

    Upsss sorry I missed it... but try change this line:


    $("#arbo").treeview({
    to this one:

    jQuery("#arbo").treeview({
    in noConflict() mode you use "jQuery" word instead $ (dollar sign).
  23. Replies
    5
    Views
    2,276

    Re: jquery and mootools swiff conflict

    Try to use jQuery in noConflict() mode.
    http://api.jquery.com/jQuery.noConflict/
  24. Replies
    5
    Views
    1,436

    Re: Article elements - Show from/Show until

    http://www.contao.org/extension-list/vi ... 09.en.html
  25. Replies
    2
    Views
    969

    Re: Googlebot and restricted areas

    Maybe something like this (in HEAD section of your template):


    if (agreeCheckBox == 1) {
    echo = "<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">";
    }else{
    echo = "<META NAME="ROBOTS"...
  26. Re: a:active not registering on navigation menu

    Can you provide a link to the site?
  27. Replies
    2
    Views
    1,206

    Re: How index page caching works

    Interesting... maybe you should create ticket at http://dev.contao.org
  28. Replies
    10
    Views
    2,810

    Re: Contao performance

    Remove it from your template:

    <?php echo $this->base; ?>cron.php
    Most people and me use system cron instead this way. It's not only my opinion, see this: http://dev.contao.org/issues/486. And...
  29. Replies
    10
    Views
    2,810

    Re: Contao performance

    No, tsarma means "Set cache timeout" option in every page settings (including root page). And there can "Set a cache timeout value for the page and its subpages".
  30. Replies
    8
    Views
    2,166

    Re: Backend login fails!

    In the past I had problem with backend log in on Linux. The only solution was disable in setting "Disable referer check". But it was long time ago.
  31. Replies
    13
    Views
    4,716

    Re: How to override page title?

    It's works, trust me. I've use this code in my projects. For example in Catalog module.
  32. Thread: No thumbnail

    by qrczak
    Replies
    3
    Views
    981

    Re: No thumbnail

    Try this one

    {{image::tl_files/atenpace/Imagenes/blog/dsc02515.jpg?width=200&mode=crop&rel=lightbox}}
  33. Re: Creating Sites with "Multilanguage Pages" - how it happe

    Just one thing. The label for and icon "All" at the top on right. It's hard to see it. And "All"? All what? :-)
    Maybe "Add for all pages" or something in this case the label will longer and more...
  34. Re: Creating Sites with "Multilanguage Pages" - how it happe

    Just installed. It's look really good and it's easy to use.
  35. Re: Setting the "From" email address with form generator

    Unfortunately I have to confirm this.


    In Thunderbird it also works
  36. Thread: Factory

    by qrczak
    Replies
    18
    Views
    5,146

    Re: Factory

    This documentation will be in English
  37. Thread: CSs vs me

    by qrczak
    Replies
    2
    Views
    965

    Re: CSs vs me

    Can you be more specific? After read your post I still don't know what's wrong with your css.
  38. Replies
    6
    Views
    2,085

    Re: Own CE gallery template - error in BE

    That's OK. Thanks for fix.
  39. Replies
    6
    Views
    2,085

    Re: Own CE gallery template - error in BE

    Make new gallery_*.tpl template. It can be copy of gallery_default.tpl but with differrent name, let's say gallery_test.tpl.
    I assume that you have made theme, so you have choosen folder in...
  40. Replies
    6
    Views
    2,085

    Re: Own CE gallery template - error in BE

    Of course. And all other templates inside this folder works fine
  41. Replies
    6
    Views
    2,085

    Own CE gallery template - error in BE

    I wanted set a CE gallery but with my own template. I prepare gallery_oliwa.tpl template and upload to /template/oliwia folder where are the rest templates related to my theme.
    When I created CE...
  42. Replies
    2
    Views
    1,232

    Two js files to BE module

    In config/config.php:

    [...]
    'javascript' => 'system/modules/my_module/html/jquery.js',
    'javascript' => 'system/modules/my_module/html/custom.js'
    [...]
    Of course system will...
  43. Replies
    4
    Views
    1,575

    Re: Plea to all testers of 2.9.RC and SVN

    Your right. Now I check this again and it's like I said before make sure you set default configuration of Isotope:

    Store configuration -> Store configurations -> New configuration
    and after that...
  44. Replies
    4
    Views
    1,575

    Re: Plea to all testers of 2.9.RC and SVN

    Every links or just those related to Isotope? If only first two links related to Isotope first of all make sure you set default configuration. Without default configuration links "Product management"...
  45. Re: Another day, another problem! FF Column height and YT Vi

    Yes, you're right. It's only happen in Firefox. I don't know why. In IE, Opera, Chrome and Safari works fine.
  46. Re: Another day, another problem! FF Column height and YT Vi

    In your source code:

    <div id="main" style="height: 127px;">
    and that's the problem. Remove this inline css style (height).
  47. Re: [videobox] VideoBox - The successor of yw_youtube

    That's OK Toflar. Actually installation where the error appear is my test installation and there I wanted to try your extension. Your extension don't work on my test installation but works on my...
  48. Re: [videobox] VideoBox - The successor of yw_youtube

    I think, there something wrong with this installation or extension conflict. I try your extension in other installation on this same server and works fine.
  49. Re: [videobox] VideoBox - The successor of yw_youtube

    Actually there is no more details, unfortunately. There's only blank screen and this error "Fatal error: Cannot access...", no other errors messages.
    In TL logs there is e.g. "A new entry in table...
  50. Re: [videobox] VideoBox - The successor of yw_youtube

    Hi Toflar

    I just create new "New VideoBox archive" with no problem. But when I try add new "New video" to this archiwe I receive this error:

    Fatal error: Cannot access empty property in...
  51. Replies
    4
    Views
    1,499

    Re: Newsleter and inserttags

    You right, my description wasn't very detailed.
    So, during editing newsletter (in tinyMCE) I write {{insert_module::ID}}. On list of the newsletter it's still {{insert_module::ID}}. When I send...
  52. Replies
    4
    Views
    1,499

    Newsleter and inserttags

    Hello

    Is it possible to use {{insert_module::ID}} tag inside newsletter? For example {{insert_content::ID}} works fine but {{insert_module::ID}} give me only this:


    ### NEWS LIST ###
    name of...
  53. Replies
    1
    Views
    965

    Re: Cannot connect to database

    What driver you use? MySQL or MySQLi ? For database based on MySQL 5 should be MySQLi.
  54. Replies
    1
    Views
    1,036

    Safe Mode Hack again

    In http://dev.typolight.org/issues/1618 Leo say:
    If you need the Safe Mode Hack, the install tool will ask you to enter the FTP details.

    Now I want work on my client server, during installation...
  55. Thread: FTP details

    by qrczak
    Replies
    3
    Views
    1,193

    Re: FTP details

    http://dev.typolight.org/issues/1618
    If you need the Safe Mode Hack, the install tool will ask you to enter the FTP details.
  56. Thread: FTP details

    by qrczak
    Replies
    3
    Views
    1,193

    FTP details

    Do not laugh at me and maybe I am blind but I can't find ftp details in BE in 2.8.0. Where is it? In my localconfig.php file ftp settings still exist. I saw that ftp labels in lang files was move to...
  57. Replies
    6
    Views
    1,567

    Re: Calendar in Backend

    You wrote your own Driver to view the Calendar in the BE?
  58. Replies
    9
    Views
    2,167

    Re: Unable to create new article

    Yes, create at least 1 page it's good idea in your case. ;)
  59. Thread: Disable field

    by qrczak
    Replies
    12
    Views
    3,661

    Re: Disable field

    Yeah, that was it, thanks! :D
  60. Thread: Disable field

    by qrczak
    Replies
    12
    Views
    3,661

    Re: Disable field

    Actually it's no diffrent only that if you have readonly field and hover it you get edit cursor, only this I think.
Results 1 to 60 of 152
Page 1 of 3 1 2 3