| 06:51 |
kevke2001 |
Good morning |
| 06:53 |
kevke2001 |
Could someone give me a hand, with embedding a youtube video? I actually did it, and it worked, but I had to adjust the heights and width and now it`s greyed out. Any idea |
| 06:56 |
kevke2001 |
http://nopaste.ch/5876e4f90fa9b22.html here you may find the code |
| 07:49 |
ray4 |
Hello :) |
| 07:51 |
ray4 |
anybody here to talk about details of the latest security announcement (typo3-sa-2009-001)? I'd like to judge how "high" High really is... |
| 07:52 |
ray4 |
For example regarding #1 - the insecure randomness. For what is that encryption key used? Passwords should be (maximum!) affected in their salts by this, and the security of the cache-page-names also shouldn't matter except if you have very secret pages. right? |
| 07:54 |
ray4 |
and #2 - session fixation should only affect logged in users when they enter the site using an external link? |
| 07:55 |
ray4 |
the remote command execution and rest of #3 also should only affect logged in users/admins? So if I fully trust my typo3 users (only site admins who have root anyway) no real additional danger except for stupidity? |
| 07:56 |
ray4 |
so nothing of this "strongly advised to update" bugs should directly enable a normal typo3 install to be hacked by a random attacker, right? |
| 08:49 |
dexcs |
hi all |
| 08:51 |
dexcs |
how is it possible to get the user's "status" from the "Front End User Extension" ? I've coded my own extension and need to know if the user is logged in or not... |
| 09:02 |
_pedda_ |
hi all |
| 09:29 |
kinea |
dexcs: in php or ts? |
| 09:29 |
dexcs |
in php |
| 09:30 |
kinea |
maybe $GLOBALS['TSFE']->loginUser? |
| 09:31 |
kinea |
i am not sure |
| 09:31 |
dexcs |
hmm, print_r on $GLOBALS['TSFE']->loginUser gives me 1111 ;-) |
| 09:32 |
kinea |
oh |
| 09:32 |
dexcs |
i'm logged in and need thinks like the address or the zip code of the logged in user |
| 09:32 |
dexcs |
but i'm not sure if i get it without an extra db query. |
| 09:34 |
kinea |
t3lib_div::debug($GLOBALS['TSFE']->fe_user); shows you something you need |
| 09:35 |
kinea |
for the query :-) |
| 09:35 |
dexcs |
ahh, cool! Thanks a lot! |
| 09:36 |
kinea |
dexcs: what extension do you develop? |
| 09:36 |
kinea |
i also work on a feuserreg extension |
| 09:37 |
dexcs |
it's an article configurator. (It's too special for the repository) |
| 09:38 |
kinea |
ah i remember you talked yesterday about it |
| 09:39 |
dexcs |
? |
| 09:39 |
dexcs |
don't think so *g* |
| 09:42 |
kinea |
strange i could swear, i have read about it. but the logs tell me, you are right , lol |
| 09:59 |
mdmanu |
hi all! |
| 09:59 |
mdmanu |
does anyone know how add the pagetree to a backend module? |
| 10:10 |
kinea |
isnt the pagetree allways there? |
| 10:11 |
kinea |
do you need a second one? |
| 10:11 |
kinea |
or you mean virtually (only the data)? |
| 10:12 |
mdmanu |
i mean, for my own backend modul |
| 10:13 |
mdmanu |
if you create a backend module with kickstarter you dont have automatical a pagetree |
| 10:14 |
kinea |
oh? |
| 10:14 |
kinea |
i thought |
| 10:15 |
kinea |
i had one in my last three extensions (also be mods) |
| 10:15 |
mdmanu |
how did you add it? |
| 10:16 |
kinea |
it was allready there |
| 10:16 |
maholtz|WORK |
afaik you can select in kickstarter? |
| 10:16 |
mdmanu |
ah cool, sometimes i have to look better :-) |
| 10:17 |
mdmanu |
thx |
| 10:17 |
kinea |
maybe it depends on "Sub- or main module?" ? |
| 10:19 |
mdmanu |
hmm i dont find it in kickstarter |
| 10:28 |
mdmanu |
ok i got it, in the web section you get a treeview |
| 10:51 |
tPl0ch |
hi there |
| 10:52 |
tPl0ch |
can I somehow configure the backend to not append "(copy)" to copied CEs? |
| 10:53 |
_pedda_ |
yes |
| 10:53 |
_pedda_ |
you can |
| 10:53 |
_pedda_ |
just a sec |
| 10:55 |
mdmanu |
is there a function in the core to check if a pid is a subpage of a other pid? |
| 10:57 |
maholtz|WORK |
you can get the rootline |
| 10:57 |
maholtz|WORK |
there is a function for that |
| 10:58 |
_pedda_ |
tPl0ch: page.TCEMAIN.table.tt_content.disablePrependAtCopy = 1 |
| 10:58 |
tPl0ch |
_pedda_:thanks |
| 10:58 |
mdmanu |
can you get the rootline also as ids? |
| 10:59 |
maholtz|WORK |
search in api for rootline |
| 11:03 |
mdmanu |
thx maholtz, t3lib_BEfunc::BEgetRootLine is exactly what i need |
| 11:06 |
pmk65 |
maholtz|WORK: For what JS library was it you needed a Lightbox? Mootools, Jquery or Prototype? (As I just extended my Slimbox extension with support for the JQuery version of Slimbox) |
| 11:08 |
tPl0ch |
pmk65: you only need prototype for a lightbox |
| 11:09 |
tPl0ch |
normally |
| 11:09 |
pmk65 |
tPl0ch: If you use the original Lightbox script (Which my ext doesn't. It uses the Slimbox variant, which is originally written for Mootools, but recently he also wrote a version for JQuery.) |
| 11:11 |
pmk65 |
Mootools & JQuery is much smaller and faster than prototype. Thats why I prefer those. |
| 11:11 |
kinea |
is it possible to get the ts conf from another extension? |
| 11:11 |
pmk65 |
kinea: Yes, but I can't remember the function you have to use. Try googling for it. |
| 11:11 |
kinea |
i did |
| 11:11 |
tPl0ch |
pmk65: yeah, I am using prototype a lot for AJAX stuff, so I its loaded anyway most of the times |
| 11:13 |
tPl0ch |
which tables do I have to truncate to clear the indexed pages for indexed_search? |
| 11:15 |
maholtz|WORK |
@pmk65: for prototype, but jquery works with prototype |
| 11:15 |
kinea |
i cant find it |
| 11:16 |
pmk65 |
If you want I can send you a testversion of my ext? (There's still a few things I need to add before I release it on TER) |
| 11:16 |
maholtz|WORK |
thanks, but i used perfectlightbox and i have not the time atm to change that |
| 11:17 |
maholtz|WORK |
do you use forge? |
| 11:17 |
pmk65 |
kinea: In your ext, try debugging $GLOBALS['TSFE'] (Be prepared for a HUGE load of vars.) Then see if you can find the info somewhere there.. |
| 11:17 |
pmk65 |
maholtz|WORK: Not for the slimbox ext. |
| 11:17 |
kinea |
ok, i think i did before, |
| 11:17 |
kinea |
i try again |
| 11:18 |
maholtz|WORK |
@kinea: you can read TS-Config globally |
| 11:18 |
maholtz|WORK |
so get the whole TS config |
| 11:18 |
pmk65 |
The only project on forge that I am involved in, is the TinyMCE RTE ext. http://forge.typo3.org/projects/show/extension-tinymce_rte |
| 11:19 |
pmk65 |
The rest of my ext I manage by myself. :) |
| 11:19 |
tPl0ch |
hmm, searchform and realurl dont get along very well, anybody has the real_url.conf part to configure realurl for indexed_search? |
| 11:19 |
maholtz|WORK |
:( i really like the possibility to cooperate via forge |
| 11:20 |
maholtz|WORK |
so everybody can see what happens |
| 11:20 |
maholtz|WORK |
for me it is an argument to decide which extension i take |
| 11:28 |
m4rtijn |
pmk65 - could you send me the beta? |
| 11:32 |
tPl0ch |
anybody knows how to configure realurl for indexed_search? |
| 11:38 |
maholtz|WORK |
? what means that? |
| 11:38 |
maholtz|WORK |
you do not need? |
| 11:40 |
pmk65 |
m4rtijn: http://www.sharemation.com/typo3test/T3X_pmkslimbox-3_0_1-z-200901221157.t3x (The static template "slimbox2" is for JQuery, the rest is for Mootools) |
| 11:46 |
kinea |
maholtz|WORK: i want to register a project on forge (my first time on forge). what modules should i configure? would you suggest to leave all avtivated? |
| 11:46 |
maholtz|WORK |
nope, disable all which you do not need |
| 11:47 |
kinea |
ok |
| 11:47 |
maholtz|WORK |
activat: issue tracking, perhaps time tracking, repository |
| 11:47 |
maholtz|WORK |
perhaps news perhaps wiki |
| 11:47 |
maholtz|WORK |
if you want to use it |
| 11:48 |
maholtz|WORK |
metrics doesnt work |
| 11:48 |
kinea |
i try so |
| 11:48 |
maholtz|WORK |
hudson is an autmatic test and buildservice - if you get it running tell me how:) |
| 11:49 |
kinea |
how does "Versions" correspond to the versions of my extension? |
| 11:53 |
kinea |
maholtz|WORK: you know how to read read TS-Config globally? |
| 11:53 |
kinea |
i searched, but failed |
| 11:55 |
kinea |
oh, i think i found it |
| 11:56 |
kinea |
i guess i make an instance of t3lib_TStemplate |
| 11:57 |
lilalinux |
ahoi |
| 11:58 |
_pedda_ |
hellas :) |
| 11:59 |
kinea |
heya |
| 12:05 |
kinea |
strange all ts config is there, only userGroupUponRegistration is missing |
| 12:23 |
lilalinux |
How can use the pid inside ATagParams? |
| 12:23 |
lilalinux |
aloha _pedda_ |
| 12:24 |
_pedda_ |
lib.body.field = uid |
| 12:24 |
_pedda_ |
lib.body.wrap = <body id="page_|" class="normal"> |
| 12:24 |
_pedda_ |
hmm.. doesn't fit your needs.. |
| 12:24 |
_pedda_ |
mom got another one.. |
| 12:24 |
lilalinux |
can I use {$pid}? |
| 12:24 |
_pedda_ |
nope |
| 12:24 |
_pedda_ |
{pages:uid} |
| 12:24 |
_pedda_ |
i think something like this |
| 12:26 |
lilalinux |
{page:uid} |
| 12:27 |
lilalinux |
nope |
| 12:31 |
lilalinux |
maybe with tagWrap |
| 12:31 |
lilalinux |
s/tagWrap/dataWrap |
| 12:35 |
lilalinux |
jup, with dataWrap one can use {field:uid} |
| 12:47 |
_pedda_ |
sorry had a call.. |
| 12:47 |
_pedda_ |
now i'm too late :P |
| 12:54 |
lilalinux |
better too late, than too early ;-) |
| 13:00 |
lilalinux |
How do I hide a page from a TMENU via TS, i.e. without setting it's field hide=1 |
| 13:03 |
lilalinux |
excludeUidList |
| 13:08 |
crisb2010 |
hi |
| 13:08 |
crisb2010 |
is someone here using direct_mail= |
| 13:10 |
lilalinux |
crisb2010: not yet, but soon |
| 13:15 |
crisb2010 |
do you know if i can use the same installation for several customers? |
| 13:16 |
tPl0ch |
how can I clear the current indexes created by indexed search |
| 13:16 |
tPl0ch |
which table do I have to truncate? |
| 13:16 |
_pedda_ |
no table |
| 13:16 |
_pedda_ |
go to info -> indexed search and click the trash icon |
| 13:17 |
_pedda_ |
@ tPl0ch |
| 13:18 |
tPl0ch |
ok |
| 13:20 |
kinea |
crisb2010: you mean for different domains? |
| 13:21 |
crisb2010 |
kinea: kind of. we have a few people that want to send emails but we don't want to do a extra installation for each of them |
| 13:22 |
kinea |
i think it should be possible, if you have different ts setups in the different trees for the customers. |
| 13:22 |
_pedda_ |
it is possible to collect a lot of projects inone pagetree.. with some kind of "subtrees" using sysfolders each project is inserted in |
| 13:22 |
kinea |
but i never DID it |
| 13:22 |
_pedda_ |
i did.. |
| 13:23 |
crisb2010 |
kinea: and then a subdomain for each client. that would be great |
| 13:23 |
_pedda_ |
but it comes along wih a lot of complications according tt_news for example.. indexed search is not that easy to configure |
| 13:24 |
_pedda_ |
if you want to yous one tt_news configuration too |
| 13:24 |
_pedda_ |
-yous + use |
| 13:24 |
lilalinux |
How do I set an attribute with ATagParams, if it's already automatically set by e.g. GMENU? |
| 13:24 |
lilalinux |
GMENU sets onmouseover, and I want to add some additional code there |
| 13:26 |
_pedda_ |
additionalParams is possible |
| 13:26 |
_pedda_ |
ATagParams as well |
| 13:28 |
_pedda_ |
for oadding additional values within atagparams which come with gmenu by default perhaps you should to use override |
| 13:28 |
_pedda_ |
-to |
| 13:34 |
lilalinux |
override? |
| 13:35 |
lilalinux |
i see |
| 13:48 |
lilalinux |
guys, how do I combine dataWrap with append? |
| 13:48 |
lilalinux |
ATagParams.append.dataWrap? |
| 13:48 |
lilalinux |
or does there belong an additional stdWrap somewhere, like _pedda_ postulates? |
| 13:51 |
lilalinux |
hm, append wouldn't help at all |
| 13:51 |
lilalinux |
How do I add something to a generated attribute? |
| 13:52 |
lilalinux |
GMENU RO already creates a mouseover, now I want to add something there |
| 13:53 |
boundless |
hi, is there any chance of breaking content elements in backend in two rows? |
| 13:54 |
_pedda_ |
boundless: quick and dirty way is fdfx_2cols (it is an extension) |
| 13:54 |
boundless |
i have four elements and a horizontal slider appears, which is odd |
| 13:54 |
boundless |
thanks, will give it a go |
| 13:54 |
m4rtijn |
boundless - what do you mean? |
| 13:55 |
m4rtijn |
in two rows in backend.. or in two rows in frontend |
| 13:55 |
boundless |
backend |
| 13:55 |
_pedda_ |
oh ok |
| 13:55 |
m4rtijn |
.. I believe what pedda means is for frontend |
| 13:55 |
_pedda_ |
yes |
| 13:55 |
boundless |
oh |
| 13:55 |
_pedda_ |
misread.. |
| 13:55 |
_pedda_ |
sorry |
| 13:56 |
boundless |
i can change the order of the elemnts in data structure xml |
| 13:56 |
m4rtijn |
could you maybe make a screenshot maybe? im not sure what u mean |
| 13:56 |
boundless |
sure |
| 13:56 |
_pedda_ |
aah you use templavoila.. |
| 13:56 |
boundless |
yes |
| 13:56 |
boundless |
should have pointed that out, sorry |
| 13:56 |
_pedda_ |
you cane modify the belayout of your tv using some code within the data structure |
| 13:57 |
_pedda_ |
-e |
| 13:57 |
boundless |
yeah, i can change the order of the elements in xml, but how would one break them in another line |
| 13:57 |
boundless |
so there is no horizontal slider |
| 13:57 |
boundless |
but like two elements per row |
| 13:58 |
_pedda_ |
http://pastebin.com/d10ea2128 |
| 13:58 |
boundless |
should have been automatic imo |
| 13:58 |
_pedda_ |
you could modify the table to suite your needs |
| 13:59 |
_pedda_ |
you could add a new tr with a td to insert your keyvisual above the two content areas, you see in my snippet, for example |
| 14:02 |
boundless |
_pedda_: where is that code from? |
| 14:03 |
_pedda_ |
<- |
| 14:03 |
_pedda_ |
why ? |
| 14:03 |
_pedda_ |
you can find some information in the docu of tv |
| 14:03 |
boundless |
i can't find the <beLayout> tag |
| 14:04 |
_pedda_ |
yes .. thats why you have to add it :) |
| 14:04 |
_pedda_ |
in order to modify the belayout |
| 14:04 |
boundless |
oh :) |
| 14:06 |
boundless |
will try, many thanks |
| 14:07 |
_pedda_ |
np |
| 14:07 |
_pedda_ |
you're welcome |
| 14:13 |
swemark |
Now for the question of the day: Can i, through typoscript, use a globalvar/string that meets a condition depending on which templavoila-template is currently in use? |
| 14:14 |
_pedda_ |
should be possible |
| 14:14 |
swemark |
Thats what it felt like at first |
| 14:15 |
_pedda_ |
ok |
| 14:15 |
_pedda_ |
hmm |
| 14:16 |
swemark |
i was thinking something like [globalVar = TSFE:page|layout = 1] |
| 14:16 |
swemark |
just need to figure out what to use instead |
| 14:16 |
_pedda_ |
would do the job if you wouldn't use tv |
| 14:16 |
_pedda_ |
right |
| 14:16 |
swemark |
yeh :/ |
| 14:16 |
_pedda_ |
hmm |
| 14:28 |
tobi_t3w |
you could try [globalVar = TSFE:page|tx_templavoila_to = number] swemark, although i dont know if its available on pages that inherit a template |
| 14:28 |
lilalinux |
m4rtijn: do you know how to append something with ATagParams to an already existing (automatically created) attribute like onmouseover? |
| 14:29 |
swemark |
tobi_t3w: ill give it a spin |
| 14:29 |
swemark |
but as you said that is an issue |
| 14:32 |
swemark |
tobi_t3w: but since all pages must have a to it think itll work |
| 15:01 |
swemark |
hwo do i print out globals? |
| 15:06 |
kinea |
t3lib_div::debug($GLOBALS['xyz']); |
| 15:13 |
tobi_t3w |
lilalinux i dont think you can append something without IProcFunc |
| 15:17 |
kinea |
maybe someone could explain the logic behind this: when i add a stdWrap around my menu (with: lib.menu_1.stdWrap.wrap) it works, when i place this ts code in one of the subpages, but not when i place it only the root page. |
| 15:19 |
maholtz|WORK |
page.10 < lib.menu_1 is executed at parsing time |
| 15:19 |
maholtz|WORK |
page.10 =< lib.menu_1 is a reference, if you use reference it should work |
| 15:19 |
maholtz|WORK |
otherwise your main template gets executed, where lib.menu_1 is copied into page.10 and after that you alter lib.menu_1 but it is not copied again in page.10 |
| 15:20 |
HardPhuck |
uhm what is php function to check if a string only contains alphanumeric |
| 15:21 |
tobi_t3w |
ctype_alnum HardPhuck |
| 15:22 |
HardPhuck |
thanx |
| 15:22 |
kinea |
maholtz|WORK: i used the object in a templavoila template |
| 15:23 |
kinea |
so i cannot use page.10 =< |
| 15:25 |
kinea |
i could make a COA with the menu and the appended object in it |
| 16:16 |
jbaptiste_j |
Greetings, I am building my first typo site, I need a menu made of two parts, on the top of the screen five thumbs which allow to select the first level of the tree menu structure, and on the left, a rather classical menu that allows to navigate subsequent levels after the first level. I currently have a working left menu that navigates the whole thing, I've been looking at the "entrylevel"... |
| 16:16 |
jbaptiste_j |
...property but idoesnt seem to allow me to only navigate levels 2 and lower from my directory. Any idea ? |
| 16:19 |
jbaptiste_j |
http://paste.phlogi.net/prolly_som/ |
| 16:25 |
maholtz|WORK |
i dont think i understood the point, but you can use entryLevel = -2 f.e. |
| 16:26 |
caliel |
is there some other template building howto after the one on the typo3 site ? |
| 16:31 |
caliel |
Gotta go. See you next time, bye. |
| 16:36 |
jbaptiste_j |
okau let me explain it another way, let us say the tree goes 1 / 1.1 / 1.2 /2 /2.1 / 2.2 I want the left menu to only show 1.1 / 1.2 for example if you are somewhere within the "1" part of the site |
| 16:36 |
maholtz|WORK |
entryLevel = 2 |
| 16:47 |
jbaptiste_j |
yes I done that, no effect |
| 16:47 |
jbaptiste_j |
# Menu 1 cObject |
| 16:47 |
jbaptiste_j |
temp.menu_1 = HMENU |
| 16:47 |
jbaptiste_j |
temp.menu_1.entrylevel = 2 |
| 16:48 |
jbaptiste_j |
even entrylevel=50 doesnt change a thing |
| 16:55 |
ray4 |
hm, now anybody here who can enlighten me on the impact of this "weak crypto key" vulnerability? What can an attacker do who's able to predict the crypto key as long as he didn't get anything like my pw-hashes or so from my system? |
| 16:58 |
maholtz|WORK |
pw-hashes for be-user has no crypto key, only md5 hash, but someone could spoof the cHash URLs i do not know when it will get critical... |
| 17:03 |
nkuttler |
jbaptiste_j: paste the whole menu TS |
| 17:03 |
jbaptiste_j |
here http://paste.phlogi.net/prolly_som/ |
| 17:06 |
nkuttler |
hm, that looks ok to me |
| 17:06 |
HardPhuck |
which pibase link function sets some post vaars |
| 17:06 |
randomresult |
jbaptiste_j: what does not work |
| 17:06 |
randomresult |
? |
| 17:06 |
tobi_t3w |
probably a spelling error, its entryLevel |
| 17:07 |
jbaptiste_j |
the whole tree structure is visible |
| 17:07 |
randomresult |
jupp... big L |
| 17:07 |
jbaptiste_j |
I would like to see only level 2 and below |
| 17:07 |
nkuttler |
oh wait, i think for relative nav you need something like entryLevel = -1 etc |
| 17:07 |
nkuttler |
not sure what you exactly want though |
| 17:07 |
randomresult |
try the entryLevel |
| 17:08 |
randomresult |
cause this is wrong for sure |
| 17:09 |
nkuttler |
oh yeah, has to be caps too |
| 17:09 |
nkuttler |
tsref ftw! |
| 17:10 |
jbaptiste_j |
i tried 1 , 2 , 50 does the same |
| 17:10 |
nkuttler |
entryLevel L majuscule |
| 17:10 |
randomresult |
but did u spelled the entryLLLLLLevel right? |
| 17:10 |
nkuttler |
jbaptiste_j: http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/8/11/ |
| 17:10 |
_pedda_ |
jbaptiste |
| 17:11 |
randomresult |
BIGGGGG LLLLLLLLLLLL |
| 17:11 |
_pedda_ |
do you have something like special = xy in your menu ? |
| 17:11 |
randomresult |
entry-->LLLLL<---evel |
| 17:11 |
jbaptiste_j |
YEAH |
| 17:11 |
randomresult |
yeah means? works? |
| 17:11 |
jbaptiste_j |
working o,n a 17 inch screen I am going blind |
| 17:11 |
randomresult |
lol |
| 17:11 |
_pedda_ |
lol |
| 17:12 |
randomresult |
im working on a 17" too... works good for me |
| 17:12 |
randomresult |
and... was that the mistake? |
| 17:12 |
jbaptiste_j |
yeah it needed a big L |
| 17:12 |
jbaptiste_j |
and entryLevel = 1 |
| 17:14 |
randomresult |
ok boys n girls |
| 17:15 |
randomresult |
im off now |
| 17:15 |
randomresult |
cu all |
| 17:16 |
_pedda_ |
jbaptiste_j: remember that TypoScript uses camel caps (entryLevel or ATagParams) |
| 17:17 |
_pedda_ |
:) |
| 17:17 |
jbaptiste_j |
Yes, I need to remember that |
| 17:18 |
_pedda_ |
everytime a command contains more than one word.. the first leter of the second, third and fourth... word becomes written capital |
| 17:18 |
_pedda_ |
letter |
| 17:18 |
_pedda_ |
i'm gonna leave now |
| 17:18 |
_pedda_ |
cu |
| 17:18 |
_pedda_ |
all |
| 17:19 |
HardPhuck |
how can i make a link and pass some get vars to it |
| 17:23 |
HardPhuck |
ugh got it :) |
| 17:23 |
HardPhuck |
now i need to pass some post vars :) |
| 17:23 |
null0_ |
$_GET["it"] ;) |
| 17:23 |
null0_ |
this is fun cause typo catches them :) |
| 17:26 |
null0_ |
oh no. easy i see |
| 17:26 |
HardPhuck |
i need to set post vars with the click |
| 17:26 |
HardPhuck |
on a button |
| 17:26 |
HardPhuck |
which is an anchor not in a form |
| 17:29 |
morin |
Hi! |
| 17:30 |
HardPhuck |
how could i set a varible in one page that would be accessible from another page? |
| 17:30 |
HardPhuck |
without get :) |
| 17:31 |
null0_ |
create a extension |
| 17:31 |
null0_ |
an |
| 17:31 |
HardPhuck |
i am creating an extension, this is part of it's functionality :D |
| 17:31 |
lilalinux |
re |
| 17:33 |
null0_ |
HardPhuck: with kickstarter? So so you can create a database with you variable |
| 17:33 |
null0_ |
or more |
| 17:33 |
maholtz|WORK |
@HardPhuck: what do you mean? you need typoscript? use session? |
| 17:34 |
HardPhuck |
hmm yes i'm just reading that a session would be appropriate |
| 17:34 |
HardPhuck |
never worked with sessions before, how do i refer to it |
| 17:35 |
HardPhuck |
$_SESSION['myvar'] = $this->piVars['search_input'] |
| 17:35 |
HardPhuck |
like this? |
| 17:38 |
HardPhuck |
found it |
| 17:39 |
null0_ |
$usersessin= $GLOBALS["HTTP_COOKIE_VARS"]["fe_typo_user"]; |
| 17:40 |
null0_ |
ok :) |
| 17:40 |
HardPhuck |
http://www.ndee.ch/typo3/?p=12 |
| 17:40 |
null0_ |
hey! great |
| 17:52 |
maholtz|WORK |
hey, there is a api to use session |
| 17:54 |
HardPhuck |
couldn'd find it |
| 17:55 |
maholtz|WORK |
http://www.typo3-unleashed.net/typo3apidocs/typo3api_4.2.1/html/da/d25/class_8tslib__feuserauth_8php-source.html#l00412 |
| 17:56 |
maholtz|WORK |
but is broken with actuall T3 Version because of security fix:( |
| 17:56 |
HardPhuck |
hm so i can't use it? |
| 17:57 |
morin |
hey does anyone know about issues getting redirected to alt_main.php instead of backend.php after login? |
| 18:05 |
lilalinux |
Why doesn't 1.NO.wrap.dataWrap work? |
| 18:07 |
tobi_t3w |
.wrap has no stdWrap, use stdWrap.dataWrap |
| 18:12 |
lilalinux |
tobi_t3w: didn't work either |
| 18:13 |
lilalinux |
1.NO.stdWrap.dataWrap |
| 18:14 |
lilalinux |
stdWrap.insertData also not |
| 18:16 |
ray4 |
maholtz: can I request a cached page when I can predict it's hash? But still if that's the case weak crypto would only be an impact if I have non-public pages in my system, right? |
| 18:18 |
ray4 |
ah, OK, by predicting chash I could pollute the typo3 cache. hmm. |
| 18:20 |
tobi_t3w |
lilalinux: gmenu or tmenu ? |
| 18:21 |
tobi_t3w |
hm allWrap.dataWrap should work for both |
| 18:26 |
TaucherMK |
how can i prevent typo3 from caching sites which are served over https? |
| 18:28 |
maltisch |
exit |
| 18:30 |
TaucherMK_ |
i'm sorry, i got a disconnect, does anyone answered to my question? |
| 18:31 |
ray4 |
no ;) |
| 18:33 |
nkuttler |
hmmm, isn't there a content->rss converter that respects workspaces? |
| 18:33 |
nkuttler |
TaucherMK_: no |
| 18:33 |
lilalinux |
tobi_t3w: gmenu |
| 18:34 |
lilalinux |
trying allwrap now |
| 18:34 |
TaucherMK_ |
ray4, nkuttler thanks, does anyone knows an answer to my question? ;-) |
| 18:35 |
lilalinux |
tobi_t3w: allWrap.dataWrap didn't work either. I'm using a GMENU |
| 18:36 |
lilalinux |
this states, that dataWrap is only available for stdWrap: http://blog.undkonsorten.com/typo3-tmenu-wrap-wrapitemandsub-allwrapallstdwrap-linkwrap |
| 18:37 |
lilalinux |
maybe allStdWrap |
| 18:47 |
lilalinux |
i think i got it |
| 18:47 |
lilalinux |
there where curly barckets for javascript, that dataWrap didn't like |
| 18:49 |
HardPhuck |
ah crap |
| 18:52 |
lilalinux |
welcome to the club |
| 18:52 |
HardPhuck |
is i set my plugin to be USER_INT will that disable the caching for my plugin completely? |
| 18:52 |
HardPhuck |
if |
| 18:52 |
lilalinux |
I wish it was possible to disable the cache completely for the development |
| 18:59 |
HardPhuck |
session is cached too :S |
| 19:04 |
omicron23 |
hi. I want to setup a homepage on which I can publish events and it should be possible for people to register for an event online. In addition to that I want to have a summary of all registered participants and if possible be able to export the data into an excel sheet or similar... is this possible using typo3? can you recommend any module that is capable of doing this? |
| 19:07 |
HardPhuck |
if i have a really long string, how can i pass it to another page |
| 19:07 |
maholtz|WORK |
@HardPhuck: with POST? |
| 19:08 |
HardPhuck |
but! what if i don't have a form :D |
| 19:09 |
maholtz|WORK |
@omicron23: cal could do the most or seminars, not sure, but if you need to be finished soon, some other solutions would be better. For starting TYPO3 is hard to learn - but you have much more possibilities. |
| 19:10 |
maholtz|WORK |
@HardPhuck: make an form:D |
| 19:10 |
HardPhuck |
i was afraid you're going to say that |
| 19:10 |
maholtz|WORK |
should it be done via javascript or serverside? |
| 19:10 |
maholtz|WORK |
you could do it via ajax |
| 19:10 |
maholtz|WORK |
(submitting a form) |
| 19:11 |
maholtz|WORK |
outch - to another domain? |
| 19:11 |
maholtz|WORK |
perhaps not |
| 19:11 |
maholtz|WORK |
should it be triggerd by user? |
| 19:11 |
maholtz|WORK |
you could send an request to your server and start an php script with curl to send data to another server |
| 19:11 |
maholtz|WORK |
just as idea |
| 19:11 |
maholtz|WORK |
but i have to go now |
| 19:11 |
maholtz|WORK |
bye |
| 19:11 |
HardPhuck |
lol :) |
| 19:11 |
HardPhuck |
thanx |
| 19:27 |
kinea |
HardPhuck: you could use sockets |
| 19:27 |
HardPhuck |
what are sockets |
| 19:27 |
kinea |
if you can use php with the extension http://de.php.net/manual/en/sockets.installation.php |
| 19:27 |
kinea |
low level data transfer |
| 19:28 |
HardPhuck |
thanx, but that's out because i can demant client to install that |
| 19:28 |
kinea |
ah you send from client to server? |
| 19:29 |
kinea |
what kind of string? |
| 19:29 |
HardPhuck |
whois data that i get with ajax |
| 19:30 |
HardPhuck |
and i want to pass that data to another page |
| 19:30 |
kinea |
you cant use ajax for the transfer? |
| 19:30 |
kinea |
ah |
| 19:30 |
kinea |
i see the problem |
| 19:30 |
HardPhuck |
well no problem, i made a small form now that should fix it |
| 19:30 |
kinea |
ajax is restricted to the same domain, right? |
| 19:31 |
HardPhuck |
well you can't use ajax if going to another page |
| 19:34 |
kinea |
HardPhuck: there are some cross domain xhr solutions (http://dojotoolkit.org/node/87 f.e) |
| 19:34 |
kinea |
just stumbled on it, never used it |
| 19:35 |
HardPhuck |
but that uses iframe which is the main reason why i'm writing this ext |
| 19:35 |
HardPhuck |
thanx anyway :) |
| 19:40 |
Yippee |
Hey I'm working around whit this $form[] = array( $this->getFieldHeader('Maps'), $this->prefixId."[group] = check" ); The problem is I have to put 2 or more in but there are only allow to choose on how can I group it. |
| 19:44 |
Yippee |
This is a ext I'm will build some new things in. No body know to the "$this->cObj->FORM" in ext? |
| 19:52 |
Yippee |
Is not just this Title | *title=select | Mr,Mrs,Ms Name | *name=input he have work on whit array |
| 19:54 |
HardPhuck |
where do i change ext_icon name |
| 19:56 |
Yippee |
Just the icon file or a name ? |
| 19:58 |
Yippee |
HardPhuck I fink your can do it in ext_tables.php |
| 19:58 |
HardPhuck |
the name if the icon |
| 19:58 |
HardPhuck |
the default is ext_icon.gif but i want to change that |
| 20:00 |
Yippee |
try to look in ext_tables.php. I hope it will help your :) |
| 20:00 |
HardPhuck |
tried, no luck... oh well i don't need it so much just playing around |
| 20:00 |
Yippee |
In the ext root folder :) |
| 20:02 |
HardPhuck |
yeah i know that, i'm just searching if this behaviour can be overriden |
| 20:02 |
Yippee |
Just for try du your have "'iconfile' => t3lib_extMgm::extRelPath($_EXTKEY).'ext_icon.gif'," in this file. |
| 20:02 |
Yippee |
Yah sry :P |
| 20:02 |
Yippee |
do* |
| 20:21 |
HardPhuck |
okay, i have a site which has a lot of typoscript |
| 20:21 |
HardPhuck |
and i need to find a plugin that is added on one page with TS |
| 20:21 |
HardPhuck |
how do i do that the fastest way |
| 20:22 |
nkuttler |
you mean the plugin is visible on every page? |
| 20:23 |
HardPhuck |
actually no |
| 20:23 |
HardPhuck |
only on one page |
| 20:23 |
nkuttler |
hm, i'd look into that page's template |
| 20:24 |
HardPhuck |
yea doing that, without success |
| 20:24 |
nkuttler |
maybe it's inserted above but not activated and it's some constant setting or something |
| 20:25 |
nkuttler |
knowing the extensions's name should make it easier to find it.. if in doubt there's the object browser has a search function |
| 21:59 |
cat123__ |
hello. i was trying to rename the typo-folder. i followed the instructions and everything seems fine, except i cant open or close any pages in the page tree. has anyone ever experienced that? |