| 08:23 |
marcuslind |
Goooood morning irc! |
| 08:24 |
paese |
hello |
| 08:29 |
marcuslind |
Hello |
| 08:55 |
FloLeBlanc |
hi all |
| 08:55 |
FloLeBlanc |
anyone using perfectlightbox? |
| 09:04 |
xaver |
good morning |
| 09:05 |
xaver |
i try to get lightbox into displayList in tt_news -> normal is Singel view |
| 09:12 |
xaver |
i found it ;) |
| 09:17 |
FloLeBlanc |
xaver that worket automatically for me |
| 09:21 |
fuchur |
mornin |
| 09:22 |
iaj` |
is there some way to "encrypt" a site url, so that users arent able to copy a link over again since the link is gradually being changed |
| 09:23 |
xaver |
FloLeBlanc: i need to enable it in perfectlightbox |
| 09:24 |
xaver |
iaj`: you need a tracker or somthing like that with a id or something and update it in a database -> if 1 time use -> database set used = 1 -> if used = 1 you cant use the site .. |
| 09:25 |
iaj` |
xaver, uhhh, sounds complicated isnt it? |
| 09:26 |
xaver |
no |
| 09:26 |
xaver |
its not so hard |
| 09:26 |
xaver |
maybe some extansion exist |
| 09:26 |
xaver |
is a fiel or a page |
| 09:31 |
iaj` |
hm but u never really did it? |
| 09:34 |
pmk65 |
morning. |
| 09:34 |
iaj` |
hiho |
| 09:35 |
pmk65 |
iaj`: the urls you want to encrypt, is that the main url, or just filelink urls? |
| 09:35 |
pmk65 |
If it's the last, you could try one of my new ext. |
| 09:35 |
pmk65 |
http://forge.typo3.org/projects/show/extension-pmkfdl |
| 09:36 |
pmk65 |
it can (among other things) encrypt/protect filelinks |
| 09:37 |
iaj` |
pmk65, wow.. looks promising |
| 09:37 |
iaj` |
lemme give it a try |
| 09:38 |
iaj` |
oh requires typo 4.2 :/ |
| 09:39 |
fuchur |
lol? |
| 09:40 |
iaj` |
huh? I'm frightened of upgrading :S |
| 09:48 |
pmk65 |
iaj`: it works on older TYPO3 versions too, just as long as you use it as a userFunc. |
| 09:50 |
iaj` |
pmk65, heh, alright, no experience with that...:/ I'm gonna try upgrading.. |
| 09:54 |
StaffanE |
iaj`: my experince of upgrading typo3 is a walk in the park |
| 09:55 |
iaj` |
StaffanE, since I cant create another table I cannot dump the current one.. |
| 09:55 |
iaj` |
this concerns me... |
| 09:55 |
Shakademus |
I got a HMENU object with two levels and want to hide the second level of a single first level entry - is that somehow possible? |
| 10:03 |
FloLeBlanc |
Can someone aid me with a typoscript snippet please? I'd like to use perfectlightbox and additionally replace the thumbnail of the image with the same image with a shadow. The code for the "shadowimage" works, the highlighted text however replaces the image AND the popup functionality http://pastebin.com/d6d475e9d |
| 10:04 |
FloLeBlanc |
shakademus: is "not in menu" an option? you can set this on the page |
| 10:05 |
FloLeBlanc |
shakademus: sorry it is called "hide in menu" - you can find it in the page properties |
| 10:07 |
Shakademus |
no, it's not - the pages are used in another menu |
| 10:07 |
Shakademus |
they wouldn't show up there as well |
| 10:07 |
FloLeBlanc |
shakademus: then you could use menu special and list the items that should be included |
| 10:08 |
Shakademus |
for the second level? mhm |
| 10:08 |
FloLeBlanc |
example: lib.menu_1.special.value = 3,4,5,6,15,11 |
| 10:09 |
FloLeBlanc |
the disadvantage is that you have to manage the menu points manually of course |
| 10:09 |
FloLeBlanc |
(if a new site gets included) |
| 10:09 |
Shakademus |
hm |
| 10:10 |
Shakademus |
not really satisfying... |
| 10:11 |
FloLeBlanc |
well the way to have a page included in all menus but one BUT not manage the special menu yourself is rather unconventional :) |
| 10:11 |
FloLeBlanc |
you could set the page to "not in menu" but then set a TS for the menues where it SHOULD be included with tt_content.menu.20.2.includeNotInMenu = 1 |
| 10:11 |
Shakademus |
hm - I think you got me wrong |
| 10:11 |
FloLeBlanc |
(the includeNotInMenu flag of course with your own menu) |
| 10:12 |
Shakademus |
example: |
| 10:12 |
Shakademus |
first level is a b c |
| 10:12 |
Shakademus |
each one has three subpages which show up in second level |
| 10:12 |
Shakademus |
a1 a2 a3, b1 b2 b3, c1 c2 c3 |
| 10:13 |
Shakademus |
and i dont want to show the second level beneath c |
| 10:13 |
Shakademus |
so the menu with c1 c2 c3 should not show up |
| 10:13 |
Shakademus |
but i cannot set pages c1 c2 c3 to be hidden in menu since they are used in another separate menu |
| 10:14 |
FloLeBlanc |
is it a suckerfish menu? (assigns class for popup 2nd level on hover)? |
| 10:14 |
Shakademus |
it's tmenu_layers |
| 10:14 |
Shakademus |
the second level |
| 10:16 |
FloLeBlanc |
hmm as I said above you could set "not in menu" and use the .includeNotInMenu flag in the TS of the menus where you WANT it included |
| 10:17 |
FloLeBlanc |
a "dirty" fix could be to use option split to assign a class without :hover defined to the menu point that should show no submenu |
| 10:18 |
pmk65 |
Easiest solution would be to write an iprocfunc, and let that remove the 1st menuitem from the menuarray. |
| 10:22 |
Shakademus |
I think FloLeBlancs idea of building but hiding the menu sound good - optionsplit is no problem since it's actually the last entry |
| 10:38 |
j45on |
hi, where can I get teplates for typo3? |
| 10:39 |
fuchur |
google |
| 10:42 |
j45on |
is there a specific depository? |
| 10:43 |
fuchur |
nope |
| 10:47 |
j45on |
Ruby on Rails is the CMS based on the Ruby language, is that right? |
| 10:48 |
StaffanE |
j45on: no - its a framework |
| 10:49 |
j45on |
What ruby application is the CMS? |
| 10:51 |
Denjerek |
they have a blog called "Typo" |
| 10:51 |
Denjerek |
i don't know the name of any major Rails CMS tho |
| 10:52 |
j45on |
what about railfrog? |
| 10:52 |
j45on |
I thought typo3 is php base |
| 10:53 |
StaffanE |
j45on: TYPO3 is phpbased |
| 10:55 |
FloLeBlanc |
sorry for reposting, have trouble finding a solution: Can someone aid me with a typoscript snippet please? I'd like to use perfectlightbox and additionally replace the thumbnail of the image with the same image with a shadow. The code for the "shadowimage" works, the highlighted text however replaces the image AND the popup functionality http://pastebin.com/d6d475e9d |
| 10:55 |
j45on |
if RoR is a framework, so its purpose is for people who wanted to design a custom CMS ground up and Railfrog is for those who wanted a ready solution.Am I right? |
| 10:56 |
fuchur |
j45on this is #typo3 |
| 10:56 |
fuchur |
^^ |
| 10:57 |
fuchur |
typo3 is a php cms |
| 10:57 |
fuchur |
probably your questions would be answered better in #rails oder #ruby ^^ |
| 10:58 |
j45on |
omg, im so confused lol |
| 10:58 |
j45on |
sorry for that, i was reading on typo3 and then was googling rails |
| 10:59 |
j45on |
how old is typo3? |
| 11:05 |
marcuslind |
How do I make my header/logotype a link to the index site without mapping it? I just want to add a link area. It disepears when I load the template. |
| 11:06 |
marcuslind |
I'm creating a template that I will use for future TYPO3 websites. I know that most logotypes wont be bigger then a certain size |
| 11:06 |
marcuslind |
so I was thinking of making a transparent <a href=""><img src="transparent.gif" /></a> |
| 11:07 |
marcuslind |
How do I make the template "keep" this code when it's loaded? |
| 11:21 |
pmk65 |
marcuslind: make sure the html is valid, otherwise options like Tidy will remove it. Also make sure that the part is not inside the part you are mapping up. |
| 11:21 |
pmk65 |
I think Tidy removes empty A tags, so try setting an URL on the link. |
| 11:22 |
marcuslind |
pmk65: thanks. |
| 11:22 |
marcuslind |
Will try it out. |
| 11:30 |
marcuslind |
pmk65: Thank you for ur tip, it worked out perfect. |
| 12:03 |
StaffanE |
I see that my rant about bugs.typo3.org seems to have had som effect - negativ bugtrends for two days now |
| 12:06 |
fuchur |
mh |
| 12:06 |
fuchur |
i don't think so |
| 12:08 |
StaffanE |
fuchur: It will be intressting in seeing the trend in a week or two |
| 12:08 |
fuchur |
yep |
| 12:10 |
StaffanE |
intressting that the project seems to run to seperate bugtrackers. forge and bugs |
| 12:11 |
FloLeBlanc |
I was able to solve my question finally - nvm it |
| 12:34 |
bitcrusher |
hi guys |
| 12:35 |
bitcrusher |
i've got a problem with a TMENU, i want to output an ul li with the menuitems, but i do not want it to output the pagename/text in the atag, instead i want to out (space) in it |
| 12:36 |
bitcrusher |
but keep in mind i still need the <a> tag |
| 12:36 |
bitcrusher |
any takers? ;) |
| 12:38 |
pmk65 |
for all menu items? |
| 12:38 |
bitcrusher |
hi pmk65 |
| 12:38 |
bitcrusher |
well, in that tmenu atleast |
| 12:39 |
pmk65 |
if you want that for all menu items, then add this inside your NO part.: |
| 12:39 |
pmk65 |
stdWrap > |
| 12:39 |
pmk65 |
stdWrap.value = |
| 12:40 |
pmk65 |
all TMENU objects contains a "hidden" stdWrap which is the one that returns the pagetitle |
| 12:41 |
bitcrusher |
so it should be NO.stdWrap > NO.stdWrap.value, right? |
| 12:42 |
bitcrusher |
what i meant was |
| 12:42 |
bitcrusher |
NO.stdWrap > |
| 12:42 |
bitcrusher |
NO.stdWrap.value = |
| 12:42 |
bitcrusher |
that seems to have no effect |
| 12:43 |
pmk65 |
post your TS code |
| 12:43 |
bitcrusher |
in the channel or pm? |
| 12:43 |
pmk65 |
http://t3paste.org/ |
| 12:44 |
bitcrusher |
http://paste.phlogi.net/-5bd919c741/ |
| 12:44 |
fuchur |
mh |
| 12:44 |
fuchur |
who's gonna register t3.de on 23rd oct. |
| 12:44 |
fuchur |
? |
| 12:44 |
fuchur |
^^ |
| 12:44 |
bitcrusher |
fuchur: sorry, not this time |
| 12:44 |
bitcrusher |
:-/ |
| 12:45 |
fuchur |
i'll try ;) |
| 12:45 |
pmk65 |
bitcrusher> That should work (but you also need to do it for the ACT part.) |
| 12:46 |
pmk65 |
bitcrusher> you could also write a small iprocfunc, and clear the menutitles before the menu is rendered. |
| 12:46 |
bitcrusher |
never tried making iprocfuns |
| 12:46 |
bitcrusher |
iprocfuncs |
| 12:47 |
pmk65 |
there's a couple example iproc functions in the media folder of TYPO3 |
| 12:47 |
bitcrusher |
no luck with it :-/ |
| 12:48 |
pmk65 |
does it still show the titles, even after you added the stdWrap stuff? |
| 12:48 |
bitcrusher |
yup |
| 12:49 |
pmk65 |
weird. a "stdWrap >" should remove the output part. |
| 12:50 |
bitcrusher |
whats the complete path for the media folder in the typo3_src folder? |
| 12:52 |
bitcrusher |
is it in /typo3/sysext/cms/tslib/media/ ? |
| 12:52 |
pmk65 |
typo3\sysext\cms\tslib\media\scripts\ |
| 12:52 |
bitcrusher |
heh |
| 12:55 |
StaffanE |
pmk65: stdwrap is usually stdwrap < |
| 12:56 |
bitcrusher |
so NO.stdWrap < instead of NO.stdWrap > |
| 12:56 |
bitcrusher |
? |
| 12:56 |
pmk65 |
StaffanE> No. If you want to clear a property you do "property >" but if you want to copy something into a property you use "property < other" |
| 13:02 |
bitcrusher |
pmk65: thank you very much, stdWrap.field = subtitle did the trick for clearing the a tags value :) |
| 13:09 |
pmk65 |
iaj`: If you want to try my pmkfdl ext, then you can grab the latest version in T3X format here -> http://dl.getdropbox.com/u/2108786/T3X_pmkfdl-0_1_7-z-200910161240.t3x |
| 13:11 |
iaj` |
pmk65, pretty nice, thanks :-) I'm gonna try it out and give you some feedback, hopefully I'll get it working - need to wait for remote access on the server to upgrade to 4.2x |
| 13:16 |
HardPhuck |
i'll go nuts i have sr_freecap installed on my site |
| 13:17 |
HardPhuck |
but the verification code is allways wrong |
| 13:18 |
Denjerek |
lol |
| 13:21 |
HardPhuck |
but it's not only sr_freecap |
| 13:21 |
HardPhuck |
the strange thing thing is i get validation errors on all captchas |
| 13:21 |
HardPhuck |
seems like a session problem, but if i test it directly it's working |
| 13:38 |
jbaptiste_j |
just a wild guess : tried to deactivate the cache on pages with captchas ? |
| 13:45 |
iaj` |
whats the best way to get rid of that (copy 1) stuff when copying ces |
| 13:46 |
maholtz|WORK |
@iaj`imho there is a TSconfig option |
| 13:47 |
iaj` |
searched but couldnt find. |
| 13:51 |
HardPhuck |
jbaptiste_j: i have, didn't help |
| 13:51 |
HardPhuck |
i have several captchas on the server and it seems they all fail validating the code |
| 14:04 |
maholtz|WORK |
@HardPhuck: perhaps trouble with session fixation fix? |
| 14:05 |
marcuslind |
Anyone have the slightest idea of why I cant chose any Page Template Structure on one of my pages but it works flawless on every other page. |
| 14:05 |
HardPhuck |
maholtz not sure, because i can log in typo3 site normally |
| 14:07 |
HardPhuck |
which suggests sessions are working |
| 14:07 |
HardPhuck |
or do captchas normally use another approach that i'm not aware of |
| 14:09 |
marcuslind |
I found the problem, had to change the sysfolder under "General Storage" option |
| 14:35 |
xaver |
can i in tt_products use different 4 prices (i know new tabel cols) with fe_user with 4 groups |
| 14:37 |
HardPhuck |
hmmm maybe it has something with suhosin |
| 15:51 |
bitcrusher |
have a nice weekend folks, im out! :d |
| 15:51 |
bitcrusher |
:D |
| 16:24 |
marcuslind |
Anyone know how to configure RealURL Plugin correctly? I end up with errors and errors... Is there no standard configuration for the localconf.php? |
| 16:26 |
jbaptiste_j |
pedda has a nice wiki about that |
| 16:26 |
marcuslind |
What's pedda? |
| 16:27 |
marcuslind |
url? |
| 16:29 |
pmk65 |
marcuslind: I can recommend this RealUrl addon ext. -> http://typo3.org/extensions/repository/view/danp_realurlconfigurator/current/ |
| 16:30 |
pmk65 |
99% of the times, the default config generated with that ext works perfectly. |
| 16:30 |
marcuslind |
OK thanks pmk65 |
| 16:31 |
marcuslind |
works great even though Alpha stage? |
| 16:32 |
pmk65 |
The Alpha,Beta, Stable states has no meaning, as its the ext author who defines what state he wants to put on his ext. |
| 16:33 |
pmk65 |
So you can find a lot of "Stable" ext, which is extremely buggy. |
| 16:34 |
pmk65 |
As a general rule, then only about 10% of the ext on TER is really usable. |
| 16:34 |
pmk65 |
the rest is crap, outdated ext. |
| 16:39 |
marcuslind |
pmk65: OK |
| 16:39 |
marcuslind |
I installed the extension u linked to me. |
| 16:39 |
marcuslind |
I went to basic configuration, it was cleared there. |
| 16:39 |
marcuslind |
but now the link on my site link to .html documents that doesnt exist. |
| 16:39 |
marcuslind |
Ex the link "Products" links to the adress "http://mysite.com/products.html" |
| 16:40 |
marcuslind |
Do I have to remove the realurl config in localconf.php? Or can I let it be? |
| 16:40 |
marcuslind |
Do i have to set anything in my template records? |
| 16:40 |
marcuslind |
There are no manual. |
| 16:40 |
pmk65 |
you need to enable .htaccess and set the correct TS config values. |
| 16:41 |
pmk65 |
that is explained in the realurl manual. |
| 16:41 |
marcuslind |
That I've done. BaseURL, activate the plugin etc. |
| 16:41 |
marcuslind |
and I've added the .htaccess |
| 16:42 |
marcuslind |
It's just the links were changed now with this plugin with a .html extension on each. |
| 16:43 |
flipmoe |
i have a custom backend module |
| 16:43 |
flipmoe |
but the content of it isn't scrollable |
| 16:43 |
flipmoe |
how can i sove that problem? |
| 16:44 |
pmk65 |
marcuslind: thats the correct behaviour. But if your .htaccess is wrong, you'll get an error. |
| 16:45 |
pmk65 |
flipmoe: wrap the content in a DIV with "overflow: scroll" CSS set. |
| 16:45 |
flipmoe |
where can i set the css rules for it? |
| 16:45 |
pmk65 |
or overflow: auto, if you don't want to display the scrollbars. |
| 16:46 |
flipmoe |
i want to display the scrollbars |
| 16:46 |
marcuslind |
pmk65: OK. I'll look into it... But I only have to save the .htaccess file to the htdocs directory dont I? When I save it there I can't see it in the directory but when I save it for the second time it says "Are you sure you want to replace .htaccess?" |
| 16:46 |
pmk65 |
flipmoe: Inline Styles, External Stylesheet, etc. depends on your setup/ext. |
| 16:46 |
flipmoe |
ok... |
| 16:46 |
flipmoe |
;-) |
| 16:46 |
flipmoe |
thx |
| 16:46 |
pmk65 |
marcuslind: on my sites, it's usually enough just to rename the default _.htaccess to .htaccess |
| 16:47 |
marcuslind |
ye that's what I did the first time. |
| 16:47 |
pmk65 |
the one in the TYPO3 folder |
| 16:49 |
marcuslind |
I manage to get it working with printing localhost/?id=37 instead of the filename. Atleast I got some progress |
| 16:49 |
marcuslind |
i end work now |
| 16:49 |
marcuslind |
thanks for the help. |
| 16:49 |
marcuslind |
Have a great weekend everyone! |
| 16:49 |
BejjWrk |
Cya :) |
| 16:52 |
pmk65 |
Im off. Have a nice weekend.. |
| 16:55 |
BejjWrk |
me too |
| 16:55 |
BejjWrk |
cya |
| 17:03 |
schabracke |
hey! |
| 17:04 |
schabracke |
i have a question about rgslideshow ext |
| 17:05 |
schabracke |
how can i scale the semitransparent description box? |
| 17:42 |
schabracke |
...found it |
| 17:44 |
skurfuerst |
hey |
| 17:51 |
schabracke |
hey there! |