| 00:14 |
mindflyer |
w |
| 06:16 |
d|g |
hi all |
| 07:51 |
just2b |
OT but look at this map: http://www.adac-skiguide.de/Oesterreich!-1di0kct9dzivt.html |
| 07:52 |
just2b |
re |
| 10:16 |
HardPhuck |
can i append something to the subpart marker |
| 10:17 |
HardPhuck |
left_menu < some plugin |
| 10:17 |
HardPhuck |
this will put some plugin INTO the html with id |
| 10:17 |
HardPhuck |
i need to put something AFTER it |
| 10:17 |
HardPhuck |
is that possible? |
| 10:21 |
nkuttler |
HardPhuck: hrm, something like left_menu.afterStrWrap ... look into tsref for what to actually use. lots of hooks in there |
| 10:21 |
nkuttler |
if that works... |
| 10:22 |
nkuttler |
or left_menu.10000 <, though that's even more hackish |
| 10:22 |
MyGoddess |
hum... |
| 10:22 |
HardPhuck |
i'll see |
| 10:24 |
nkuttler |
postCObject even |
| 10:24 |
MyGoddess |
HardPhuck, you can add an stdWrap level to left_menu, reference your some plugin as cObject property and add a postCObject property containing your additional content. |
| 10:25 |
HardPhuck |
okay, will try thanx |
| 10:26 |
MyGoddess |
(or just no need of additional level if left_menu is considered as stdWrap. |
| 10:26 |
MyGoddess |
) |
| 10:28 |
jangla |
is there any way of adding a field to a table like "pages" and yet only having that field visible and editable on certain templates? I need to add a field to the pages table but I don't want it to be visible on every single page in my typo3 setup, only on a single template. |
| 10:29 |
nkuttler |
jangla: make an extension template? and pages isn't really a table |
| 10:30 |
jangla |
what do you mean it's not really a table - it's a table as far as mysql is concerned |
| 10:30 |
nkuttler |
ah, i see |
| 10:31 |
NublaII |
I have a weird problem... I finally got my realurl config to work |
| 10:31 |
NublaII |
but now I can't see it on the realurl module... |
| 10:31 |
nkuttler |
isn't it tt_pages? don't you need an extension to do that? |
| 10:31 |
nkuttler |
ah, no pages |
| 10:31 |
jangla |
no - it's tt_content |
| 10:31 |
nkuttler |
... |
| 10:31 |
nkuttler |
so you want content that's only visible on certain pages of your site? |
| 10:32 |
jangla |
I've got the extension built already but it currently uses flexform which is good for a lot of things but not this particular thing I need to do. I basically need a check box to be visible on the page header of pages that have a certain template selected. |
| 10:33 |
nkuttler |
jangla: i'm not sure what you mean, but why don't you add the checkbox to that template then? |
| 10:37 |
jangla |
sorry, when I say template, I mean a templavoila template.i.e. a template that changes the look of the FE. the check box needs to be on the pageheader in the BE |
| 10:37 |
nkuttler |
ah. don't know enough about that. |
| 10:38 |
jangla |
lol - thanks anyway! anyone else? |
| 10:38 |
nkuttler |
i suppose you can't do that through a flexform |
| 10:38 |
gazui |
hello to all.. i wonder if anyone had similar problem: RealURL preVars, postVarSets settings works for all GET vars (all ext), except for indexed search in GET mode! i didn't find antything useful on google or documentation.. can you help me? tnx!! |
| 10:40 |
jangla |
no that's the thing - I can do it by flexform (in fact it currently works that way) but I don't want to. It's much quicker to query an int field on a table than query a massive flexform field and have to step through every record looking for a zero or a 1. |
| 10:40 |
jangla |
it's the performance gain I'm after. |
| 10:45 |
nkuttler |
jangla: you mean you quickly want to edit one property of multiple pages? |
| 10:45 |
MyGoddess |
jangla, so you want a specific field to be shown when certain templavoila datastructure is used ? |
| 10:53 |
jangla |
MyGoddess - precisely |
| 10:54 |
MyGoddess |
So, you must specify a displayCond for your field checking the value of the templavoila ds selector field in the page. However, the ds MUST be selected by the current page, it cannot check for an inherited value. |
| 10:55 |
jangla |
ooooook. you kind of lost me a little there. I've not used displayCond's before |
| 10:55 |
MyGoddess |
Are you familiar with TCA ? |
| 10:57 |
jangla |
not really. I'm not completely new to typo3 but most of the stuff I've been doing has been building on top of existing extensions or building very simple ones. |
| 10:59 |
MyGoddess |
okay, your new field is in an extension you have created with kickstarter or not ? |
| 11:02 |
jangla |
yep. at the moment it's actually defined in the DS of a templavoila template (so it appears in the flexform of the relevant template) but let's just say for the moment that I've used the kickstarter to add a field to the pages table (that I at least know how to do!) |
| 11:04 |
NublaII |
seems like realurl_management extension isn't compatible with the latest realurl |
| 11:04 |
NublaII |
what's the 'realurl' way of editing an entry? |
| 11:06 |
MyGoddess |
so, in the field TCA in ext_tables.php from your extens, you can add at the same level as "config", "displayCond". Here the documentation link http://typo3.org/documentation/document-library/core-documentation/doc_core_api/4.1.0/view/4/2, just search displayCond. I advice to use an extension configuration value for the matching, using the ext_conf_template.txt file and $TYPO3_CONF_VARS['EXT']['extConf'][$_EXTKEY]. |
| 11:15 |
nkuttler |
i need a download list with preview thumbnails (pdfs), any suggestion? |
| 11:19 |
MyGoddess |
nkuttler, if my memory is good, the "media" content element does this thing. |
| 11:24 |
jangla |
MyGoddess - that's fantastic! Think I understand almost all of that but got lost at "I advice to use an extension configuration value for the matching, using the ext_conf_template.txt file and $TYPO3_CONF_VARS['EXT']['extConf'][$_EXTKEY]." :) |
| 11:24 |
nkuttler |
MyGoddess: hm, does that come with DAM? |
| 11:26 |
MyGoddess |
nkuttler, no. |
| 11:26 |
nkuttler |
MyGoddess: ok, looking into it |
| 11:27 |
MyGoddess |
jangla, oh well, you know about the configuration form when in information view in the extension manager ? The form is configured using the ext_conf_template.txt file to make the form. |
| 11:28 |
jangla |
MyGoddess - you mean when I go to the extension manager and click the title of an extension? When you get all the general information and installation status and stuff? |
| 11:28 |
MyGoddess |
yes. |
| 11:30 |
MyGoddess |
nkuttler, maybe I am wrong, because I do not create standart content usually. |
| 11:31 |
nkuttler |
yeah, me neither :/ |
| 11:32 |
jangla |
MyGoddess - ok, so how can I use that file to do what you were saying? (sorry if this is patronising for you btw but this is well above my typo3 skill level at the moment) |
| 11:32 |
MyGoddess |
Do you have the TYPO3 book ? |
| 11:34 |
Denyerec |
Guys for some reason I can't see the admin panel in the frontend.. |
| 11:34 |
Denyerec |
I've set page.config.admPanel=1 |
| 11:34 |
Denyerec |
but it's not showing up, any ideas? |
| 11:34 |
jangla |
I do actually although I've found it to be not a huge amount of use |
| 11:37 |
MyGoddess |
jangla, so go to page 252, chapter 5.4.5 Constant editor. Here you have the format for the file. |
| 11:37 |
MyGoddess |
The only allowed category is Basic. |
| 11:38 |
jangla |
ok - I'll have a look and see what I can see. thanks for your help so far btw. I may be away some time but no doubt I'll be back with more questions :) |
| 11:58 |
Denyerec |
how do I correctly update the version number of my extension? |
| 11:58 |
Denyerec |
In the emconf.php it says that version must NOT be changed here |
| 11:58 |
Denyerec |
? |
| 12:16 |
MyGoddess |
Denyerec, the version number is managed by the TER. |
| 12:16 |
Denyerec |
Ah right. |
| 12:16 |
Denyerec |
So a user extension that isn't in the TER I can gleefully modify manually :D |
| 12:17 |
MyGoddess |
Hum... yeah. |
| 12:18 |
nkuttler |
is the dam category management just terribly broken or am i just too stupid? it's not like i haven't tried at least half a dozen times to work with dam... |
| 12:19 |
nkuttler |
on at least three different typo3 installs... |
| 12:19 |
Denyerec |
I have worked with it |
| 12:20 |
Denyerec |
but it seems a little glitchy to me |
| 12:20 |
nkuttler |
yeah. category creation is totally broken... |
| 12:20 |
nkuttler |
i guess i'll try to do it in the db directly .oO |
| 12:20 |
Denyerec |
I'm sure I managed it... |
| 12:20 |
Denyerec |
but there are other things |
| 12:20 |
Denyerec |
like uploading and tagging images sometimes work, sometimes doesn't depending on how you do it. |
| 12:20 |
nkuttler |
like? |
| 12:20 |
nkuttler |
sigh |
| 12:20 |
Denyerec |
I wouldn't consider it production ready. |
| 12:20 |
nkuttler |
ok |
| 12:20 |
Denyerec |
There are several ways for people to upload files you see |
| 12:20 |
nkuttler |
yeah, i thought so |
| 12:21 |
Denyerec |
and some of them will leave them hanging outside of the DAM datasystem |
| 12:21 |
nkuttler |
oh, i'll just process the data locally, product some html and paste that into a content element :/ |
| 12:29 |
nkuttler |
i'd rather code for twice the time and get something reusable |
| 12:30 |
jangla |
ok MyGoddess, I'm a little more clear on a number of things now. in understand that by defining an option in the ext_tables.php file I can control the display options of the field in the BE. I understand that by using the constant editor for the extension itself I can allow a BE user to configure the way in which the extension works by defining the values of certain constants. I'm just not... |
| 12:30 |
jangla |
...sure how these two combine to allow me to specify that a check box should only appear on the page header when a certain TV template is used. |
| 12:33 |
jangla |
sounds like a very long way around - isn't there a way of adding something to the DS for the TV template instead? |
| 12:35 |
beli |
moin |
| 12:43 |
NublaII |
realurl is not storing anything in the database... why can't that be? |
| 12:43 |
nkuttler |
hm, why should it? |
| 12:43 |
NublaII |
this is my config http://phpfi.com/359935 |
| 12:44 |
NublaII |
for the hash... doesn't it store it in the db? |
| 12:44 |
NublaII |
the hash cache I mean |
| 12:44 |
swemark |
Hello |
| 12:45 |
swemark |
Can i add my own "TSFE globals in localconf.php? |
| 13:14 |
swemark |
If id want to add headerdata before the css-files where included |
| 13:14 |
swemark |
what would i do? |
| 13:19 |
EnumaElis |
anyone can help me with banner on typo3?? |
| 13:28 |
jangla |
ok, major loss of internet connection there! you still around MyGoddess? |
| 13:34 |
EnumaElis |
anyone can help me with banner image in templavoila?? |
| 13:38 |
MyGoddess |
jangla, yeah, still there. |
| 13:38 |
nd__ |
.oO(jangla is praying in an irc channel... nice) |
| 13:40 |
jangla |
Don't know if you were able to help with my last posts as I got disconnected - last thing I posted was: |
| 13:40 |
jangla |
> ok MyGoddess, I'm a little more clear on a number of things now. in understand that by defining an option in the ext_tables.php file I can control the display options of the field in the BE. I understand that by using the constant editor for the extension itself I can allow a BE user to configure the way in which the extension works by defining the values of certain constants. I'm just not... |
| 13:41 |
jangla |
...sure how these two combine to allow me to specify that a check box should only appear on the page header when a certain TV template is used. |
| 13:41 |
jangla |
Sounds like a very long way around - isn't there a way of adding something to the DS for the TV template instead? |
| 13:41 |
MyGoddess |
jangla, I was elsewhere at that moment. |
| 13:42 |
MyGoddess |
hum well... |
| 13:43 |
MyGoddess |
jangla, have you some visual documents describing what you want ? |
| 13:44 |
jangla |
nope but I could make you some over the weekend. can I email it to you? |
| 13:48 |
MyGoddess |
I prefer that you came back we these here and highlight me. And giving the link there, in order to be able to have other people answering if relevant. I have configured my client to join this channel automatically. |
| 13:52 |
MyGoddess |
*came back with these |
| 13:54 |
foool |
My typo3temp folder is getting very large, is it safe to delete the files? |
| 13:54 |
MyGoddess |
yes |
| 13:54 |
MyGoddess |
but keep folders ;) |
| 14:02 |
foool |
is there a way to autoempty typo3temp every for often? |
| 14:05 |
MyGoddess |
crontab |
| 14:06 |
SfiSh |
extension "gabriel" also controlls such things, isnt it ? |
| 14:06 |
MyGoddess |
However, in regular service, the typo3temp folder won't have a growing number of files and it will remain quite stable. |
| 14:07 |
MyGoddess |
I don't know about. |
| 14:07 |
nd__ |
Anyone of you running the latest stable t3 with php5.3alpha1? Successfully? |
| 14:16 |
nd__ |
That doens't sound too good... |
| 14:24 |
jangla |
sorry about that MyGoddess - as I was saying, I can get you a document giving you an idea of what I'm trying to achieve but i'll need an email add to send it to |
| 14:26 |
MyGoddess |
Don't know if you read my words, so I repeat : .:14·03·35:. «MyGoddess» I prefer that you came back with these here and highlight me. And giving a link to the documents there, in order to be able to have other people answering too, if relevant. I have configured my client to join this channel automatically. |
| 14:30 |
anton |
hi, i´m trying to configure realurl, but i cant find realurl_autoconf.php anywhere ... |
| 14:37 |
HardPhuck |
i have about 50 pages that i need to enter same subpages (3) |
| 14:37 |
HardPhuck |
what's the fastest way to do that |
| 14:39 |
MyGoddess |
See in the functions tab, in web. There should be a "mass create page". |
| 14:39 |
HardPhuck |
i need to mass copy the 3 pages into all 50 |
| 14:40 |
HardPhuck |
because these pages have some content that has to be copied |
| 14:40 |
jangla |
MyGoddess - that's no problem at all. A million thanks for your help in this - really appreciate it x |
| 14:45 |
MyGoddess |
HardPhuck, ow. |
| 15:03 |
MyGoddess |
HardPhuck... no clue... |
| 15:04 |
MyGoddess |
but you can use import / export feature to dupplicate. |
| 15:04 |
MyGoddess |
Export one, import one, export 2, import 2, and so on. |
| 15:06 |
daKmoR |
if I need some temporary files with my extension is there any automatic way of creating a tempfolder for my extension? |
| 15:06 |
daKmoR |
or should I just put it directly in typo3temp |
| 15:06 |
daKmoR |
or inside my extension folder? |
| 15:15 |
nd__ |
Anyone of you running the latest stable t3 with php5.3alpha1? Successfully? |
| 15:22 |
nkuttler |
HardPhuck: inject into the db directly? shouldn't be too hard |
| 15:29 |
Gaussian |
Please i need help on changing banner in templavoila anyone helps??? |
| 15:54 |
anton |
can anyon help with realurl ? |
| 15:57 |
MyGoddess |
daKmoR, well, you can create the folder yourself. And there are some functions for creating temporary file names. |
| 16:09 |
Gaussian |
what should i modify to show 3 flas on the languagemenu with templavoila??? |
| 16:15 |
daKmoR |
MyGoddess thx I already fixed it with.... 'createDirs' => 'typo3temp/...', in ext_emconf.php (works like a charm...) |
| 16:15 |
MyGoddess |
;) |
| 16:21 |
foool |
hi again Td3 export Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 61229112 bytes) |
| 16:22 |
foool |
can I increase it somewhere |
| 16:25 |
nd__ |
As usual, in php.ini |
| 16:49 |
uschi |
hi friends, is there a property that tells me how many items are in a hmenu? |
| 16:51 |
jangla |
here's my question: |
| 16:51 |
jangla |
I have an extension (let's call it ext_pi1). This extension is in use on my.domain1.com. |
| 16:51 |
jangla |
I develop another version of the extension called ext_pi2 which is to be used on my.domain2.com |
| 16:51 |
jangla |
Each extension is only mentioned in it's relevant templates for the domains. |
| 16:51 |
jangla |
So why, if there's an error in the code of ext_pi2 do both my.domain1.com and my.domain2.com fall over? |
| 16:54 |
Denyerec |
Hey uschi |
| 16:54 |
uschi |
found the solution to my question: register:count_menuItems |
| 16:54 |
uschi |
hi Denyerec :-) |
| 16:55 |
Denyerec |
Good find on that register, I can think of some uses for that... :) |
| 16:55 |
uschi |
what i want to achieve is this: if my two level HMENU has more than x entries in total,set collaps to 1 |
| 16:57 |
Denyerec |
Hmmm, I see. |
| 16:57 |
Denyerec |
so you'll need two HMENU items with the same designation, and a conditional on the register to render one, or the other. |
| 16:57 |
Denyerec |
shouldn't be impossible, I would think? |
| 16:58 |
uschi |
unsure what is counted |
| 16:59 |
anton |
does anyone know how i can work with typolinks in FCE´s when RealUrl is enabled ? |
| 17:01 |
uschi |
Denyerec, seems to me that all levels are counted, so I can do it |
| 17:01 |
uschi |
will try later |
| 17:08 |
jangla |
here's my question: |
| 17:08 |
jangla |
I have an extension (let's call it ext_pi1). This extension is in use on my.domain1.com. |
| 17:08 |
jangla |
I develop another version of the extension called ext_pi2 which is to be used on my.domain2.com |
| 17:08 |
jangla |
Each extension is only mentioned in it's relevant templates for the domains. |
| 17:08 |
jangla |
So why, if there's an error in the code of ext_pi2 do both my.domain1.com and my.domain2.com fall over? |
| 17:12 |
MyGoddess |
jangla, maybe the to files are automatically includes. |
| 17:12 |
MyGoddess |
Check in web->template, in typoscript browser, setup view if the files are in includeLibs. |
| 17:12 |
MyGoddess |
If you have create USER plugins and not USER_INT, is should be the case. |
| 17:17 |
MyGoddess |
foool, you should edit typo3/sysext/impexp/class.tx_impexp.php and change de line 183 (typo3 4.2.1), the ini_set for memory_limit. |
| 17:28 |
jangla_ |
hi |
| 17:35 |
gazui |
hello to all.. i wonder if anyone had similar problem: RealURL preVars, postVarSets settings works for all GET vars (all ext), except for indexed search in GET mode! i didn't find antything useful on google or documentation.. can you help me? tnx!! |
| 17:36 |
foool |
Thanks MyGoddess |
| 17:38 |
Gaussian |
help!! i have three languages non my site but i cann see only 2 flags on the frontpage. Using templavoila 1.37 Any Help??? |
| 17:38 |
Gaussian |
please |
| 17:42 |
jangla |
Sorry if someone's answered this already but I keep getting disconnected - |
| 17:42 |
jangla |
I have an extension (let's call it ext_pi1). This extension is in use on my.domain1.com. |
| 17:42 |
jangla |
I develop another version of the extension called ext_pi2 which is to be used on my.domain2.com |
| 17:42 |
jangla |
Each extension is only mentioned in it's relevant templates for the domains. |
| 17:42 |
jangla |
So why, if there's an error in the code of ext_pi2 do both my.domain1.com and my.domain2.com fall over? |
| 17:51 |
nd__ |
What do I specify for a flexform config type select as default? The index#, short name or long name? |
| 18:24 |
HardPhuck |
if i call the pibase result browser where is it's translation file? |
| 18:41 |
Denyerec |
http://www.ratemyink.com/?action=ssp&pid=15671&cat=1 |
| 18:50 |
void |
Denyerec: hm... |
| 18:50 |
Denyerec |
Pretty awesome IMO, and I hate tattoos.# |
| 18:51 |
void |
photoshop |
| 18:51 |
void |
? |
| 18:51 |
Denyerec |
AFAIK no, but these days who can say? |
| 19:04 |
foool |
installing typo3 4.21 can get to /typo3 and login but then Allowed memory size of 8388608 bytes exhausted (tried to allocate 4864 bytes) can anyone tell me what to do? |
| 19:04 |
Gaussian |
fool change the php.ini the size limite to 64 or 128 MB instead of 16 |
| 19:05 |
foool |
i can't get into install |
| 19:05 |
Gaussian |
on the server? |
| 19:05 |
Gaussian |
ask your provider |
| 19:06 |
foool |
in php.ini |
| 19:07 |
Gaussian |
whi not?? |
| 19:07 |
foool |
Gaussian do I change the php.ini file I have access? |
| 19:07 |
Gaussian |
which system do u use |
| 19:07 |
Gaussian |
fool open your php.ini do you ha ve it can u write in? |
| 19:08 |
foool |
CentOS |
| 19:08 |
foool |
yes i can |
| 19:08 |
Gaussian |
aso open it |
| 19:09 |
Gaussian |
look for a variable named memory_limit |
| 19:09 |
foool |
okay it is open |
| 19:09 |
Gaussian |
and change value to 64 |
| 19:10 |
Gaussian |
memory_limit = 64M |
| 19:10 |
Gaussian |
like that |
| 19:10 |
Gaussian |
should be in apache/bin |
| 19:10 |
foool |
hang on |
| 19:12 |
foool |
that worked thanks Gaussian |
| 19:12 |
Gaussian |
you are welcome fool |
| 19:13 |
foool |
:) |
| 19:16 |
Gaussian |
:) |
| 19:37 |
HardPhuck |
guys does pibase have a translation file? |
| 19:44 |
HardPhuck |
nm |
| 19:53 |
foool |
I want to do a english - french language site, what do I need for the french letters to show correctly i.e. àèé |
| 19:54 |
brikenv |
use utf8 |
| 19:54 |
foool |
okay |
| 19:54 |
foool |
do i have to set that somewhere |
| 19:55 |
brikenv |
yes in the install tool and in your typoscript where you define your locale, also your database needs to be completly utf8 |
| 19:56 |
brikenv |
<QUESTION> i would like to do my own extension to have a different view for the content element "images". all needed fields are present in "tt-content". |
| 19:57 |
brikenv |
can i just make e extension frontend plugin with kickstarter choose backend fields of tt_content in ext_tables.php and make a different view? |
| 19:57 |
foool |
thanks |
| 19:57 |
brikenv |
or would it be better to create a own table or add my own fields to tt_content? |
| 20:03 |
wacky__ |
hey guys :) |
| 20:04 |
wacky__ |
the RTE transforms <iframe> tags into plain text.. (< > etc..) is there a way to prevent that ? |
| 20:10 |
schmidtsmikey |
hello! i am using realurl 1.5.1 and i have the problem that some pages aren't stored in the table tx_realurl_pagepath. Why? |
| 20:11 |
schmidtsmikey |
my site has about 860 pages but only 800 are stored in tx_realurl_pagepath |
| 20:13 |
schmidtsmikey |
i'm going to change my site structure and the pages will get new urls if they are not stored in tx_realurl_pagepath |
| 20:13 |
schmidtsmikey |
can anybody help me? |
| 20:13 |
schmidtsmikey |
thx a lot" |
| 20:13 |
schmidtsmikey |
! |
| 20:15 |
void |
anyone here use forge? |
| 20:17 |
wacky__ |
is it possible to filter by year/month with the tt_news plugin ? |
| 20:28 |
nkuttler |
wacky__: yes |
| 21:04 |
wacky__ |
nkuttler: ok, thanks :) |