| 00:03 |
jameelsandham |
how do i configure settings to delete recursive directories?> |
| 00:04 |
jameelsandham |
anyone??????????? |
| 01:03 |
uffi |
hi folks :) |
| 01:04 |
uffi |
anyone ready to help me with a very small ts snippet? |
| 01:06 |
jsfan |
uschi: not that i'm good with ts but i could have a look... |
| 01:07 |
uschi |
thx jsfan, wait a second, perhaps i found the error |
| 01:12 |
uschi |
jsfan, here it is: |
| 01:12 |
uschi |
http://phpfi.com/276304 |
| 01:13 |
jsfan |
ok |
| 01:13 |
jsfan |
what is it that doesn't work? |
| 01:13 |
uschi |
the after.cObject is not displayed at all |
| 01:14 |
jsfan |
ic |
| 01:14 |
uschi |
if I simply do a noTrimWrap directly on the TEXT, than the comma and the blank are inside the link |
| 01:16 |
jsfan |
is .after at stdWrap property? shouldn't it be .append? |
| 01:16 |
uschi |
jsfan, that was the mistake, it has to be postCObject |
| 01:16 |
uschi |
works now, but there is another problem |
| 01:17 |
uschi |
in case the author field does not exist, the first letter of 'letzte Änderung' has to be capitalized |
| 01:17 |
jsfan |
hm, what's the difference between postCObject and append? the descriptions sound the same to me... |
| 01:17 |
uschi |
hmmmm |
| 01:18 |
jsfan |
hm, that's a bit harder... |
| 01:18 |
jsfan |
10 will never be empty, i reckon :( |
| 01:19 |
uschi |
why not? |
| 01:19 |
uschi |
if there is no author field? |
| 01:20 |
jsfan |
there will still be a wrap in the object in the end. that might spoil it. i'm not sure. |
| 01:20 |
uschi |
no, 10 will only be executed if author is not empty |
| 01:22 |
jsfan |
ok. |
| 01:22 |
jsfan |
i didn't see the required = 1 |
| 01:23 |
jsfan |
is there a reason why you split the whole thing up into 2 text objects? |
| 01:23 |
uschi |
yes |
| 01:23 |
uschi |
you mean 10? |
| 01:23 |
uschi |
or why I have 10 and 20? |
| 01:24 |
jsfan |
why you have 10 and 20 and don't include the value of 20 in the wrap of 10 |
| 01:25 |
uschi |
because this will be the last update |
| 01:25 |
jsfan |
? |
| 01:25 |
uschi |
first i want to display the author, if available |
| 01:25 |
uschi |
then I want to display the last update date |
| 01:26 |
uschi |
if author exists, i need a comma |
| 01:26 |
uschi |
and a blank |
| 01:26 |
uschi |
which I obviously do not need if no author is given |
| 01:26 |
uschi |
understand? |
| 01:26 |
jsfan |
yes but you could have conditional wraps in your object 10 |
| 01:27 |
uschi |
and the benefit of this would be? |
| 01:27 |
jsfan |
the ifs might be simpler |
| 01:28 |
uschi |
don't think so |
| 01:28 |
jsfan |
for what you want to do now i mean |
| 01:28 |
uschi |
i could load the author thing into register |
| 01:28 |
jsfan |
maybe |
| 01:29 |
uschi |
but i have no idea how i could capitalize the first letter of that string 'last update: ' |
| 01:31 |
jsfan |
what about this? |
| 01:31 |
jsfan |
http://phpfi.com/276305 |
| 01:31 |
jsfan |
untested but i think it could work. |
| 01:32 |
uschi |
jsfan, the string 'letzte Änderung' will come from an LLL var |
| 01:33 |
uschi |
so i have to parse this string |
| 01:33 |
jsfan |
so you actually don't set the text but it is preset in a language file? |
| 01:33 |
uschi |
mind you, i do have a page with 20 languages |
| 01:33 |
uschi |
right |
| 01:34 |
uschi |
and now i need to capitalize the first letter |
| 01:34 |
uschi |
split perhaps? |
| 01:35 |
uschi |
no ... |
| 01:36 |
jsfan |
no, split needs a token :( |
| 01:37 |
jsfan |
you might need some php code to refer to :( |
| 01:38 |
uschi |
looks like it |
| 01:38 |
uschi |
but i have thought that more than once, and then i found the ts option |
| 01:39 |
jsfan |
hm, you might need one of the ts gurus for that. someone like joey... |
| 01:40 |
uschi |
just sticking my nose into his cookbook |
| 01:41 |
jsfan |
good idea :) |
| 01:42 |
jsfan |
one idea: |
| 01:42 |
jsfan |
you could read the string into an option which cuts off after one character. |
| 01:43 |
jsfan |
then you use this object value as the token for a split which gives you all the rest. |
| 01:43 |
uschi |
hm |
| 01:43 |
uschi |
which one would that be? |
| 01:43 |
uschi |
crop or so |
| 01:43 |
jsfan |
then you can copy this object in upper or lower case and output it together with the rest |
| 01:44 |
jsfan |
yes, "crop = 1" i reckon |
| 01:44 |
jsfan |
or crop = 1 | |
| 01:44 |
uschi |
and how do i get the rest? |
| 01:44 |
uschi |
where is crop, stdWrap again? |
| 01:45 |
jsfan |
yes, i think so. |
| 01:48 |
uschi |
i leave this one till the week after next |
| 01:48 |
uschi |
will take too long at the moment |
| 01:48 |
jsfan |
ok, let me know when you've tried. i'm really excited to find out if it works... :) |
| 01:49 |
uschi |
sure |
| 01:49 |
uschi |
thx for help |
| 01:50 |
uschi |
jsfan, problem is, how do i find out the length of a string via ts |
| 01:51 |
jsfan |
what do you need that for? |
| 01:51 |
uschi |
because i need two parts |
| 01:51 |
uschi |
the first letter and the rest |
| 01:51 |
uschi |
the rest with crop i would get with negative values |
| 01:52 |
uschi |
means i have to know the length of the string |
| 01:52 |
jsfan |
why not use split as i suggested? |
| 01:52 |
jsfan |
then you don't need the length |
| 01:52 |
uschi |
hmmm. you mean i split the text by the first character? |
| 01:53 |
jsfan |
yes. that way the first character disappears. |
| 01:53 |
uschi |
now i understand |
| 01:57 |
jsfan |
roughly like this |
| 01:57 |
jsfan |
http://phpfi.com/276306 |
| 01:57 |
jsfan |
i'm not sure about the splitChar thing. that's the crucial point... |
| 01:58 |
uschi |
i think with split you can give a token and say how many splits you want |
| 01:59 |
jsfan |
yes. i'm just more familiar with listNum. but you would have to make sure that you get only one split. |
| 01:59 |
uschi |
in this case yes |
| 01:59 |
uschi |
does listNum work on strings? |
| 02:00 |
jsfan |
yes. it works only on strings, i think. but i think you can't limit the number of splits :( |
| 02:00 |
jsfan |
so you might really have to use split |
| 02:01 |
jsfan |
the crucial point really is splitChar. it is meant to be a string but you copy a text object into it. that could easily fail :( |
| 02:01 |
jsfan |
i just don't know how to say "copy contents of object 10 into .splitChar" :( |
| 02:01 |
uschi |
if splitChar has no stdWrap ... |
| 02:02 |
uschi |
token has |
| 02:02 |
jsfan |
oh, that's handy. |
| 02:02 |
jsfan |
splitChar is just a string. |
| 02:02 |
jsfan |
then you might be alright... |
| 02:07 |
jsfan |
it might still be a hassle to evaluate 10 and get it's value into the token :( |
| 02:07 |
jsfan |
that's definitely the weakness of this approach :( |
| 02:32 |
uschi |
jsfan, how do i if else with if? |
| 03:16 |
uschi_ |
anyone still awake to help me with a simple question? if / else with ts function if |
| 03:40 |
jsfan |
uschi_, i'll be awake for a bit longer, i reckon ;) |
| 03:40 |
jsfan |
was just out for lunch |
| 03:40 |
jsfan |
there is no real else. you can just check for the opposite. |
| 03:40 |
uschi_ |
i remember, you are from the other side of the world |
| 03:41 |
uschi_ |
what i meant to do was to register a variable named hasAuthor |
| 03:41 |
jsfan |
in other words, you have one object that gets set e.g. if.isTrue and one that gets set if.isFalse |
| 03:41 |
uschi_ |
this should be set to 0 if no author is filled in, and to 1 if we have one |
| 03:41 |
jsfan |
yeah, i'm from down under |
| 03:41 |
jsfan |
or mot really from but in ;) |
| 03:41 |
uschi_ |
:-) |
| 03:41 |
uschi_ |
i have to go to bed soom |
| 03:41 |
uschi_ |
-m |
| 03:42 |
uschi_ |
it is nearly 4 in the morning here |
| 03:43 |
jsfan |
i know ;) |
| 03:43 |
uschi_ |
can you give me an example olease? |
| 03:43 |
jsfan |
the code that i did before was like that... |
| 03:44 |
uschi_ |
which one? |
| 03:44 |
jsfan |
http://phpfi.com/276305 |
| 03:44 |
uschi_ |
found it, sorry |
| 03:44 |
jsfan |
only either 20 or 21 will exist depending on the value of page:author |
| 03:45 |
uschi_ |
ok, i will try that one :-) |
| 03:46 |
uschi_ |
but after sleeping |
| 03:46 |
uschi_ |
or perhaps not, i try it out directly, just to see that this ffff if works |
| 03:47 |
uschi_ |
i missed the trick with the two objects :-) |
| 03:49 |
uschi_ |
jsfan, it renders both *sniff* |
| 03:50 |
uschi_ |
it has to be data perhaps, not value? |
| 03:50 |
jsfan |
do you copy the objects? if so, you have to unset the if on the second one first. |
| 03:50 |
jsfan |
hm, i'm not sure. value should work according to tsref. i've only used field, i think. |
| 03:51 |
uschi_ |
now it works |
| 03:51 |
uschi_ |
i paste it |
| 03:53 |
uschi_ |
http://phpfi.com/276314 |
| 03:53 |
uschi_ |
this way round, jsfan |
| 03:54 |
jsfan |
but now the value is redundant, i think. |
| 03:54 |
jsfan |
this is only what you compare to. |
| 03:55 |
jsfan |
oh, maybe not. |
| 03:55 |
jsfan |
uschi_, but i still think it's redundant |
| 03:55 |
uschi_ |
why? |
| 03:55 |
uschi_ |
i do not want the content of the author field |
| 03:58 |
jsfan |
ok, ic. it might work then. i'm not sure. |
| 03:58 |
uschi_ |
it works, believe me |
| 03:58 |
jsfan |
i thought you were copying the thing you test but i might not remember correctly. |
| 03:59 |
uschi_ |
no, i am checking whether another field exists |
| 03:59 |
uschi_ |
in this case i have some stuff before the text last update |
| 04:04 |
jsfan |
ic. |
| 04:40 |
uschi_ |
jsfan, still there? |
| 04:40 |
uschi_ |
it works, with split and crop :-))))))))))))))))))))))))))))) |
| 04:41 |
jsfan |
great. can you post the code? |
| 04:41 |
jsfan |
would love to see it :) |
| 04:41 |
uschi_ |
sure, only the date itself is still missing |
| 04:41 |
uschi_ |
but htat should be easy, hopefully |
| 04:43 |
uschi_ |
jsfan, here it is |
| 04:43 |
uschi_ |
http://phpfi.com/276320 |
| 04:44 |
jsfan |
awesome! didn't think it would really work out. nice work! :) |
| 04:45 |
uschi_ |
i will post it somewhere with description |
| 04:45 |
jsfan |
good idea, i reckon :) |
| 04:47 |
jsfan |
nice how you solved the problem with getting the evaluated object in the token by loading a register with it :) |
| 04:49 |
uschi_ |
you remind me of something, i should restore it |
| 04:49 |
jsfan |
restore the register? |
| 04:49 |
uschi_ |
yes, that is deleting those variables from the global register stack |
| 04:50 |
uschi_ |
they are not needed anymore |
| 04:50 |
uschi_ |
see RESTORE_REGISTER |
| 04:50 |
jsfan |
yeah, probably a good idea. |
| 04:50 |
uschi_ |
but first I put in some comments |
| 04:50 |
uschi_ |
i will not know what we have done here in a few weeks |
| 04:50 |
jsfan |
as you're not overloading an existing register, it only makes a difference in memory usage, i guess, but at least it would be good style to restore it :) |
| 04:51 |
uschi_ |
i love good style |
| 04:51 |
jsfan |
i know that problem. sometimes it takes me long time to understand old ts templates that i created. esp. when there are tricks like this in them. ;) |
| 04:59 |
uschi_ |
ok, comments written, jsfan, i have to go to bed now |
| 04:59 |
uschi_ |
will post it again, if the date is put in |
| 05:00 |
jsfan |
ok. |
| 05:01 |
jsfan |
sleep well :) |
| 05:01 |
uschi_ |
i will |
| 05:33 |
jsfan |
hi tuxick, EvilEd |
| 07:06 |
tsrepadmin |
good morning #typo3!!! |
| 07:22 |
amitext |
Hi.. I am implementing a site with TV. I have a content element that is common for all pages..is there a way that I can have it added by default on all pages. |
| 07:22 |
amitext |
The content of that element can change later so I do not want to get it in the template itself |
| 07:37 |
dax77 |
hi @all |
| 07:39 |
tsrepadmin |
Hi just2b |
| 07:40 |
amitext |
hey tsrepadmin: can you help me with that? is tehre any solution to that? |
| 07:41 |
tsrepadmin |
amitext use content sliding |
| 07:42 |
tsrepadmin |
there is an extension called something like *_tv_slide_* |
| 07:42 |
amitext |
ok |
| 07:42 |
amitext |
I will check that out |
| 07:42 |
amitext |
thank you.. |
| 07:45 |
amitext |
kb_tv_cont_slide |
| 07:45 |
amitext |
is that the one you are talking about? |
| 07:59 |
tsrepadmin |
yes it is |
| 09:27 |
foool |
directmal question - when I add the template in static I get the warning flag and can't save it. I changed the permissins for the template etc. but it stays the same - any ideas as to the problem |
| 09:40 |
foool |
directmail question - when I add the template in static I get the warning flag and can't save it. I changed the permissions for the template etc. but it stays the same - any ideas as to the problem |
| 10:33 |
freddy__ |
hi |
| 10:36 |
freddy__ |
if I extend a table using phpmyadmin in an extension I have made myself, how do I make sure that I can export this extension, with this updated table ? Can I just make the proper changes to ext_tables.sql and then it will be ok ? |
| 10:37 |
just2b |
freddy you cant |
| 10:37 |
just2b |
make it with kickstarter like you should |
| 10:37 |
freddy__ |
I have to use the kickstarter ? |
| 10:37 |
just2b |
why not? |
| 10:37 |
just2b |
but could work in exttables.sql too |
| 10:37 |
freddy__ |
then I throw out what I have made in the class file |
| 10:42 |
just2b |
you can specify in kickstarter not to override the pi1 |
| 10:45 |
freddy__ |
ahh... :-) |
| 10:47 |
foool |
directmail crached my typo3 installtion :( |
| 10:47 |
foool |
charched = crashed |
| 10:47 |
tsrepadmin |
foool cleared typo3conf cache? |
| 10:47 |
foool |
yes |
| 10:47 |
just2b |
missing exT? ;) |
| 10:48 |
foool |
I got the frontpage to come up but if i click on the menu anywhere the frontpage comes up again |
| 10:48 |
freddy__ |
just2b: so the proces is like this: make the change to table, update, view result, click OUT the files I dont want to write to, and last write ? |
| 10:48 |
foool |
took directmail out of server |
| 10:48 |
foool |
did undo in root to before directmail install |
| 10:48 |
just2b |
freddy yes |
| 10:49 |
just2b |
of course if you wanna update some tables, you need to write e.g. ext_tables new... |
| 10:49 |
freddy__ |
just2b: sure |
| 10:49 |
foool |
now no links in menu work or ven if i put the pid=157 manually it still comes up with the frontpage |
| 10:49 |
foool |
strange |
| 10:51 |
foool |
i have another typo3 installed; what would be best to try first? use the database from this one or export everything to the new one? |
| 11:26 |
typochur |
hi |
| 11:34 |
foool |
hi |
| 11:35 |
typochur |
hi |
| 11:36 |
m0oman |
hm. |
| 11:36 |
m0oman |
moo. |
| 11:37 |
FloLeBlanc |
hi all. If I have a table with played games: "gametype_ID", "date", "paid_cash" and a gametype table with "gametype_ID" and "gametype_name". now I want to create a daily report and want to list if no cash was made with a specific gametype too. If I do an outer join and a filter restraint however (where date = myday), the gametypes which awarded no cash are filtered of course. any input on this please? |
| 11:40 |
typochur |
Mh, atm I use pi_getLL( 'name' ); to fetch a translation-entry. Is there a possibility to fetch _all_ entries for a specified language? |
| 11:40 |
typochur |
Like pi_getLL( * ); ^^ |
| 11:41 |
ilya211 |
Hi everybody, please, give ideas on DB records localization. I have an extension and it is required to have localized versions for each record. Any links, docs? |
| 11:41 |
void |
typochur: maybe, $this->LOCAL_LANG or $this->_LOCAL_LANG.. don't remember |
| 11:42 |
typochur |
void uh, nice, thanks very much |
| 11:42 |
FloLeBlanc |
lol |
| 11:42 |
FloLeBlanc |
stupid me |
| 11:42 |
FloLeBlanc |
I thought I was in #sql |
| 11:42 |
void |
FloLeBlanc: hehe =) |
| 11:43 |
void |
ilya211: use this snippet: http://pastebin.ca/774609 |
| 11:43 |
void |
ilya211: this will return localized record |
| 11:44 |
ilya211 |
void: in BE? I need to configure my ext to create localized version like parent->child? |
| 11:45 |
void |
ilya211: that code is for FE.. |
| 11:46 |
void |
ilya211: btw, i see you are from russia, maybe /j #typo3.ru ? |
| 11:47 |
ilya211 |
Yes, I see, thank you. It is useful too, but I need to have records localization feature in BE. |
| 11:48 |
void |
ilya211: if you want to have localization in BE, you need to modify the TCA |
| 11:48 |
ilya211 |
void: typo3.ru has bad support. Typo3 is not so popular in Russia. |
| 11:49 |
void |
i thought you already did that |
| 11:49 |
ilya211 |
void: As I understand, there are no that features in extension kickstarter? |
| 11:49 |
void |
no, you're wrong :) |
| 11:49 |
void |
there is such feature in kickstarter |
| 11:50 |
ilya211 |
I think we speak on different things |
| 11:50 |
ilya211 |
I have localized BE for extension |
| 11:50 |
ilya211 |
that is not problem |
| 11:51 |
void |
checkbox "enable localization" or so |
| 11:51 |
ilya211 |
But now I need to localize each content item, stored in DB |
| 11:52 |
ilya211 |
Now I can create independent records but I need relations |
| 11:52 |
ilya211 |
parent record->child (ru) |
| 11:52 |
void |
during creation of new table in kickstarter, you can enable or disable localization features for this table |
| 11:53 |
ilya211 |
parent (default)->child(ru) |
| 11:53 |
ilya211 |
->child(de) |
| 11:53 |
ilya211 |
really? |
| 11:54 |
void |
> parent (default)->child(ru) <- don't understand what you mean with this.. |
| 11:57 |
ilya211 |
For example, I create record in system folder (keyword item) and now I need to create translation for this item, so they are related and some properties of parent object are implemented to the child (translated) version |
| 12:02 |
ilya211 |
'Enabled localization features' is checked in db table options of ext kickstarter and I can create records in different languages, but they are not related |
| 12:08 |
void |
weird. they should. look at some examples.. tt_news, maybe |
| 12:08 |
ilya211 |
Oh, yes, I know problem -> my system folder has no translation. I fixed. That is ok. |
| 12:08 |
ilya211 |
void: Thank for your time. |
| 12:09 |
void |
np |
| 12:13 |
tobi_t3w |
good morning #typo3 |
| 12:17 |
uffi |
hey, morning tobi :-) |
| 12:18 |
void |
morning uschi :) |
| 12:21 |
tobi_t3w |
hello uschi :) |
| 12:31 |
ilya211 |
void: I have another one problem - how to define fields that should be available for translation. It is not required to translate all fields (like alias, related items, etc) but only defined (like title, description, etc). TCA? Kickstarter? Or something else? Just tell me where should I seek solution. |
| 12:33 |
void |
ilya211: TCA, 'l10n_mode', i think. look at EXT:tt_news/tca.php |
| 12:34 |
ilya211 |
Thks, void |
| 12:38 |
zenonx |
hi, I just wonder if it's possible to paginate & filter template voila's flexible content elements? |
| 13:05 |
stanman |
hi, I've got a dynamic menu made with templavoila. the format is a text link (dynamically generated) and an image (inside a div). Now I want to make an onclick function on that div so it'll follow the href inside the menu. Tried some javascript, but was wondering if it could be done more easily inside typo3. any hints? |
| 13:22 |
FloLeBlanc |
stanman: no other than wrap the image with the js |
| 13:23 |
FloLeBlanc |
is there a reason not to use a gmenu? |
| 13:23 |
FloLeBlanc |
or did I not understand the question :) |
| 14:10 |
mar77i |
hi |
| 14:11 |
animan |
hi |
| 14:12 |
mar77i |
how do I filter tt_news entries by ts or, much more important - where does it say how I do..? |
| 14:13 |
mar77i |
I'm right now staring at the documentation for over an hour... |
| 14:15 |
animan |
does anyone have some experience with as_printlink extension? |
| 14:16 |
animan |
for some odd reason it doesn't show the page's contents anymore, just ###CONTENT### marker |
| 14:17 |
Denyerec |
mar77i - filter? |
| 14:18 |
mar77i |
only show entries of a certain category... or a certain period of time...? |
| 14:22 |
tapo |
hi floxx |
| 14:22 |
mar77i |
oO... the number of displayed entries is limited. why shouldn't it be possible to filter them in other aspects... |
| 14:23 |
floxx |
hi tapo |
| 14:32 |
Denyerec |
mar77i - you haev a point. |
| 14:32 |
Denyerec |
I am certain that it must be possible... |
| 14:32 |
Denyerec |
I've just never had to try :) |
| 14:39 |
fred^ |
hi |
| 14:39 |
fred^ |
with ts, how do you decide if your on a subpage? |
| 14:39 |
mar77i |
r u using templavoila? |
| 14:40 |
fred^ |
i use automaketemplate and i want to use the frontpage template, but i dont want the subpages to inherit that one |
| 14:40 |
mar77i |
override the global code with |
| 14:42 |
mar77i |
[globalVar=TSFE:id={yourhomepageid}] |
| 14:42 |
mar77i |
{your ts} |
| 14:42 |
mar77i |
[global] |
| 14:42 |
mar77i |
{more global definitions} |
| 14:43 |
mar77i |
as (nearly) described in tsref page 12 |
| 14:55 |
pulponair |
hi dues |
| 14:55 |
pulponair |
dudes ;) |
| 14:59 |
DaveVT5_ |
Hello! I am about 20 minutes into researching Typo3 and I have an important question that relates to a project I am about to work on... Does Typo3 have an e-catalog (product database) ??? |
| 15:02 |
mar77i |
ahm... there is that gigantic database called the typo3 extension repository. my experience showed that there is quite much anything... it's worth looking. but no warranty and no idea if it's the best solution. if you come up with your own extension we would all be grateful |
| 15:03 |
DaveVT5_ |
Ok, I noticed one when I searched for 'catalog' |
| 15:36 |
_HCS_ |
good morning, does anyone know the location of a downloadable installation guide that is not in an open office format? |
| 15:37 |
_HCS_ |
other than the text file that is embedded in the package... |
| 15:37 |
mar77i |
ext? |
| 15:38 |
_HCS_ |
doc docx pdf |
| 15:38 |
_HCS_ |
downloadable html or chm even |
| 15:39 |
fred^ |
thanks alot, mar77i |
| 15:39 |
fred^ |
let me try it |
| 15:39 |
mar77i |
odt can be imported by ms word |
| 15:40 |
mar77i |
http://odf-converter.sourceforge.net/ |
| 15:40 |
_HCS_ |
odt? where can that be located? (the only ones i see on the typo3.org site are an online version and a sxw format) |
| 15:41 |
freddy__ |
If I use this line: $res = $this->pi_list_query('tx_mentorcoaching_mentor',1,'and virksomhed='.$virksomhedsid." ".$andstring); |
| 15:41 |
freddy__ |
in my extension, the result of the sql query is an integer. How do I get that integer over into my php file? |
| 15:45 |
fred^ |
_HCS_ OpenDocument Format |
| 15:45 |
fred^ |
.sxv is one of those |
| 15:45 |
_HCS_ |
thanks |
| 15:45 |
fred^ |
http://lnxwalt.wordpress.com/2007/01/08/opening-odf-odt-ods-odp-etc-files/ |
| 15:45 |
fred^ |
might have a look at that |
| 15:46 |
_HCS_ |
will do, thanks again fred^, and mar77i too :) |
| 15:48 |
Denyerec |
HCS - you could also grab a copy of "portable open office" |
| 15:49 |
Denyerec |
which lets you use open office without istalling anything |
| 15:49 |
Denyerec |
it simply runs out of a folder on your hard disk |
| 15:53 |
_HCS_ |
nice, didn't know about that Denyerec. i haven't touched anything other than M$ office since staroffice a while back, thanks i'll look at that as well |
| 15:54 |
flo7613 |
hi guys |
| 16:01 |
Denyerec |
hey pmk |
| 16:11 |
flops |
hmmm |
| 16:11 |
flops |
someone experienced with the gifbuilder? |
| 16:12 |
flops |
if i scale an jpg with the gifbuilder the quality is bad, but if typo3 does it in the backend to show a thumbnail of an image the quality is good :( |
| 16:14 |
void |
scale up or scale down? |
| 16:16 |
void |
anyone used ameos_formidable? |
| 16:16 |
flops |
scale down @ void |
| 16:18 |
void |
flops: i am not sure, but maybe typo uses different engines for FE and BE: IM and GD... |
| 16:18 |
void |
flops: show your code and results, please |
| 16:24 |
uriahheep |
pulponair: hey man, you around? |
| 16:25 |
pulponair |
uriahheep: yes |
| 16:25 |
uriahheep |
pulponair: cool... ever used the flvplayer extension? |
| 16:26 |
pulponair |
uriahheep: i dont remember |
| 16:27 |
iamAwillys |
uriahheep: i do use one |
| 16:27 |
iamAwillys |
or two |
| 16:27 |
flops |
void: got my pm? |
| 16:28 |
void |
flops: no.. |
| 16:28 |
uriahheep |
iamAwillys: is your site a multilanguage one? |
| 16:28 |
void |
flops: are you identified by nickserv? |
| 16:28 |
flops |
nope |
| 16:28 |
void |
you need for sending pms |
| 16:28 |
uriahheep |
iamAwillys: ...cause, well, for some reason the flvplayer plugin doesn't show up in any language but the french one :( |
| 16:29 |
uriahheep |
pulponair: ^^ |
| 16:29 |
iamAwillys |
uriahheep: it does here |
| 16:29 |
uriahheep |
pulponair: ever heard about such a behavior for any other extensions? |
| 16:29 |
iamAwillys |
on the english one |
| 16:29 |
uriahheep |
hmm.... |
| 16:29 |
uriahheep |
oops, any other but the english one, i mean |
| 16:29 |
uriahheep |
i.e. the default language |
| 16:29 |
uriahheep |
any other language, it doesn't show up |
| 16:30 |
uriahheep |
...and it might not even be a problem with the extension, it seems.. |
| 16:30 |
uriahheep |
somehow, the php for the extension doesn't even get called in french! |
| 16:30 |
uriahheep |
it's pretty scary |
| 16:30 |
uriahheep |
this is when passing through templavoila, btw |
| 16:32 |
iamAwillys |
dont know |
| 16:32 |
iamAwillys |
dont need it multilang here |
| 16:32 |
uriahheep |
hmmm... |
| 16:32 |
iamAwillys |
ask you visitors to learn the default language |
| 16:32 |
iamAwillys |
:p |
| 16:32 |
uriahheep |
pulponair: any ideas? :-/ |
| 16:32 |
uriahheep |
iamAwillys: lol :P |
| 16:32 |
pmk65 |
uriahheep: Have you tried editing the flexform_ds_pi1.xml of FlvPlayer? Maybe the langDisable parameter has to be changed when using it on multilanguage sites? |
| 16:34 |
pmk65 |
you could also try inserting a langChildren tag too, and see if that has any effects. |
| 16:34 |
uriahheep |
pmk65: i did try that, but it didn't help... anyway, the langDisable parameter is at 1 on other extensions without any problems :-/ |
| 16:34 |
uriahheep |
pmk65: i'll try langChildren |
| 16:36 |
uriahheep |
pmk65: nope, changing those isn't helping |
| 16:39 |
pmk65 |
Uriaheep: try adding this after the call to $this->setConfig() |
| 16:39 |
pmk65 |
t3lib_div::debug($this->conf); |
| 16:41 |
uriahheep |
pmk65: nothing appears in french still, but in english, is shows the table, let me paste somewhere |
| 16:41 |
uriahheep |
pmk65: http://pastebin.ca/775346 |
| 16:41 |
pmk65 |
what if you place the debug line before the call to setConfig()? |
| 16:49 |
pmk65 |
when setConfig() is called, the FF and TS config values is merged. So before the call, the config array should include the TS config data. If it shows the TS config, then you know where the problem is.. |
| 16:51 |
mar77i |
where does that error come from indexed search line 499 undefined function exif_read_content? |
| 16:52 |
uriahheep |
pmk65: well, the thing is, i used echo() before to test if anything was being called in the php file, and in english it did get called, but in french, even if i put an echo right at the beginning of the php file it didn't show up in french |
| 16:58 |
Denyerec |
pmk65 - can I hire you to fix some issues with DirectMail ? |
| 17:01 |
void |
anyone used ameos_formidable? |
| 17:02 |
void |
Denyerec: ? |
| 17:02 |
Denyerec |
void - I need to hire someone to fix directmail |
| 17:02 |
Denyerec |
The client needs it working |
| 17:02 |
Denyerec |
and I am out of ideas. |
| 17:02 |
Denyerec |
So now the $$$ come out. |
| 17:02 |
Denyerec |
or £££ |
| 17:02 |
Denyerec |
or €€€ |
| 17:03 |
Denyerec |
wherever the willing victim lives. |
| 17:03 |
void |
Denyerec: i see only squares |
| 17:03 |
Denyerec |
Bah |
| 17:03 |
void |
[19:07:26] <Denyerec> So now the $$$ come out. |
| 17:03 |
void |
[19:07:35] <Denyerec> or £££ |
| 17:03 |
void |
[19:07:38] <Denyerec> or €€€ |
| 17:03 |
Denyerec |
Dollars, poundsigns and euros |
| 17:03 |
Denyerec |
they display fine here ;) |
| 17:03 |
void |
do you use utf-8 ? |
| 17:03 |
Denyerec |
I think we need UTF-8 in IRC :) |
| 17:03 |
Denyerec |
using mIRC here |
| 17:04 |
Denyerec |
dunno if it's UTF8 or not |
| 17:04 |
void |
it's already there, in mIRC too |
| 17:04 |
void |
you just need to set up it.. |
| 17:06 |
Denyerec |
I have utf-8 display enabled |
| 17:08 |
mar77i |
has anyone worked with tt_news categories? |
| 17:09 |
void |
mar77i: i think, most of ppl there did |
| 17:09 |
mar77i |
in a tt_news insert plugin element the specified category always disappears, and dunno why. I first thought it was because I didn't select "show items with selected categories (OR)" - didn't help... |
| 17:11 |
void |
mar77i: that's known bug |
| 17:12 |
mar77i |
you're kidding. have I missed something? |
| 17:13 |
void |
mar77i: http://bugs.typo3.org/view.php?id=5103 |
| 17:16 |
mar77i |
but it /is/ being saved. it's just not being displayed again. |
| 17:20 |
ries |
My god, I was just reading that dutch students currently have 1040 hours pear YEAR of school hours, and they are demonstrating for 960!!! |
| 17:20 |
Denyerec |
1040 per year doesn't sound like a lot? |
| 17:21 |
Denyerec |
that's ~20 hours a week |
| 17:21 |
Denyerec |
?!? |
| 17:21 |
Denyerec |
At university we had 35-40 per week |
| 17:21 |
mar77i |
doing WHAT??? |
| 17:21 |
ries |
Holy smoke, that is 4 hours per day!!! and then they are the evenings and weekends off!!! |
| 17:21 |
ries |
They shouldn't complain!!!! |
| 17:22 |
dax77 |
hi hi hi |
| 17:22 |
ries |
These suents get a shock of there live when they are starting to work... |
| 17:22 |
ries |
and I will NOT advice them to become a freelancer then... |
| 17:22 |
ries |
they will never survife |
| 17:23 |
flo_ps |
no thats not true don't forget the time where no schoolhours are... maybe 3-4 months a year |
| 17:23 |
mar77i |
though maybe... stupidity rules the world, and this is in fact a very stupid discussion |
| 17:26 |
mar77i |
so let's say you stop school duty; our streets become even more dangerous, there's even less chances for the talented... I may sound darwinistic but aren't we all more familiar with the wilderness? |
| 17:41 |
uriahheep |
void: any idea why a certain extension's php wouldn't get called at all in any language but the default one? |
| 17:49 |
mar77i |
php error - null object or sth? |
| 17:49 |
fred^^ |
Doh. http://pastebin.com/d3e288a4e I tried adding the globalVar, mar77i |
| 17:49 |
fred^^ |
The result of that code is that there is no template selected |
| 17:49 |
fred^^ |
Which is wierd. It seems fine |
| 17:50 |
mar77i |
the template disappears globally? |
| 17:51 |
fred^^ |
Yes |
| 17:51 |
fred^^ |
Or wait a minute |
| 17:51 |
fred^^ |
I might have made a mistake somewhere, typo or whatever |
| 17:52 |
fred^^ |
Let me check one more time |
| 17:52 |
mar77i |
look that you set the conditional part after definitions within page.1 otherwise you confuse yourself |
| 17:53 |
fred^^ |
It only dissapears on page 51 and its subpages |
| 17:53 |
mar77i |
page.1 > |
| 17:53 |
mar77i |
page.1 isn't a TEMPLATE object anymore if you kick it out |
| 17:54 |
fred^^ |
Aha :D |
| 17:54 |
fred^^ |
Win |
| 17:54 |
fred^^ |
It was all the experimenting that confused me somewhat. After the first thing didnt work i put that one in there |
| 17:54 |
mar77i |
I know this. |
| 17:55 |
mar77i |
I've been there for long enough |
| 17:55 |
fred^^ |
Thanks, now it works perfectly |
| 17:55 |
fred^^ |
And great timing. Im practicly out of battery on the laptop |
| 17:55 |
fred^^ |
Have a nice evening |
| 18:40 |
joe_ |
whats the globalvar for the header type? |
| 19:23 |
num000 |
helloo |
| 19:34 |
timdeluxe |
good evening (or good morning, depends on timezone *g*). i am experiencing problems with a website, which i moved on a new server. i changed nothing except the apache & php version under it. now i am getting nothing except a xml error when i call the websites url |
| 19:34 |
timdeluxe |
any ideas? |
| 19:45 |
void |
timdeluxe: xml error? |
| 19:50 |
timdeluxe |
"Fehler: XML-Output: Invalid character" |
| 19:50 |
timdeluxe |
i already turned off real url in setup typoscript |
| 19:52 |
void |
do you have php5 on localhost and php4 on the server? |
| 19:54 |
timdeluxe |
old server: php4 new server: php5 |
| 19:55 |
timdeluxe |
(new server: php5-cgi / fastcgi) |
| 19:55 |
void |
php5 and php4 have differences in xml processing |
| 19:56 |
num000 |
hi void |
| 19:56 |
void |
hi num |
| 19:56 |
num000 |
sorry i had to work the whole weekend |
| 19:56 |
num000 |
if the issue still exist i can bootup my server |
| 20:01 |
void |
no.. i used firewall to block samba ports. |
| 20:01 |
num000 |
even for local networks ips? |
| 20:02 |
void |
i enabled only 2 ips to connect.. and disable all other |
| 20:02 |
num000 |
great if it works |
| 20:03 |
timdeluxe |
void: ok, that maybe, but how to find out where the xml error comes from? |
| 20:03 |
void |
timdeluxe: search the sources.. |
| 20:03 |
num000 |
the error tells you which line it comes from |
| 20:03 |
timdeluxe |
no it doesnt |
| 20:03 |
num000 |
whats the error |
| 20:03 |
timdeluxe |
only "Fehler: XML-Output: Invalid character" is put out |
| 20:04 |
timdeluxe |
nothing more nothing less |
| 20:04 |
num000 |
isn't there something like error at ^^^^ foobar |
| 20:05 |
timdeluxe |
noooo |
| 20:05 |
timdeluxe |
i used to programm php and i now what you mean, but really nothing more is putted out |
| 20:05 |
timdeluxe |
that is what it makes so difficult :( |
| 20:06 |
timdeluxe |
you can look at it by yourself: http://sb.funzt.org/ (dont wonder about the crazy domain ;D) |
| 20:07 |
num000 |
you would only recognize the meaning if you are german, wouldn't you |
| 20:07 |
num000 |
can you post your typoscript somewhere |
| 20:08 |
num000 |
did you try a testpage in your root directory if this works? |
| 20:09 |
pulponair |
hi dudes |
| 20:16 |
nomatter001 |
hi |
| 20:16 |
nomatter001 |
how can i change the layout of a sr_language_menu |
| 20:16 |
nomatter001 |
i want to have a dropdown-box without this border around it |
| 20:20 |
void |
i think it have a template.. doesn't it? |
| 20:20 |
timdeluxe |
num000: yeah, a testpage (if you mean some php document in root folder of that vhost) works. i'll post TS by phpfi... wait a moment |
| 20:20 |
timdeluxe |
the translation for "Fehler" is "Error", everything else of the error message is english |
| 20:22 |
nomatter001 |
anybody an idea how i can get the border away? |
| 20:23 |
timdeluxe |
num000: http://phpfi.com/276462 |
| 20:28 |
nomatter001 |
anybody here who can help me? |
| 20:42 |
nomatter001 |
hello? |
| 20:42 |
uriahheep |
timdeluxe: wouldn't Fehler actually mean Failure? ;) |
| 20:47 |
timdeluxe |
uriahheep: i am not the perfect translator, but i am sure Error is a translation for "Fehler" ;) |
| 20:48 |
nomatter001 |
uriahheep: i think in german we translate both, error and failure with Fehler |
| 20:49 |
timdeluxe |
uriahheep: ok, but that doesn't help me either |
| 20:49 |
timdeluxe |
i'll try if a update from 4.1.1 to 4.1.3 helps |
| 20:51 |
uriahheep |
timdeluxe: ok ;) |
| 20:51 |
uriahheep |
nomatter001: ok ;) |
| 20:55 |
timdeluxe |
ok. update didnt help :( |
| 21:02 |
timdeluxe |
and switch to php4 gives 500 :/ - i'm loving it... |
| 21:38 |
timdeluxe |
yeeeeeeeeeaaah. it was tw_rssfeeds |
| 21:38 |
timdeluxe |
grml |
| 21:43 |
uriahheep |
nomatter001: you still around? |
| 23:50 |
void |
Ries |
| 23:51 |
ries |
Hey void |
| 23:51 |
void |
ries: change the topic =) |
| 23:51 |
void |
alpha2 released! |
| 23:52 |
Denyerec |
Oooh really ? |
| 23:52 |
ries |
7deop |