| 00:53 |
num000 |
is it possible to trace the ip and set it with the mail when formulars are sent with mailform? |
| 01:21 |
num000 |
void: ohh, the yaml settings in the htmleditor is not anymore there ;-) |
| 04:22 |
num000 |
void: still awake |
| 07:08 |
foool |
you online void? |
| 07:16 |
void |
foool: currenlty yes |
| 07:17 |
foool |
hi void - do you know anything about directmail |
| 07:17 |
void |
no |
| 07:17 |
foool |
ah |
| 07:17 |
foool |
okay |
| 07:18 |
foool |
also I have a prob with an installation of typo3 |
| 07:18 |
foool |
I am no good at symlinks, think I did it wrong |
| 08:09 |
HardPhuck |
how can u set all menu items to be visible at all times |
| 08:10 |
psychomieze |
HardPhuck: with expAll = 1 |
| 08:10 |
HardPhuck |
tx |
| 08:14 |
HardPhuck |
is expAll = 1 TMENU or HMENU setting |
| 08:16 |
psychomieze |
TMENU |
| 08:21 |
HardPhuck |
tnx |
| 08:24 |
HardPhuck |
one more thing |
| 08:25 |
HardPhuck |
can menu be generated so that level 2 <ul> are IN the level 1 <li> items? |
| 08:25 |
HardPhuck |
and not after them in the markup |
| 08:27 |
psychomieze |
yes of course, else it would be invalid. you should use "wrapItemAndSub = <li>|</li>" for wrapping your elements, then submenus are automatically placed inside the li element |
| 08:28 |
HardPhuck |
ok, trying |
| 08:48 |
HardPhuck |
hm, psycho got any example? |
| 08:51 |
psychomieze |
wait.. |
| 08:53 |
psychomieze |
HardPhuck: http://www.typo3.net/faq/div_aufgaben/menu_bulletlist/ <- this shows wrapItemAndSub |
| 09:10 |
HardPhuck |
ah, it works like a charm thank you psycho |
| 09:20 |
FloLeBlanc |
hi all |
| 09:26 |
HardPhuck |
can you strip the enclosing div of a plugin |
| 09:27 |
HardPhuck |
i have <div id=header><div id=plugin></div></div> |
| 09:27 |
HardPhuck |
and i do not need the plugin div |
| 09:32 |
psychomieze |
HardPhuck: look in ts object browser at your plugin and you'll see if the wrapping is done with ts. if so you can set the wrap to | |
| 09:33 |
HardPhuck |
the setup option? |
| 09:33 |
HardPhuck |
Browse:setup? |
| 09:35 |
HardPhuck |
no, the wrapping is not done with ts |
| 09:38 |
psychomieze |
which plugin do you use? |
| 09:40 |
HardPhuck |
flash detection |
| 09:40 |
HardPhuck |
http://193.2.109.5 |
| 09:44 |
psychomieze |
HardPhuck: you can't get rid of the div without changing the php code. |
| 09:45 |
HardPhuck |
that is not a problem :) |
| 09:45 |
HardPhuck |
pi1/class.tx_rlmpflashdetection_pi1.php |
| 09:46 |
HardPhuck |
i already tried editing this file but has no such thing as <div id=..."> in it |
| 09:46 |
psychomieze |
change "return $this->pi_wrapInBaseClass($content);" to "return $content;" |
| 09:47 |
psychomieze |
but pay attention that you won't be able to update that extension without losing your changes. |
| 09:48 |
ManDay |
Can someone point me to a full list of all parameters of TCA? |
| 09:48 |
ManDay |
Not elaborately documented, but simply a list (perhaps with a short comment after every parm) |
| 09:49 |
FloLeBlanc |
is there any "final version" of directmail for php4 and typo3 4.0.X ? |
| 09:49 |
davidbrunnthaler |
mh how do i make a hyperlink to another page in an extension? i found out with $lconf['parameter'] = 34; |
| 09:49 |
davidbrunnthaler |
i tried it out: http://paste.phlogi.net/-b8b3088597/ |
| 09:50 |
psychomieze |
ManDay: http://typo3.org/documentation/document-library/core-documentation/doc_core_api/1.2.0/view/4/1/ (that and the following page) |
| 09:50 |
davidbrunnthaler |
but it just won't work.. although the additional parameters are working.. |
| 09:50 |
davidbrunnthaler |
anybody who knows what i'm doing wrong? |
| 09:50 |
ManDay |
psychomieze: i said: "NOT elaborately documented" |
| 09:50 |
ManDay |
i said: |
| 09:51 |
ManDay |
"just a SIMPLE LIST" |
| 09:52 |
psychomieze |
ManDay: use debug() for the tca-array and you get a simple list, but without any documentation. |
| 09:52 |
HardPhuck |
psycho thank you, it works |
| 09:52 |
davidbrunnthaler |
http://spanien-mit-flair.de/suchergebnisse it's the "Hotel Daniel"-link which is the problemchild right now |
| 09:52 |
psychomieze |
FloLeBlanc: all directmail versions below 2.6.0 should work with your php and typo3 combination |
| 09:53 |
FloLeBlanc |
psychomieze: thank you |
| 09:53 |
FloLeBlanc |
is there a possibility to download those in the TER? |
| 09:55 |
ManDay |
good idea, psychomieze - i d appreciate short comments after every item tho |
| 09:56 |
psychomieze |
FloLeBlanc: http://typo3.org/extensions/repository/view/direct_mail/2.5.4/ that is the latest before 2.6.0 (generally just search for your extension and change the version in the url to the one you want to download) |
| 09:56 |
FloLeBlanc |
psychomieze: thank you |
| 09:56 |
ManDay |
psychomieze: are you sure that debug is eligible for this kind of task? |
| 09:57 |
ManDay |
i want to be told about the structure of TCA - not about possible content |
| 09:59 |
psychomieze |
ManDay: it should show you both, structure of the array and content, so just ignore the content and look at the structure |
| 10:02 |
ManDay |
im new to typo - how d i call debug - where? |
| 10:08 |
psychomieze |
ManDay: best would be in your own extension. |
| 10:08 |
ManDay |
simply call it in the BE? |
| 10:09 |
ManDay |
debug( $tca )? |
| 10:09 |
PanTerra |
Goodmorning everyone |
| 10:09 |
PanTerra |
Does anyone have an idea how to time switch 2 pagecontents ? |
| 10:10 |
PanTerra |
I want a weather plugin change with the crude oil dashbord |
| 10:10 |
dinsdale07 |
:Manday I think you can call debug($var) in your .php files. |
| 10:10 |
PanTerra |
so they take up only 1 place on the page |
| 10:10 |
PanTerra |
and switch every 20 secs or so |
| 10:11 |
ManDay |
so, dinsdale07, call degub( $TCA ) |
| 10:11 |
ManDay |
right? |
| 10:12 |
dinsdale07 |
:Manday do you already know the Module "configuration" in the backend - there you can see your whole $TCA |
| 10:12 |
dinsdale07 |
:Manday - I'm certainly no guru in this either :-( |
| 10:13 |
ManDay |
hm |
| 10:13 |
ManDay |
module configuration vonx extdeval thingy? |
| 10:13 |
ManDay |
geez *on |
| 10:13 |
dinsdale07 |
:Manday but I think $TCA is a global array so your debug should work too if you call it in a .php file |
| 10:14 |
dinsdale07 |
no, it shoudl be there by default under "Admin tools" |
| 10:15 |
ManDay |
Does "debug" stream to stdout or does it return a string? |
| 10:16 |
ManDay |
that aint not workn |
| 10:17 |
ManDay |
and dinsdale07, same with configuration-module |
| 10:17 |
ManDay |
it outputs the content, not the structure |
| 10:18 |
davidbrunnthaler |
mh i got a little problem here.. i tried to install extdeveval", but it kept saying me that it has no permissions to create the folder in typo3conf/ext |
| 10:19 |
davidbrunnthaler |
so i changed the permissions to "rwxrwxrwx" for typo3conf and all it subfolders and subpages |
| 10:19 |
davidbrunnthaler |
but now i crashed my typo3 |
| 10:19 |
dinsdale07 |
:Manday - I have a tree structure and the content in my configuration module ... |
| 10:20 |
ManDay |
nah u aint gettin my problem |
| 10:20 |
davidbrunnthaler |
if i open in my browser domain/typo3 it keeps telling me: http://paste.phlogi.net/-517d90dd36/ |
| 10:20 |
ManDay |
i dont want the _content structured_ |
| 10:20 |
ManDay |
i want the STRUCTURE itsself |
| 10:20 |
davidbrunnthaler |
someone who knows what to do? |
| 10:21 |
ManDay |
just as the documentation of $TCA but without the elaborate explanations |
| 10:25 |
ManDay |
Another question: |
| 10:25 |
ManDay |
What will I have to put into a most basic template to load a custom CSS |
| 10:25 |
ManDay |
? |
| 10:27 |
kraftb |
hey ! |
| 10:27 |
kraftb |
anybody wants to purchase a package of biros with a TYPO3 logo on them ? |
| 10:27 |
kraftb |
i am going to order 500 TYPO3 biros (ball-pen) .... |
| 10:28 |
kraftb |
500 pieces are about 80,00 ... but thats just the biros themselves ... i just sent an inquiry how much the logo-print would cost |
| 10:33 |
ManDay |
HOW TO implement a TRE in the frontend? |
| 10:35 |
psychomieze |
kraftb: cool. I would take some. |
| 10:42 |
dinsdale07 |
kraftb: sounds interesting - where are you located (country) |
| 10:46 |
Denyerek |
Hey chaps.# |
| 10:48 |
kraftb |
hey psychomieze, dinsdale ... |
| 10:48 |
kraftb |
i am located in austria / europe |
| 10:49 |
kraftb |
but I think shipping will not cost too much if we use traditional post instead of DPD/UPS/etc. |
| 10:49 |
kraftb |
but I am still waiting for the quote of the company printing the biros |
| 10:49 |
kraftb |
the link is: |
| 10:49 |
kraftb |
http://www.giveaways.at/artikel.php?artno=33304&id=4&id2=7&page=0 |
| 10:50 |
Denyerec |
Ouch, their website is wrecked in Opera. |
| 10:54 |
dinsdale07 |
I like it - doesn't seem flimsy as other pens although its plastic. |
| 10:57 |
dokma |
Denyerec: :) |
| 10:57 |
dokma |
anyone seen Phlogi around? |
| 10:57 |
dokma |
today |
| 11:02 |
Denyerec |
NOpe. |
| 11:03 |
kraftb |
if any of you wants to have some of the pens write me a mail at: (obscured mail address) - stating how many of the pens you would like - and in which country you live. |
| 11:03 |
kraftb |
i will try to get a good price - and also do more enquires at other companies |
| 11:04 |
kraftb |
(it was just the first company which showed up at the google ads when typing "Werbemittel" (advertising gadgets) |
| 11:08 |
foool |
I need help with symlinks, can anyone help moi? |
| 11:15 |
magaritta |
please help me to change encoding from Western to Unicode in typo3 |
| 11:17 |
magaritta |
in admin function |
| 11:19 |
magaritta |
please help me to change encoding from Western to Unicode in typo3 |
| 11:19 |
emiles |
magaritta: it's in the wiki. |
| 11:20 |
magaritta |
can you send me the link |
| 11:21 |
emiles |
magaritta: no, but you'll find it with google |
| 11:21 |
magaritta |
yes, but i dont search it out |
| 11:21 |
magaritta |
help me |
| 11:22 |
emiles |
utf8 |
| 11:27 |
dinsdale07 |
I'm stuck - I have extended tt_news by an image field for the list view and I want to control this image via typoscript (height/width) |
| 11:28 |
dinsdale07 |
It doesn't show up in the object browser because I extended tt_news with this function: |
| 11:29 |
dinsdale07 |
function extraItemMarkerProcessor($markerArray, $row, $lConf, &$pObj) |
| 11:29 |
dinsdale07 |
All that is showing up in the object browser is from the pi class in the pi folder. |
| 12:26 |
ManDay |
Where can I find information on the object by the name "cObj" which appears to be available in classes which are derived from pibase ??? |
| 12:30 |
Denyerec |
good question |
| 12:30 |
Denyerec |
: |
| 12:31 |
ManDay |
... great, I appreciate your endorsement... |
| 12:42 |
pmk65 |
ManDay: cObj is defined in \typo3\sysext\cms\tslib\class.tslib_content.php |
| 12:49 |
geierAL |
hi |
| 12:50 |
geierAL |
i upload files into DAM, but some files (too often) get corrupted, and i cant find the reason.. could someone help? |
| 12:55 |
dinsdale` |
are you using imagemagick or graphicmagick? Is the preview or derived images corrupted or the whole file? |
| 12:56 |
geierAL |
dinsdale`, the whole file is corrupted, i m using imagemagick |
| 13:00 |
geierAL |
dinsdale`, i have the same thing also with some pdfs which are uploaded too.. |
| 13:04 |
dinsdale` |
hm - webserver the culprit? Are these files bigger than an upload limit perhaps? |
| 13:07 |
geierAL |
dinsdale`, let me check |
| 13:13 |
geierAL |
dinsdale`, none of the hits the upload limit size |
| 13:14 |
HardPhuck |
guys if i get 404 pages with realurl what could i be doing wrong? |
| 13:16 |
emiles |
HardPhuck: .htaccess |
| 13:17 |
HardPhuck |
my guess to, everything else seems correct |
| 13:21 |
HardPhuck |
hm, htaccess also fine |
| 13:22 |
emiles |
well if you get a 404 error, it's most likely not fine |
| 13:23 |
emiles |
or ignored |
| 13:23 |
emiles |
or you don't have mod_rewrite installed.. |
| 13:24 |
HardPhuck |
mod_rewrite is installed so the only option left is that the file is ignored |
| 13:24 |
HardPhuck |
i'll ask server admin to check it otu |
| 13:24 |
HardPhuck |
out |
| 13:25 |
emiles |
a look at the server logfiles might help too |
| 13:25 |
HardPhuck |
ok, thank you will try that but i need to wait for the admin to come back |
| 13:31 |
geierAL |
dinsdale`, i compared 2 files i uploaded now with hex editor, 1 workin and another not.. the big difference is, EOF is missing in one of them, how can this happen? |
| 14:18 |
pmk65 |
does anyone here have experince in setting up tt_news for RSS feeds? |
| 14:20 |
pmk65 |
I have a weird problem. If plugin.tt_news.archive is set to some value , then there's no output in my RSS, but if I clear plugin.tt_news.archive then the RSS data appears. |
| 14:40 |
kraftb |
hey ... |
| 14:40 |
kraftb |
psychomieze: you are susanne ? right ? |
| 14:41 |
psychomieze |
kraftb: yes |
| 14:42 |
kraftb |
http://wiki.typo3.org/index.php/Marketing/Advertising_products |
| 14:42 |
kraftb |
add yourself to the list ... |
| 14:42 |
kraftb |
i'll write a post on t3-english and german |
| 14:44 |
psychomieze |
ok, just added myself... |
| 14:44 |
kraftb |
dinsdale ... |
| 14:44 |
kraftb |
you also asked me for biros ? |
| 14:47 |
animan |
hi, can someone to help me with this: http://paste.phlogi.net/htmlcss_i/ |
| 14:49 |
psychomieze |
kraftb: if we need 5000 or more we can consider this page: http://www.giffits.de ;-) |
| 15:00 |
animan |
correction, phpfi shows: http://phpfi.com/342343 |
| 15:19 |
kraftb |
hmm ... i think i'll first only order 500 ... |
| 15:19 |
kraftb |
and if there is requirement for more well have a loop for cheaper producers |
| 15:19 |
swemark |
currently becnhmarking a typo3/apache site |
| 15:20 |
swemark |
it manages 500+req/s |
| 15:46 |
FloLeBlanc |
re, does anyone know by chance if it is possible to give a form element an ID when creating it with the t3 native FORM($conf,$formData) function? (typo3 4.0.x) |
| 15:47 |
smurfslayer |
hi there |
| 15:47 |
chefan |
hi |
| 15:47 |
smurfslayer |
is there a possibility to replace the standard error messages - i.e. if the database connection is gone? |
| 15:49 |
chefan |
some premade typo3 functionality, or just "some way"? |
| 15:51 |
pmk65 |
FloLeBlanc: use the "params" parameter. Using that you should be able to add an ID to each formfield. |
| 15:51 |
FloLeBlanc |
pmk65: thank you |
| 15:52 |
pmk65 |
All the various parameters is listed in TSRef. (as TS uses the functions in cObj too) http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/8/20/ |
| 15:54 |
pmk65 |
FloLeBlanc: Im not sure you can use it, as it sets the parameters for an input TYPE, not for specific elements. :( |
| 15:55 |
FloLeBlanc |
pmk65: I googled while waiting for an answer and found something similar to your suggestion: $conf['params.']['submit'] = 'class="2get4submit"'; works for me fortunately |
| 15:55 |
FloLeBlanc |
thank you |
| 15:56 |
pmk65 |
but you'll get into problems if you have multiple INPUT fields, and want a unique ID on those. as params.input = MyID, would set the same ID on all INPUT fields. |
| 15:57 |
FloLeBlanc |
yes you are right, that was just an example tough. what I actually need is to standardize the submit buttons :) |
| 15:57 |
FloLeBlanc |
though of course not tough :) |
| 15:57 |
pmk65 |
classes is no problem, but with IDs you can only use unique ids, otherwise validation of the page will fail. |
| 15:59 |
pmk65 |
If you just want classes, thn you can do like this: http://www.typo3wizard.com/en/snippets/general-config/add-classnames-to-fields-and-buttons-in-standard-mailform.html |
| 16:00 |
FloLeBlanc |
pmk65: thx |
| 16:57 |
blubb |
blubb |
| 17:07 |
ManDay |
Can someone NOW tell me particulars on the object by the name of /cObj/ in t3lib_pibase?? |
| 17:15 |
ckoehler |
demany pants |
| 17:15 |
ckoehler |
demandy rather |
| 17:15 |
ckoehler |
cobj does most of the rendering of content elements in typo3 |
| 17:15 |
ckoehler |
it's the basis for all TS rendering |
| 17:16 |
idevelop |
hi guys |
| 17:16 |
idevelop |
i'm following a tutorial for templatevoila |
| 17:16 |
idevelop |
and i'm lost somewhere where i should add typoscript |
| 17:16 |
idevelop |
but i think it's made for an older version |
| 17:16 |
idevelop |
because i don't see the same stuff as in the screenshot |
| 17:17 |
idevelop |
does anyone here have 2 minutes to help me out |
| 17:17 |
idevelop |
? |
| 17:19 |
ManDay |
I need to find out more about the cObj and its attributes! |
| 17:19 |
ManDay |
The inline documentation is lousy! |
| 17:21 |
blubb |
ManDay: try the api doc... |
| 17:21 |
ckoehler |
ManDay: i just told you what it does |
| 17:22 |
blubb |
chefan: ping |
| 17:22 |
ckoehler |
and yes, api docs is a good one to look at, too |
| 17:22 |
blubb |
ckoehler: ;) |
| 17:22 |
ckoehler |
oh and you are welcome to improve the inline docs for the class, too, ManDay |
| 17:22 |
blubb |
http://doxygen.frozenkiwi.com/typo3/html/ |
| 17:23 |
ckoehler |
make a patch, attach to a bugreport on bugs.typo3.org, add a RFC to the core list, and you're good |
| 17:23 |
blubb |
ckoehler: inline docs is comments in sourcode or what? |
| 17:23 |
ckoehler |
i will give it my +1 |
| 17:23 |
ckoehler |
i assume so |
| 17:28 |
Beuc |
Hi. Where can I find the reference and syntax for ext_conf_template.txt? I've been looking in the documentation but I didn't find a definite reference. For example, what values may I use in "cat" and "type"? :) |
| 17:37 |
Beuc |
OK, I *guess* this is documented... in the source code then. |
| 17:40 |
chefan |
blubb: pong |
| 17:57 |
SimonSimCity |
Hi |
| 17:58 |
SimonSimCity |
I have problems with the "external link" and a multilanguage-site ... |
| 17:58 |
SimonSimCity |
I want to insert a different URL for each language .... |
| 17:59 |
SimonSimCity |
Is this possible ? and how ? |
| 18:56 |
crisb2010 |
hi there |
| 18:57 |
crisb2010 |
does one of you guys know if i can change the default title (Opens internal link in current window) in links to something more meaningful with ts? |
| 18:58 |
crisb2010 |
i googled but couldn't find a solution for this |
| 19:26 |
rapidfyredotnet |
Does upload_tmp_dir ever have to be defined in php.ini for Typo3 to upload properly? |
| 19:52 |
rapidfyredotnet |
In answer to my previous question, "Does upload_tmp_dir ever have to be defined in php.ini?"... the answer is no because Typo3 sets this value itself. BUT access to the /tmp directory needs to be granted to allow file uploading to work properly. |
| 19:53 |
rapidfyredotnet |
I just had to change my open_basedir value to allow access to /tmp |
| 21:29 |
Dynamike |
hello guys!! |
| 21:29 |
Dynamike |
how can i transfer crdate to a formatted date |
| 21:29 |
Dynamike |
? |
| 21:30 |
Dynamike |
or better: how is cdate combined? |
| 21:30 |
Dynamike |
crdate* |
| 21:43 |
Dynamike |
ok got it |
| 21:43 |
Dynamike |
used the date() function xD |
| 22:31 |
dinsdale07 |
Any tt_news wiz out there? I want to extend tt_news with image fields in a way that I'm still able to manipulate my images with the gifbuilder. |
| 22:34 |
dinsdale07 |
The problem I see is that the hook extension does not show up in typoscript while the function ($main, $conf) in the pi directory does show up but I don't know how to use it to use the hook in tt_news. |
| 22:35 |
dinsdale07 |
I'd really appreciate some pointers - banging my head against a wall for days now |
| 22:37 |
Dynamike |
dinsdale07: so you made a new extension and created a hook class in your new extension directory?! |
| 22:39 |
Dynamike |
or do you created that class in your tt_news folder? |
| 22:39 |
Dynamike |
hook class* |
| 22:40 |
Dynamike |
did you create* |
| 22:40 |
dinsdale07 |
in my new extension I have in ext_localconf.php the following line |
| 22:41 |
dinsdale07 |
$TYPO3_CONF_VARS['EXTCONF']['tt_news']['extraItemMarkerHook'][] = 'user_newscustom'; |
| 22:42 |
dinsdale07 |
and then in the root directory of the extension I have this ... |
| 22:42 |
dinsdale07 |
http://paste.phlogi.net/extend_tt/ |
| 22:43 |
dinsdale07 |
hm - let me post it again - it thinks it's TS but it's php |
| 22:43 |
Dynamike |
its php yes :) |
| 22:44 |
dinsdale07 |
well - it's says it on the tin ... :-) |
| 22:44 |
Dynamike |
do you speak german? |
| 22:45 |
dinsdale07 |
I do |
| 22:45 |
dinsdale07 |
u 2? |