| 00:07 |
ries |
hey ndee |
| 00:07 |
ries |
I know that list module can be set per default.... |
| 00:08 |
ndee |
hey ries :) |
| 00:08 |
ries |
and I 'believe' there was some custom setting for this to |
| 00:08 |
ries |
But I have no idea about details |
| 00:08 |
ndee |
you know, one of my customers needs the fe_users table sorted according to the "company" and not username. It would save him 2clicks :D |
| 00:09 |
ries |
you can change the default srtoing for an extension... |
| 00:09 |
ries |
I am sure it can be doen otherwhise aswell |
| 00:09 |
ries |
can you test a website for me and tell me how fast images are loading?? |
| 00:09 |
ries |
I build a extenion that changes the final output of a typo3 page and let the browser to load images from different images servers... |
| 00:10 |
ndee |
yep, gimme the link :) |
| 00:10 |
ndee |
I checked the TSconfig but couldn't find it |
| 00:11 |
ries |
I think you can make an extension that overrides TCA for this |
| 00:11 |
ndee |
ah I see |
| 08:55 |
MasterYin |
Hey Everyone |
| 08:56 |
MasterYin |
Is there a way to enable content-slide for a special CE? I want to place my Contact-Data on Root in rightColoum and want to slide it down to everypage in this languag |
| 08:56 |
MasterYin |
e |
| 09:09 |
_pedda_ |
hi all |
| 09:13 |
FloLeBlanc |
hi all |
| 09:16 |
MasterYin |
Moin Flo |
| 09:16 |
MasterYin |
Is there a way to enable content-slide for a special CE? I want to place my Contact-Data on Root in rightColoum and want to slide it down to everypage in this language |
| 09:16 |
_pedda_ |
hi FloLeBlanc |
| 09:16 |
_pedda_ |
MasterYin: just put that record fixed in your template |
| 09:17 |
_pedda_ |
marks.###CONTACT_INFORMATION### < lib.contact |
| 09:17 |
_pedda_ |
and lib.contact = CONTENT and so on.. |
| 09:23 |
MasterYin |
I want to set it editable for my non-Admins... So I'm searching for a way to enable sliding in the page-Modul for examble like having a checkbox in the Content-Element "slide this element down?" |
| 09:26 |
FloLeBlanc |
MasterYin: I have a TS snippet where default code is inserted if no content element is present, would that be of help? (don't know for sure what you want to achieve - would the part be empty then if the user does not provide an element that "slides down"?) |
| 09:33 |
MasterYin |
Can you send me your code? |
| 09:35 |
snooops |
Hi guys |
| 09:35 |
FloLeBlanc |
masteryin: http://www.phlogi.net/fresh/t3/tspastebin/showPost/-e4ceb50306/ |
| 09:35 |
FloLeBlanc |
hi snooops |
| 09:35 |
snooops |
i got a hmenu |
| 09:36 |
snooops |
and i want to every menu item an wrap with class="a1" to class="a10" |
| 09:36 |
snooops |
how can i do it? |
| 09:36 |
snooops |
<li>|</li> |
| 09:36 |
FloLeBlanc |
option split |
| 09:36 |
MasterYin |
thx fl |
| 09:36 |
MasterYin |
l |
| 09:36 |
MasterYin |
o |
| 09:36 |
snooops |
<li class="a1">|</li> |
| 09:36 |
snooops |
you know? |
| 09:36 |
snooops |
but i want it dynamical |
| 09:37 |
snooops |
short afk |
| 09:37 |
FloLeBlanc |
snooops: http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/3/1/ => scroll down to "optionSplit" |
| 09:43 |
snooops |
re |
| 09:43 |
snooops |
thx FloLeBlanc |
| 09:47 |
milpoer |
hi.. any freelance t3 people near Aalborg (denmark). |
| 09:52 |
_pedda_ |
MasterYin: this record would remain editable for non-admins.. |
| 09:52 |
_pedda_ |
you could create a tt_address record or even a normal content element |
| 09:52 |
_pedda_ |
select this record via ts and put it into a lib element which should go into the template on marker position then |
| 10:09 |
maholtz|WORK |
morning |
| 10:10 |
_pedda_ |
hello maholtz|WORK :) |
| 10:15 |
FloLeBlanc |
hi maholtz |
| 10:15 |
sorenmalling |
Morning everybody |
| 10:15 |
FloLeBlanc |
hi soren |
| 10:20 |
_pedda_ |
hi sorenmalling |
| 10:20 |
sorenmalling |
Hi _pedda_ and FloLeBlanc :) |
| 10:22 |
_pedda_ |
if i have an extension and i extend it with an own marker.. what do i need to do to prevent the marker being rendered in fe if there is no content for it ?! |
| 10:23 |
_pedda_ |
###SIGNUP### for example.. if signup is disabled it still renders in fe |
| 10:25 |
teppi|work |
_pedda_, fill it with an empty string |
| 10:26 |
FloLeBlanc |
if you need a default text you can use my TS example from above (09:42 for masteryin) |
| 10:26 |
teppi|work |
(if its possible) |
| 10:26 |
_pedda_ |
like this: http://pastie.org/488843 |
| 10:27 |
_pedda_ |
= ''; |
| 10:27 |
_pedda_ |
my problem is... it still shows up in fe |
| 10:27 |
teppi|work |
Oo |
| 10:27 |
_pedda_ |
although it should be replaced by ' ' |
| 10:28 |
teppi|work |
sure? i bet it isnt set somehow |
| 10:28 |
_pedda_ |
$markerArray['###EVENT_SIGNUP###'] = ''; |
| 10:28 |
_pedda_ |
should make t3 render this position with an empty string.. |
| 10:28 |
_pedda_ |
but my marker still remains |
| 10:29 |
teppi|work |
have you tried to set other chars than blank spaces? |
| 10:29 |
_pedda_ |
nope |
| 10:29 |
_pedda_ |
just a sec. |
| 10:29 |
_pedda_ |
do i need to reinstall the ext if i modify a file of it? |
| 10:29 |
teppi|work |
no |
| 10:29 |
_pedda_ |
k |
| 10:29 |
teppi|work |
but maybe you need to clear the FE cache |
| 10:30 |
_pedda_ |
hmm aptied cache and marker still renders in fe instead of being replaced by a |
| 10:30 |
_pedda_ |
'a' |
| 10:30 |
teppi|work |
then its a sure sign that the marker isnt set |
| 10:30 |
teppi|work |
:-) |
| 10:31 |
_pedda_ |
hmm |
| 10:31 |
teppi|work |
if its works in the other case |
| 10:31 |
teppi|work |
i dont know the extension |
| 10:31 |
teppi|work |
maybe the field is evaluated on another point |
| 10:31 |
teppi|work |
and the marker issnt replaced |
| 10:31 |
teppi|work |
i think thats it |
| 10:36 |
NMB |
i m having problem in typo3 admin panel in the html editor |
| 10:37 |
NMB |
the image button is not showing anymore in typo3 4.2.6 |
| 10:37 |
NMB |
should i report it as a bug? |
| 10:37 |
teppi|work |
NMB, have you tried another browser? |
| 10:37 |
teppi|work |
*an |
| 10:38 |
NMB |
i checked in firefox |
| 10:38 |
sorenmalling |
Can somebody tell me how to set avaliable buttons i rtehtmlarea on be_group level? RTE.default.showButtons and rtehtmlarea on "Minimal" doesn't have any effect, only if i set the showButtons properties in "Page Properties" |
| 10:40 |
NMB |
i have checked in IE too, it is not showing in that too |
| 10:40 |
NMB |
is that a bug? |
| 10:40 |
NMB |
coz i have used earlier versions of typo3 and it appeared there |
| 10:42 |
NMB |
should i report a bug? |
| 10:43 |
maholtz|WORK |
there is a newsgroup regarding RTE - you should ask there first |
| 10:43 |
FloLeBlanc |
sorenmalling: did you edit these values in the PageTS ? |
| 10:44 |
sorenmalling |
FloLeBlanc: No, in the tsconfig for the be_group |
| 10:44 |
FloLeBlanc |
hmm should work I think |
| 10:44 |
NMB |
maholtz|WORK: can u tell me the url of that newsgroup |
| 10:46 |
FloLeBlanc |
sorenmalling: http://www.phlogi.net/fresh/t3/tspastebin/showPost/-d1f511a54b/ => TSconfig of the usergroup |
| 10:48 |
sorenmalling |
FloLeBlanc: Perfect! Thanks! :) |
| 10:49 |
maholtz|WORK |
@NMB: http://typo3.org/community/mailing-lists/use-a-news-reader/ |
| 10:59 |
milpoer |
any freelance danes??? |
| 11:00 |
sorenmalling |
milpoer: Not freelance, but I'm an employee at a company doing TYPO3 work |
| 11:00 |
milpoer |
ok.. |
| 11:00 |
milpoer |
would like a freelance :) |
| 11:00 |
milpoer |
you know any freelance danes, and preferred near aalborg? |
| 11:06 |
SmaxTheFrog |
hi , where can i define, which columns of a table are shown in listview in backend and what the sorting criteria is ? |
| 11:13 |
pmk65 |
SmaxTheFrog: In the TCA setup.. |
| 11:14 |
pmk65 |
http://typo3.org/documentation/document-library/core-documentation/doc_core_api/4.2.0/view/4/1/ |
| 11:14 |
SmaxTheFrog |
thx |
| 11:23 |
SmaxTheFrog |
pmk65 hmm i dont seem to find in there how to change the listview (tableview) as i want to set and rearrange the diplayed fields, default is uid and i want to change that |
| 11:29 |
pmk65 |
sorting is defined in the "default_sortby" or "sortby" fields of TCA, the displayed field is controlled by the "label" fields of TCA. |
| 11:29 |
pmk65 |
I suggest you re-read the API manual , as all is described in there. |
| 11:30 |
sorenmalling |
SmaxTheFrog: Is this sorting for a extension you are about to build or for a list of elements created by another extension? |
| 11:35 |
SmaxTheFrog |
sorenmalling, i have made a backend-extension and everything is fine - data is entered in list view mode and i managed to design the forms as i wanted them to be. but the lisview of the table is not as i like , default first field is uid and sorting is by uid - i wauld like to change that |
| 11:48 |
SmaxTheFrog |
thx pmk65 |
| 12:44 |
snooops |
hey dudes, how can i define to use a pic resource of the page properties as a banner for this page and all subpages? |
| 12:59 |
snooops |
how can i access the page ressources via typoscript? |
| 13:00 |
snooops |
just with dataWrap? |
| 13:07 |
maholtz|WORK |
@snoops: file = resourcename*.jpg |
| 13:07 |
maholtz|WORK |
if your file is "resourcename.jpg" * is vor different versions |
| 13:08 |
FloLeBlanc |
how can I set which is the "first" page which is shown on my site? I created a sysfolder before creating the "root" page and now the url links to the sysfolder instead of the id=2 page :) |
| 13:14 |
snooops |
maholtz|WORK : but this is dynamical, i dont know the name of the file |
| 13:17 |
FloLeBlanc |
snooops: http://www.phlogi.net/fresh/t3/tspastebin/showPost/-1c8f8b0178/ => will take the first picture that is set in the page settings when using "advanced" for the page |
| 13:17 |
snooops |
yeah thx FloLeBlanc |
| 13:24 |
maholtz|WORK |
hehe, @snooops: yep, i did a mistake - i thought of resources in typoscript templates |
| 13:57 |
snooops |
FloLeBlanc : hmm im not able to get your script working |
| 13:59 |
maholtz|WORK |
@snooops: perhaps you cold paste your script and someone would be able to help? |
| 14:08 |
snooops |
http://paste.phlogi.net/-a24e2c5dfa/ |
| 14:08 |
snooops |
lib.teaser points to a div via TemplaVoila |
| 14:12 |
snooops |
ok now it works, thx |
| 14:15 |
maholtz|WORK |
what was the problem? |
| 14:16 |
snooops |
not sure, i just took this http://lists.netfielders.de/pipermail/typo3-german/2007-February/028077.html |
| 14:16 |
snooops |
the first for mainPic |
| 14:17 |
snooops |
its really damn i dont have my reference book with me ^^ |
| 14:17 |
maholtz|WORK |
? you know something called "www"? |
| 14:18 |
maholtz|WORK |
documentation.typo3.org could help |
| 14:18 |
maholtz|WORK |
wiki.typo3.org/TSref/typolink too |
| 14:20 |
snooops |
i like to work with a book |
| 14:20 |
snooops |
its better searchable for me |
| 14:21 |
maholtz|WORK |
in the wiki there are links... ;) |
| 14:23 |
snooops |
how i can see always all second level items of one 0 level |
| 14:23 |
snooops |
hmenu stuff |
| 14:24 |
snooops |
http://www.phlogi.net/fresh/t3/tspastebin/showPost/-1a04f7c3fd/ |
| 14:24 |
snooops |
thats my menu |
| 14:24 |
snooops |
classic ul li menu |
| 14:31 |
SmaxTheFrog |
does exec_SELECTquery check for starttime and endtime automatically ? |
| 14:31 |
maholtz |
@SmaxTheFrog: nope, use enableFields |
| 14:34 |
theconic |
hi all, is the new frontend editing out? |
| 14:39 |
maholtz |
@theconic: afaik its an sysext so it would be released with 4.3 |
| 14:43 |
theconic |
ok, i heard about it being released as extension, so i thought maybe it's already out.... |
| 14:44 |
SmaxTheFrog |
maholtz do you know if $this->cObj->enableFields(bla) is available in pages called via eID ? mine crashes ?!? |
| 14:45 |
maholtz |
cObj is IMHO not available - did you google about enableFields and eID? |
| 14:45 |
maholtz |
perhaps sys_page->enableFields could be possible...? |
| 14:45 |
maholtz |
hm.. |
| 14:45 |
maholtz |
not sure about that |
| 14:48 |
SmaxTheFrog |
your right seems both doesnt work |
| 14:57 |
theconic |
does someone use "sr_feuser_register" ? i have some questions about that frontend-registration extension... |
| 15:05 |
xv22 |
theconic: I plan to use it and have played around a bit, but I don't know if I can answer your question |
| 15:07 |
xv22 |
snooops: expAll? |
| 15:12 |
pmk65 |
SmaxTheFrog: enableFields requires the TSFE object (Which is not present in standard eID scripts, but you can activate it yourself in youe eID script.) |
| 15:17 |
theconic |
xv22: i have a page with about 100 FE usergroups (each has different rights). is it possible with this extension that |
| 15:17 |
theconic |
1. someone registers 2. selects the preferred usergroup out of a list or just types it in 3. enters a passwort for the usergroup and then |
| 15:18 |
theconic |
has an account with the rights of his usergroup he has selected |
| 15:19 |
theconic |
i dream of something like that ;) |
| 15:20 |
xv22 |
at least i know that selecting the preferred user group is possible, but i don't know about the password |
| 15:20 |
xv22 |
you can tell sr_feuser_register that all new accounts must be manually accepted by the admin instead of the password |
| 15:20 |
xv22 |
but maybe you can extend this yourself |
| 15:29 |
FloLeBlanc |
does someone have a hint what I could do wrong when content elements are not shown with templa voila? the demo text in the "preview" module is shown correctly |
| 15:34 |
FloLeBlanc |
nvm - i forgot to include CSS styled content in the template *smacks head* |
| 15:48 |
theconic |
xv22 ok then, thanks so far ;) |
| 15:52 |
FloLeBlanc |
does anyone have a hint why I can find powermail on typo3.org but not in the extension repository via the backend (typo3 4.1) - it worked for templa voila |
| 15:56 |
_pedda_ |
cu all |
| 16:00 |
FloLeBlanc |
cya pedda |
| 16:02 |
FloLeBlanc |
can someone please confirm if powermail is gone from the extension list when searching for it? I just had it in the rep and now the search doesn't find it any more :) |
| 16:44 |
f1sHMaN |
which one is the right mailing list for realURL? |
| 17:20 |
ries |
f1sHMaN: I use typo3-english.. dmitri is listening on that |
| 17:20 |
f1sHMaN |
thx! i tried but my message never shows up, perhaps i cant use attachments? |
| 17:21 |
ries |
You cannot use attachments on that list |
| 18:30 |
HardPhuck |
i made some changes to my TMENU |
| 18:30 |
HardPhuck |
but even if i refresh the cache |
| 18:30 |
HardPhuck |
those changes are not seen |
| 18:30 |
HardPhuck |
wtf? |
| 18:38 |
HardPhuck |
ah found it |
| 21:04 |
_pedda_ |
hi there |
| 21:04 |
pmk65 |
hi _pedda_ |
| 21:05 |
_pedda_ |
oh hello peter :) |
| 21:05 |
_pedda_ |
are you into flash/as too ? |
| 21:06 |
_pedda_ |
i'm playing around with a gallery actually.... it's time to learn a few new things :) |
| 21:06 |
pmk65 |
no, I once tried, but I found the way flash attaches scripts to objects so confusing. ( I never knew what script did what) |
| 21:07 |
pmk65 |
But the newer flash versions should be easier to work with. |
| 21:07 |
pmk65 |
In my current project I use SWFTools (an Open Source Flash creation tool) which is quite cool. |
| 21:07 |
pmk65 |
With that you can build flashfiles on-the-fly. |
| 21:08 |
pmk65 |
I use it for converting PDF files to SWF format, for quicker online viewing. (The flash viewer is 7Kb, where Acrobat is 30Mb+) |
| 21:09 |
pmk65 |
SWFTools works a bit linke ImageMagick (Commandline tool) http://swftools.org/ |
| 21:10 |
pmk65 |
it can also create Flash galleries from a list of images.. |
| 21:11 |
_pedda_ |
is swftool something like the flex dev kit ? |
| 21:11 |
_pedda_ |
creating swf's via writing some code |
| 21:12 |
pmk65 |
yes |
| 21:12 |
pmk65 |
but it has a lot of extra converting tools too, like PDF2SWF |
| 21:14 |
_pedda_ |
oh cool |
| 21:14 |
pmk65 |
http://www.swftools.org/flash/paper5.html |
| 21:15 |
pmk65 |
that's a PDF converted to SWF + viewer. |
| 21:15 |
_pedda_ |
hmm prehaps i should quit my job for half a year use the time to get more knowledge .. and come back as the incredible web-hulk then ;) |
| 21:16 |
_pedda_ |
there is so much stuff i would like to make use of.. but i don't have the time to learn all these things.. |
| 21:16 |
_pedda_ |
or i think i have not the time for it .. at least |
| 21:17 |
pmk65 |
true. That's why I don't try working with Flash. :) There's just too much to learn.. |
| 21:18 |
pmk65 |
2long time ago I wrote some edugames in the "Big Brother" of Flash. - "Director" |
| 21:18 |
pmk65 |
It used a language called "Lingo" which got to be the lamest programming language invented.. |
| 21:19 |
_pedda_ |
hehe |
| 21:19 |
pmk65 |
You programmed it in sentences like: Put the member of sprite("test") into cast 2 |
| 21:19 |
_pedda_ |
oh this qould |
| 21:20 |
_pedda_ |
this one would be perfect fr me |
| 21:20 |
_pedda_ |
*for |
| 21:20 |
_pedda_ |
:) |
| 21:20 |
pmk65 |
but you could also write cast(2) = sprite('test); (which is actionscript style.) |
| 21:21 |
pmk65 |
But some commands only accepted the old syntax, so the code ended up looking like crap. |
| 21:21 |
_pedda_ |
did director persist the merge of macromedia and adobe ? |
| 21:21 |
_pedda_ |
i don't think so |
| 21:22 |
_pedda_ |
hmm i will get back to my tutorial.. :) |
| 21:23 |
pmk65 |
http://www.adobe.com/products/director/ |
| 21:23 |
_pedda_ |
saw the same gallery several times realisised via jquery or mootools, but a friend of mine needs flash.... http://www.republicofcode.com/tutorials/flash/scrollbargallery/index.php |
| 21:24 |
pmk65 |
Actionscript and Javascript is both based on ECMAScript. So if you know javascript, actionscript isn't that hard to learn. |
| 21:24 |
_pedda_ |
i know.. but i know none of them :) |
| 21:26 |
pmk65 |
that tutorial looks ok.. |
| 21:27 |
pmk65 |
but I prefer JS, as you can better interact with the pics in JS. (Such as lightbox etc.) |
| 21:28 |
_pedda_ |
but the whole website of a friend of mine is made with flash.. |
| 21:29 |
_pedda_ |
so i have to use flash for the gallery as well |
| 21:29 |
_pedda_ |
i will go on with it ^^ |
| 21:41 |
spacedani |
whole website in flash? |
| 21:41 |
spacedani |
hui |
| 21:48 |
Serginger |
Greetings! Anyone knows something about tt_products? I've got just one simple question ... |
| 21:49 |
spacedani |
then write down your question ;) |
| 21:49 |
Serginger |
(typing ... ;) ) |
| 21:49 |
Serginger |
Is it possible to run a webshop with tt_products WITHOUT forcing the customer to register/login ? |
| 21:50 |
spacedani |
and how will the user buy something in your shop? |
| 21:50 |
HardPhuck |
why would you need to be registered to be able to buy? |
| 21:51 |
Serginger |
hm, he/she enters Adres+Name+Mail an there he/she goes, or am I wrong? |
| 21:51 |
spacedani |
ok |
| 21:51 |
spacedani |
right |
| 21:51 |
Serginger |
Payment ist "in Advance" only, so i'm not afraid of rip-offs by nasty customers or something... |
| 21:52 |
Serginger |
But i can't find anything concerning "tt_products without user-registration"... So i'm afraid, this is a MUST in tt_products... Am I right ...? |
| 21:53 |
Serginger |
(hope, I'm not...) |
| 21:58 |
Serginger |
hm, what's up? Any ideas about this? I just looked through reference of tt_p but didn't find anything useful... |
| 21:58 |
spacedani |
you are from germany? |
| 21:59 |
Serginger |
jep! |
| 21:59 |
spacedani |
ok. just a mom |
| 21:59 |
Serginger |
k, thx in advance! |
| 22:03 |
spacedani |
do you have sr-user-register installed? |
| 22:04 |
Serginger |
not yet... |
| 22:07 |
Serginger |
btw: you mean "sr_feuser_register"? And no, not installed yet... Just because i don't want registration on the whole website... |
| 22:08 |
spacedani |
you dont need it - that is what i can say |
| 22:09 |
spacedani |
did you look for the typoscrpt options? |
| 22:10 |
Serginger |
well, i looked through the "reference" in the manual at typo3.org ... There are only very few options concerning "login", "fe_user", "register" and so on... |
| 22:11 |
Serginger |
and none of them decides whether a registration is needed... |
| 22:13 |
Serginger |
k, so i will post this question in a forum - perhaps someone already had this problem... I just don't want to crawl deep in tt_p - just to recognize, that there alwas has to be a registration... No time for that currently... ;-/ |
| 22:13 |
spacedani |
look in the repisotory for tut_ttproducts_de |
| 22:13 |
spacedani |
maybe this will help |
| 22:15 |
Serginger |
i know this, but it's from 2006... I'll have a look anyways... (reading...) |
| 22:26 |
Serginger |
re! So the tutorial brought nothing new... |
| 22:28 |
Serginger |
But i took a look at another guys typo3 and saw, that he's got tt_products running - without any registration. So it has to be possible... At least it was possible wit tt_p 2.5.5 :) |
| 22:30 |
Serginger |
So thanks a lot for your help! Have a nice day/night - wherever you are... ^^ |
| 23:12 |
void |
if i want to create a new bug/ticket on v4 core, should i use forge or bugs.typo3.org? |
| 23:13 |
void |
aha, still bugs |
| 23:18 |
ndee |
is it somehow possible to notify a website user thru email, out of the backend? |