[TYPO3] How to remove breaking news from latest news tt_news

2007-04-02 Thread dave typo
What php file do you edit in ttnews to remove the 'breaking news' message from the latest view in tt_news? I have done it before, but can't seem to find it. I'm using ttnews 2.40 so that might be the reason why. But I'm weary of upgrading. Are there any problems upgrading ttnews from 2.40 to 2.50

Re: [TYPO3] How to remove breaking news from latest news tt_news SOLVED

2007-04-02 Thread dave typo
nm, I got it. ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english

[TYPO3] LONG: help ! how to get css drop down menus working in typo3 on firefox and internet explorer?

2007-04-20 Thread dave typo
Hello all, I have struggled with drop down menus in typo3. So thank you all in advance for your input and experience. How can i get a css based drop down menu to work in typo3? It works completely fine on a regular html page, but once the page is within a typo3 site the dropdown menu no longer wor

Re: [TYPO3] LONG: help ! how to get css drop down menus working in typo3 on firefox and internet explorer?

2007-04-20 Thread dave typo
ts out content so if you've constructed your menu correctly > then it will work. > > First check that the html is exactly the same as your static version, > then check to make sure that the related css and javascript files are > being included (actually included and that the path

Re: [TYPO3] LONG: help ! how to get css drop down menus working in typo3 on firefox and internet explorer?

2007-04-20 Thread dave typo
, but i think that might just lead to trouble once within typo3. so, off subject a little there, but how do i check for javascript errors? thanks, -dave On 4/20/07, Bernd Wilke <[EMAIL PROTECTED]> wrote: > On Fri, 20 Apr 2007 14:26:40 +0200, dave typo wrote > with subject "[

Re: [TYPO3] LONG: help ! how to get css drop down menus working in typo3 on firefox and internet explorer?

2007-04-20 Thread dave typo
x oh, and stupidly, the problem was that i was missing page.headerData.2 = TEXT page.headerData.2.value = in my template setup. DUH! Now, on to solving the firefox mystery! any help? -dave On 4/20/07, dave typo <[EMAIL PROTECTED]> wrote: > the dropdown menus work on an html

Re: [TYPO3] LONG: help ! how to get css drop down menus working in typo3 on firefox and internet explorer?

2007-04-23 Thread dave typo
://www.spannerworks.com > > The advantage of this technique is that it does not require JS at all. > > As far as I can remember it works across the board in IE5.5+, Firefox, > Opera & Safari. > > Hope this helps, > > Oliver > > dave typo wrote: > > He

[TYPO3] GMENU - is it possible to apply properties to a single item?

2007-04-24 Thread dave typo
is it possible to apply properties to a single item within a GMENU? For example, the titles of my gmenu items are of different length, so when they are all lined up at the top, the spacing between the titles looks off. observe: 10 = TEXT 10.text.field = title 10.offset = 20,15

[TYPO3] please help me adapt this code snippet into templavoila. For me it isnt working :(

2007-04-24 Thread dave typo
This snippet was taken from typo3wizard.com, and I am having trouble adapting it into templavoila. I figured it would be easy, simply changing the temp.gmenulayers to my templavoila mapped portion, lib.topMenu.gmenulayers however this doesn't work either. Here is the code from typo3wizard: temp.

[TYPO3] one loginname for both backend and frontend restricted access?

2007-05-04 Thread dave typo
Hi everyone, I'm looking to have a single login box so that a user can type in his login name and have the option to go into the backend, or, to stay in the frontend and access some restricted content. Now I've looked into the extension repository and found the FEUser-BELogin (dkd_feuser_belogin)

[TYPO3] could someone please paste the correct TS syntax to make a gifbuilder gif become a hyperlink?

2007-05-04 Thread dave typo
how can i make a gifbuilder gif have a hyperlink in my TS setup? I figure that the line IMGMENU.url = http://www.google.com should go somewhere, (ie within the text section) but I do not know the correct syntax could you please help me out? where would it go in this code: lib.mess=IMAGE lib.

Re: [TYPO3] could someone please paste the correct TS syntax to make a gifbuilder gif become a hyperlink?

2007-05-07 Thread dave typo
great thank you, but is there a way of putting a different std wrap within each part of the array? ie, what is the syntax to put the wrap in here: lib.mess=IMAGE lib.mess.file=GIFBUILDER lib.mess.file{ XY=770,100 backColor = #FF 10=TEXT 10{ text=Rock n Roll stdWrap.typolink.parameter

[TYPO3] is there a way to make a specific div tag hidden without a front end login?

2007-05-08 Thread dave typo
I need a specific tag to be hidden unless a user has logged into the site within a specific user group. Is this possible? I was looking at javascript solutions that appeared to work within html pages, but this approach doesn't appear to work within typo3 Is there some typoscript that can allow me

Re: [TYPO3] is there a way to make a specific div tag hidden without a front end login?

2007-05-09 Thread dave typo
ndition on the user group. > > check into the global var section of conditions in TSref > > [globalVar = TSFE:XX] > blah.10=HTML > blah.10.value( > > ) > > [else] > blah.10 = HTML > blah.10.value= > [global] > > hth > > > &g

[TYPO3] php help in regards to frontend logins

2007-05-09 Thread dave typo
Hi I'm trying to make it so that the marker ###DOWNLOAD_LINK### within a php file only displays when a frontend user (belonging to a specific group) is logged in so I added the lineif ($HTTP_COOKIE_VARS["fe_typo_user"]) { to the following: if ($HTTP_COOKIE_VARS["fe_typo_user"]) {

Re: [TYPO3] php help in regards to frontend logins

2007-05-09 Thread dave typo
so are we looking at syntax like this? if ($logged = $GLOBALS["TSFE"]->fe_user->user == 8) { $this->markContentArray["###DOWNLOAD_LINK###"] = ''; if($this->conf['addDownloadLink']) { $this->markContentArray["###DOWNLOAD_LINK###"] = 'ATagParams . '>download original i

Re: [TYPO3] php help in regards to frontend logins

2007-05-09 Thread dave typo
hmm can't seem to see the key when typing in t3lib_div::debug($logged); just says debug at the upper left hand corner with no array displayed. this is my code currently: $usergroups = explode(',', $logged['usergroups']); t3lib_div::debug($logged); if (in_array($8, usergroups)) { $t

Re: [TYPO3] php help in regards to frontend logins

2007-05-09 Thread dave typo
if($this->conf['addDownloadLink']) { $this->markContentArray["###DOWNLOAD_LINK###"] = 'ATagParams . '>download original image'; } } If you could just get me to get the debug to work, that would be great too thanks On 5/9/

[TYPO3] powerful forum (messageboard) tool?

2007-05-11 Thread dave typo
I've been using the WEC Discussion board extension on my site, but it is very limited. I was thinking of using phpBB but I don't really have any confidence in the extensions that are available (or the lack of their documentation). Has anyone had any experience setting up a forum on a typo3 site wi

[TYPO3] how do i limit a plugin to a usergroup using typoscript?

2007-05-15 Thread dave typo
for example, I have lib.topMenu < plugin.tx_dkdfeuserbelogin_pi but I can't find the typoscript under the ts ref. i assume its something like plugin.tx_dkdfeuserbelogin_pi1.usergroup = 8 or something.. anyone got the answer? thanks -dave ___ TYPO3

Re: [TYPO3] how do i limit a plugin to a usergroup using typoscript?

2007-05-15 Thread dave typo
4.1.0/view/4/1/#id3526924 > > cheers, > Bas > > dave typo wrote: > > for example, I have > > > > lib.topMenu < plugin.tx_dkdfeuserbelogin_pi > > > > but I can't find the typoscript under the ts ref. > > > > i assume its something l

[TYPO3] new login box typoscript to show forgot password link

2007-05-15 Thread dave typo
shouldnt this be enough to show the forgot password link for my newloginbox? lib.logininfo < plugin.tx_newloginbox_pi1 plugin.tx_newloginbox.storagePid_pi1 = 278 plugin.tx_newloginbox_pi1.detailsPage=278 plugin.tx_newloginbox_pi1.showForgotPassword=1 why isnt this working? __

Re: [TYPO3] new login box typoscript to show forgot password link

2007-05-15 Thread dave typo
ord link i need to copy an existing plugin on a page using typoscript? and if so, what kind of typoscript would that be? thanks for your help On 5/15/07, Bjoern Pedersen <[EMAIL PROTECTED]> wrote: > "dave typo" <[EMAIL PROTECTED]> writes: > > > shouldnt this

[TYPO3] debugging php of an extension

2007-05-22 Thread dave typo
hey whats the best way to debug an extension in typo3? what is a good debugger or a debugging method for typo3? ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3] debugging php of an extension

2007-05-22 Thread dave typo
free solution? On 5/22/07, Dmitry Dulepov <[EMAIL PROTECTED]> wrote: > dave typo wrote: > > hey whats the best way to debug an extension in typo3? what is a good > > debugger or a debugging method for typo3? > > Zend Studio Professional Edition. $299. > >

Re: [TYPO3] debugging php of an extension

2007-05-22 Thread dave typo
how is that extension different from simply using the debug() code in a php file? On 5/22/07, Bernd Wilke <[EMAIL PROTECTED]> wrote: > "dave typo" <[EMAIL PROTECTED]> schrieb im Newsbeitrag > news:[EMAIL PROTECTED] > > free solution? > > http://typo3.org/e

Re: [TYPO3] debugging php of an extension

2007-05-22 Thread dave typo
on's Unprofessional Edition £0 > > > Fr. Simon Rundell SCP > Parish of S. Thomas the Apostle, Elson > The Vicarage, 21 Elson Road, > Gosport, Hants, PO12 4BL > email: [EMAIL PROTECTED] > award winning web: www.saintthomaselson.org.uk > > -Original Message-

Re: [TYPO3] How to get "Better-login box" to show logout button immediately after logging in

2007-05-24 Thread dave typo
yeah im having the same problem. I copied the form for the status message and used it for the success message, but it didnt work properly after logging out and logging back in since the variables from the form have to be used more than once. I also considered a forward to occur in the form, ie mak

Re: [TYPO3] How to get "Better-login box" to show logout button immediately after logging in

2007-05-24 Thread dave typo
use this extension instead loginbox_macmade http://typo3.org/extensions/repository/view/loginbox_macmade/0.3.4/ its better. On 5/24/07, dave typo <[EMAIL PROTECTED]> wrote: > yeah im having the same problem. I copied the form for the status > message and used it for the suc

[TYPO3] http post files returns error: 4 after looking at debug - how do I find out what those errors are and where they are?

2007-05-25 Thread dave typo
when I type debug($GLOBALS["HTTP_POST_FILES"]); within an if statement, I get a return output that says: userfile name type tmp_name error4 size 0 so my question is, how d

[TYPO3] help with understanding how pi1 class php files relate to the database

2007-05-29 Thread dave typo
Hi there list, I'm trying to add more functionality to a current extension, and am having trouble getting it to work... I believe it is not working because HTTP_POST_FILES is not handled correctly, (in this case, with tt_news). Where can I learn more about how HTTP_POST_FILES works in relation

[TYPO3] noobish php help

2007-05-31 Thread dave typo
Hi everyone, In the extension 'Frontend news submitter with RTE extension.' (fe_rtenews). Users can write ttnews articles from a frontend RTE, preview what they have done, and then submit the content to the site. Currently, the extension allows users to attach an image with the article, but they c

[TYPO3] Can a submit input in a form execute a javascript function that affects the next result?

2007-06-05 Thread dave typo
I'm trying to make a submit button submit information to a php array (which works), as well as send a javascript function that shows hidden div tags. So the form a user initially fills out sends a file and image to the database. After pushing submit, the user can see a thumbnail of the image, and

[TYPO3] cookie to retain RTE text the next time the user loads the page (without them saving)

2007-06-07 Thread dave typo
I need a cookie to save the text a user has written within an RTE to stay the next time the user loads the page. What kind of php code would I be looking at here? anyone have a link to this kind of thing? or any suggestions? thanks -dave ___ TYPO3-eng

[TYPO3] [Typo3] Watermark all images automatically via gifbuilder??

2007-06-11 Thread dave typo
Hi list , I came across an old thread from 2005 in which a Carlos describes how he has edited the gifbuilder feature of typo3 to automatically watermark all images on the site. He says that if anyone wants the script, that one should simply email him and he'd send it. However, since this message t

Re: [TYPO3] Css drop down menu problem

2007-06-13 Thread dave typo
this works: lib.mainmenu = HMENU lib.mainmenu { 1 = GMENU_LAYERS 1 { wrap=| layerStyle =position:absolute;VISIBILITY:hidden; background:#EDFAF0; border: 1px solid #A4E6AF; xPosOffset = -30 lockPosition = y expAll=1 leftOffset = 15 topOffset = 30 hideMenuWhenNot

[TYPO3] does tt news accept exe and php (malicious) mime types ?

2007-06-13 Thread dave typo
Could a user potentially upload an exe file or a php file using ttnews' file attachment property? ie: should I be concerned with malicious mime types being attached to a news file? I ask because I am trying to impliment a front-end news uploader extension, and was wondering if I need to put this

Re: [TYPO3] does tt news accept exe and php (malicious) mime types ?

2007-06-14 Thread dave typo
file types? I mean is there a standard to follow that I could look at? if anyone knows, its greatly appreciated thanks, -dave On 6/13/07, Dmitry Dulepov <[EMAIL PROTECTED]> wrote: > Hi! > > dave typo wrote: > > Could a user potentially upload an exe file or a php file us

[TYPO3] PHP help ! does this code look like it would check a file extensions, and disallow php files or exe files to be attached

2007-06-14 Thread dave typo
I'm trying to write php that disallows the posting of specific files, namely php files and exe files if someone could look over this snippet and tell me if it works or not that would be appreciated. storeFile(); } ?> I'm not a programmer, and I'm very new at php so im sure there are e

Re: [TYPO3] PHP help ! does this code look like it would check a file extensions, and disallow php files or exe files to be attached

2007-06-14 Thread dave typo
wed) { > > echo "mime type doesn't work"; > > } else { > > // Rest of the code > > } > > ?> > > > > The mime type array is not complete I think, but in my opinion this > > is a better indication if the

Re: [TYPO3] PHP help ! does this code look like it would check a file extensions, and disallow php files or exe files to be attached

2007-06-14 Thread dave typo
L('no_file')."" instead of the echo? and then make a no_file relate to the template? or what do you think? On 6/14/07, Rens Admiraal <[EMAIL PROTECTED]> wrote: > > Hi Dave, > > The code below is correct... If you want the right mime types you can > search go

Re: [TYPO3] PHP help ! does this code look like it would check a file extensions, and disallow php files or exe files to be attached

2007-06-14 Thread dave typo
what is your point dmitry? 'filename' shouldve always been 'file_name' if that's what you're referring to. unless 'filename' is something uniquely typo3. what are you trying to point out? On 6/14/07, Dmitry Dulepov <[EMAIL PROTECTED]> wrote: > > Rens Admiraal wrote: > > The code below is c

Re: [TYPO3] PHP help ! does this code look like it would check a file extensions, and disallow php files or exe files to be attached

2007-06-15 Thread dave typo
yea the function storeFile() moves the uploaded file. but Im not seeing the $_FILES array under the t3lib reference and it doesn't work when using it anyway. any help? On 6/14/07, Rens Admiraal <[EMAIL PROTECTED] > wrote: > > Dave, > > Dmitry is trying to say the $_POST array will not conta

[TYPO3] what is the fconf and how does it differ from the conf

2007-06-15 Thread dave typo
I dont understand this line that I came across while looking at extensions... // bring in the fconf. $this->fconf = $this->cObj->fconf; // function validate() { $this->validated = false; $extension = strtolower(substr(strrchr($this->attachment['name'], '.'), 1)); $

[TYPO3] Whenever I try to view an extension's php file (or any extension file) , my browser times out.

2007-06-18 Thread dave typo
Whenever I try to view an extension's php file (or any extension file) , my browser times out. Anyone else have this problem? This happens all the time for me. For example, I can't view any of the files of goof fotoboek let me know -dave ___ TYPO3-en

[TYPO3] goof_fotoboek

2007-06-19 Thread dave typo
Does this extension not exist anymore? none of the files on the extension repository display, and when downloading the t3x file, I get an error after installation! what's happened? -dave ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de h

Re: [TYPO3] goof_fotoboek

2007-06-19 Thread dave typo
. no problem here... > > http://typo3.org/extensions/repository/view/goof_fotoboek/1.7.12/info/ > ext_localconf.php/ > > > Op 19-jun-2007, om 9:44 heeft dave typo het volgende geschreven: > > > Does this extension not exist anymore? none of the files on the > &g

Re: [TYPO3] goof_fotoboek

2007-06-19 Thread dave typo
class.tx_gooffotoboek_pi1.php > > > > > > thanks, > > > > -dave > > > > On 6/19/07, Rens Admiraal <[EMAIL PROTECTED]> wrote: > >> > >> Maybe something local on your computer... no problem here... > >> > >> http://typo3

[TYPO3] my server to be purchased

2007-06-19 Thread dave typo
hey the server guys are getting a new server for the site - I know the configuration is the main thing, but what do you think of this? Dell Server with Xeon dual core 3GHz CPU, 4 GB of RAM, 143GB HDD in RAID, backup on tape 5 times a week, Linux OS, Apache Web server, MySql, PHP, Typo3, FTP. any

[TYPO3] tutorials on writing extensions? How do you make php work in typo3?

2007-06-20 Thread dave typo
Is there some tutorials online to show how to properly write extensions, using global variables and tslib and conf and everything else? I'm having a difficult time following the code that is prexisiting in various extensions, and I have generally no idea which variables to reference within the typ

[TYPO3] referencing graphicsmagick in php

2007-06-20 Thread dave typo
do i code referencing imagemagick, when using graphicsmagick? does typo3 use imagemagick code lines to call graphicsmagick? for example $GLOBALS['TYPO3_CONF_VARS']['GFX'] automatically knows what im using right? and t3lib_div.imageMagickCommand also will use graphicsmagick right? or is the

Re: [TYPO3] referencing graphicsmagick in php

2007-06-20 Thread dave typo
t; wrote: > Just configure graphical handling in teh install tool, > and use GIFBUILDER to do the work. > > Ries > On Jun 20, 2007, at 7:51 AM, dave typo wrote: > > > do i code referencing imagemagick, when using graphicsmagick? does > > typo3 use imagemagick code lin

Re: [TYPO3] referencing graphicsmagick in php

2007-06-21 Thread dave typo
yea but goof fotoboek doesn't link to the dam, which is bad. On 6/20/07, Francois Suter <[EMAIL PROTECTED]> wrote: > > Hi, > > > well, I'm trying to get an extension to watermark images using > > graphicsmagick, and i was trying to wrap my head around how to go > > about writing the php. > > > >

[TYPO3] How do I make gifbuilder work on temp generated image files ?

2007-06-25 Thread dave typo
Is there a way to make gifbuilder work on a file that is generated by typo3? For example, could I make gifbuilder affect a generated file like http://www.mysite/typo3temp/pics/4a4eb19c26.jpg ? obviously I cannot reference 4a4eb19c26.jpg in the ordinary way, because after the page is regenerated it

Re: [TYPO3] How do I make gifbuilder work on temp generated image files ?

2007-06-25 Thread dave typo
Torgalson <[EMAIL PROTECTED]> wrote: > > Hi, > > On 6/25/07, dave typo <[EMAIL PROTECTED]> wrote: > > Is there a way to make gifbuilder work on a file that is generated by > typo3? > > For example, could I make gifbuilder affect a generated file like &g

[TYPO3] upgrading typo3 4.04 to 4.1.1

2007-06-26 Thread dave typo
I want to upgrade to 4.1.1 is there any problems or patches i have to be aware of? Any reccommendations regarding upgrades? should I even upgrade? thoughts, insights, experiences appreciated. thanks -dave ___ TYPO3-english mailing list TYPO3-english@li

Re: [TYPO3] jm_gallery

2007-06-27 Thread dave typo
well looking at the extension, you need to put in this typoscript: plugin.tx_jmgallery_pi1 { list_pid = //put the number of what page your list is on album_pid = //put the number of where your album is located single_pid = // where a single image can be viewed admin {

Re: [TYPO3] RTE - linking images

2007-06-27 Thread dave typo
I'm not familiar with this, but the first thing that came to mind was permission rights. Check that both the folder, and your user (and usergroup) have permissions to view, edit and write to the folder(S). On 6/26/07, Rakowski Tomasz <[EMAIL PROTECTED]> wrote: > > Hello! > > Could you tell me

[TYPO3] php help with writing to the sql database.

2007-06-27 Thread dave typo
Currently, I am trying to make it so users can insert an overlay of text onto images that are being processed by hl_dam_gallery. I am merging the components of another extension, the Image Localization Overlay, with hl_dam_gallery. Localization overlay uses gifbuilder under its typoscript setup Es

Re: [TYPO3] php help with writing to the sql database.

2007-06-27 Thread dave typo
ende geschreven: > > > Hi! > > > > dave typo wrote: > >> I keep getting this error > >> > >> 2: SQL error: 'Unknown column 'tx_hldamgallery_fontsize' in 'field > >> list'' > >> (tt_content:387) > >>

Re: [TYPO3] php help with writing to the sql database.

2007-06-27 Thread dave typo
ables? right? -dave On 6/27/07, Dmitry Dulepov <[EMAIL PROTECTED]> wrote: > > Hi! > > dave typo wrote: > > to Dmitry: I was copying the way the other development author was > > structuring the passing of data. Had both uid and pid passed. > > Well, he did not k

Re: [TYPO3] php help with writing to the sql database.

2007-06-27 Thread dave typo
aight im using phpmyadmin to add the fields to ttcontent - I'm sure I'll post a whole other slew of problems after ! :D -thanks for your help On 6/27/07, dave typo <[EMAIL PROTECTED]> wrote: > > odd. so how do extensions without the sql file opperate, and write to a

Re: [TYPO3] php help with writing to the sql database.

2007-06-27 Thread dave typo
yeah i guess i should write some code that makes the columns then but I don't see how the previous author did this. On 6/27/07, Dmitry Dulepov <[EMAIL PROTECTED]> wrote: > > dave typo wrote: > > aight im using phpmyadmin to add the fields to ttcontent - I'

Re: [TYPO3] how to actually work with typo3?

2007-06-27 Thread dave typo
welcome to the frustrating world of typo3. I also second using templavoila. Honestly, I couldn't see myself using typo3 without it. On 6/27/07, Benjamin Todd <[EMAIL PROTECTED]> wrote: > > I'd recommend using the TemplaVoila extension > (http://typo3.org/extensions/repository/view/templavoila/

[TYPO3] image search? dam search?

2007-06-28 Thread dave typo
what search tool or extensions do you guys use for image searches and dam image searches? the only image searches that I could find in the extension repository seemed poor at best my image site is under a login, so im not sure if searches via google images would work.. thanks .dave ___

Re: [TYPO3] how to actually work with typo3?

2007-06-28 Thread dave typo
I'm pretty sure that everything typo3 is frustrating. TV or not. The interface is pretty much terrible, and the hidden instances where one must write code, or perform analyses, or grant permissions are convoluted and illogical. And the dichotomy between what is possible/impossible in the backend/f

[TYPO3] RTE & TTNEWS --> what is the variable that passes the text from the RTE to ttnews?

2007-06-29 Thread dave typo
just need the name, to better understand what I'm looking at here... ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english

[TYPO3] RTE in the backend isn't loading - I get a runtime error in IE

2007-07-09 Thread dave typo
I've been editing an extension that deals with a RTE in the frontend. I believe that my editing of it has created an error in the backend. Specifically, the RTE doesn't load, and I get a runtime error in internet explorer. here's the error that I get: each is not defined registerPlugin2("each", [

Re: [TYPO3] SOLVED: RTE in the backend isn't loading - I get a runtime error in IE

2007-07-09 Thread dave typo
SOLVED I had to remove it from "local" AND from "global", in order to unveil the release 1.5.2 which is distributed as "system" extension. -dave On 7/9/07, dave typo <[EMAIL PROTECTED]> wrote: > > I've been editing an extension that deals with a R

[TYPO3] ttnews 2.5.0 crashed frontend of typo3 4.1.1

2007-07-09 Thread dave typo
none of my ttnews categories were working in 2.40 after upgrading to typo3 4.1.1, so I decided, albeit hastily to upgrade to ttnews 2.5.0 - and now my frontend has completely crashed. Any solutions to these problems? -dave ___ TYPO3-english mailing list

Re: [TYPO3] ttnews 2.5.0 crashed frontend of typo3 4.1.1

2007-07-09 Thread dave typo
and in the meantime, does anyone have ttnews 2.40 ? On 7/9/07, dave typo <[EMAIL PROTECTED]> wrote: > > none of my ttnews categories were working in 2.40 after upgrading to typo3 > 4.1.1, so I decided, albeit hastily to upgrade to ttnews 2.5.0 - and now > my > frontend h

Re: [TYPO3] SOLVED ttnews 2.5.0 crashed frontend of typo3 4.1.1

2007-07-09 Thread dave typo
apparently it was a conflict with smooth gallery. On 7/9/07, dave typo <[EMAIL PROTECTED]> wrote: > > and in the meantime, does anyone have ttnews 2.40 ? > > On 7/9/07, dave typo <[EMAIL PROTECTED]> wrote: > > > > none of my ttnews categories were workin

Re: [TYPO3] ttnews 2.5.0 crashed frontend of typo3 4.1.1

2007-07-10 Thread dave typo
nah its cool, I solved the problem. Thanks though -dave On 7/9/07, Benjamin Harwell <[EMAIL PROTECTED]> wrote: > > Certainly, would you like me to send it directly to your gmail address? > > -Ben Harwell > > On 7/9/07, dave typo <[EMAIL PROTECTED]> wrote: > >

[TYPO3] what is a good solution for image searches in typo3?

2007-07-11 Thread dave typo
I couldnt find a good extension that allows for image searching, specifically, a dam powered frontend search. What do you guys use to search images? I was considering using google's image search but some problems have arisen... what is a viable image search for typo3? -dave __

[TYPO3] no ttnews categories saved in typo3 version 4.1.1

2007-07-11 Thread dave typo
After switching to Typo3 version 4.1.1 I noticed that no tt news categories are being saved. I figured that the problem might be solved by upgrading to news version 2.5.0, but this did not work. I then downgraded back to ttnews 2.4.0 and the categories still do not save. Does anyone have any leewa

Re: [TYPO3] no ttnews categories saved in typo3 version 4.1.1

2007-07-11 Thread dave typo
thanks, but it didnt work. On 7/11/07, Aji Johannes <[EMAIL PROTECTED]> wrote: > > Hello Dave. > > before few days i haved the same problem too. > after i found the "Bugtracker" solution, it is working now for me. > > > > change in tt_news' flexform_ds.xml: > AND tt_news_cat.pid=###STORAGE_PID###

Re: [TYPO3] what is a good solution for image searches in typo3?

2007-07-11 Thread dave typo
No one has any solution for allowing their users to search images? On 7/11/07, dave typo <[EMAIL PROTECTED]> wrote: > > I couldnt find a good extension that allows for image searching, > specifically, a dam powered frontend search. What do you guys use to > search > imag

[TYPO3] is tt_news 2.5.0 and typo3 version 4.1.1 and php 5.2.3 compatible?

2007-07-12 Thread dave typo
On the install page it says that tt_news 2.5.0: depends on php 4.2.2-5.2.99 depends on typo3 3.8.0-4.1.99 and I am running php 5.2.3 and typo3 version 4.1.1 now, am I correct in seeing that typo3 is not compatible with my setup? and if so, would it be the reason why no categories are saving?

Re: [TYPO3] is tt_news 2.5.0 and typo3 version 4.1.1 and php 5.2.3 compatible?

2007-07-12 Thread dave typo
On 7/12/07, Dmitry Dulepov <[EMAIL PROTECTED]> wrote: > Hi! > > dave typo wrote: > > On the install page it says that tt_news 2.5.0: > > > > depends on php 4.2.2-5.2.99 > > depends on typo3 3.8.0-4.1.99 > > > > > > and I am running php 5

Re: [TYPO3] is tt_news 2.5.0 and typo3 version 4.1.1 and php 5.2.3 compatible?

2007-07-12 Thread dave typo
On 7/12/07, Christopher Torgalson <[EMAIL PROTECTED]> wrote: > Hi, > > On 7/12/07, dave typo <[EMAIL PROTECTED]> wrote: > > > > > > > now, am I correct in seeing that typo3 is not compatible with my setup? > > > > > > Nope. 1 is less tha

Re: [TYPO3] is tt_news 2.5.0 and typo3 version 4.1.1 and php 5.2.3 compatible?

2007-07-12 Thread dave typo
On 7/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > On 7/12/07, Dmitry Dulepov <[EMAIL PROTECTED]> wrote: > > > yeah, that was me, the solution did not work. I can't find any > > documentation of this bug, scept for typo3 version 4.0.4 ... but there > > weren't any comprehensive solutions

[TYPO3] dam downloads search typoscript

2007-07-17 Thread dave typo
I'm trying to make DAM downloads search the description field of DAM. Anyone know why this line of typoscript isn't finding words within my description table of DAM? plugin.tx_damdownloads_pi1.searchFieldList = description It doesnt work with Description either.. thanks -dave _

[TYPO3] typoscript gifbuilder help within an extension

2007-07-17 Thread dave typo
anyone have any idea why this isn't working? I assume you can use gifbuilder within an extension, although I don't know what I'm doing wrong... plugin.tx_rgsmoothgallery_pi1 { big = IMG_RESOURCE big { file = GIFBUILDER file { maxH = 345 filemaxW = 460

[TYPO3] text based template (saved as a cookie)

2007-07-24 Thread dave typo
How can i let a user select a text-based template that stays upon the next time they log in? I'd like a low graphics (ie text based similar to &type=98) but one that also retains the navigation. Is there a template switching extension that I could use? I could then simply create a low-graphics te

[TYPO3] Frontend User Registration (sr_feuser_register) admin validation does not work

2007-07-24 Thread dave typo
This should be a simple logic problem on my part - but I can't figure out why my users accounts are not activated after they click on the membership confirmation link. After clicking, their profiles do not switch to the selected "User group after acceptation", and their profile remains hidden. An

Re: [TYPO3] text based template (saved as a cookie)

2007-07-25 Thread dave typo
so is there no way to maintain a low graphics template as a user moves from page to page? On 7/24/07, dave typo <[EMAIL PROTECTED]> wrote: > How can i let a user select a text-based template that stays upon the > next time they log in? > > I'd like a low graphics (ie text

[TYPO3] can't see a user's direct mail categories under their backend profile - how do I activate this?

2007-07-26 Thread dave typo
how can I see a user's direct mail category under their profile in the backend? As an admin user, I'd like to see what each of my frontend users have picked. anyone have a solution? -dave ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.d

Re: [TYPO3] can't see a user's direct mail categories under their backend profile - how do I activate this?

2007-07-30 Thread dave typo
is this impossible? I thought I could recall seeing it before... On 7/26/07, dave typo <[EMAIL PROTECTED]> wrote: > how can I see a user's direct mail category under their profile in the > backend? As an admin user, I'd like to see what each of my frontend > users have pi

Re: [TYPO3] Major problem - crash

2007-07-31 Thread dave typo
check your server's error log I found this to be a big help. On 7/30/07, Benjamin Harwell <[EMAIL PROTECTED]> wrote: > Have you tried deleting the temp_* files from the typo3conf/ directory? > Sometimes that can solve this issue. > > -Ben > > On 7/30/07, Katja Lampela <[EMAIL PROTECTED]> wrote: >

[TYPO3] how to disable li links opening a new window?

2007-08-01 Thread dave typo
When a user clicks on a link within a element, the page loads in a new window - how do I disable this, so that the new page loads in the same browser? -dave ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/c

Re: [TYPO3] how to disable li links opening a new window?

2007-08-02 Thread dave typo
it is a menu/sitemap generated via a content element is there TS that can disable this globally? On 8/2/07, Jan Bednarik <[EMAIL PROTECTED]> wrote: > > When a user clicks on a link within a element, the page loads in > > a new window - how do I disable this, so that the new page loads in > >

Re: [TYPO3] how to disable li links opening a new window?

2007-08-02 Thread dave typo
should this not take care of it? config.extTarget = _self its not working... On 8/2/07, dave typo <[EMAIL PROTECTED]> wrote: > it is a menu/sitemap generated via a content element > > is there TS that can disable this globally? > > On 8/2/07, Jan Bednarik <[EMAIL PROTE

Re: [TYPO3] how to disable li links opening a new window?

2007-08-02 Thread dave typo
hmm didn't work. is there some option somewhere that is taking precedence over another that I may not have considered? On 8/2/07, Katja Lampela <[EMAIL PROTECTED]> wrote: > Hi Dave, > Try this in your template constant: > > content.pageFrameObj = > > HTH ka

Re: [TYPO3] how to disable li links opening a new window?

2007-08-02 Thread dave typo
my target is "page" hmm... any suggestions? On 8/2/07, John de Stigter <[EMAIL PROTECTED]> wrote: > Hi, > > What is the target of your link? (Check the source code of the page in > the browser). > > RJ > > > When a user clicks on a link within a element, the page > > loads in a new window - how

Re: [TYPO3] how to disable li links opening a new window?

2007-08-02 Thread dave typo
perfect thanks a lot everyone :) On 8/2/07, Tyler Kraft <[EMAIL PROTECTED]> wrote: > in your template constants: > > PAGE_TARGET = > content.pageFrameObj = > > > in your template setup: > config.extTarget = > config.intTarget = {$PAGE_TARGET} > > &g

[TYPO3] dkd_feuser_belogin dead? Any plans to make it work with Typo3 > version 3.8 ?

2007-08-07 Thread dave typo
dkd_feuser_belogin doesn't seem to work with typo3 versions greater than 3.8.. are there any plans to continue this project? -dave ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/ty

Re: [TYPO3] dkd_feuser_belogin dead? Any plans to make it work with Typo3 > version 3.8 ?

2007-08-07 Thread dave typo
hmm. Its not appearing at all - I had come across a message string that stated it doesn't work with anything greater than 3.8 It doesn't work if I add it as a content element, or if I add it using typoscript could you please tell me (or paste your typoscript code) how you have it configured

Re: [TYPO3] dkd_feuser_belogin dead? Any plans to make it work with Typo3 > version 3.8 ?

2007-08-07 Thread dave typo
thanks, stupidly, I hadn't done the logical thing!!! :S On 8/7/07, Mauro Lorenzutti <[EMAIL PROTECTED]> wrote: > dave typo ha scritto: > > hmm. Its not appearing at all - I had come across a message string > > that stated it doesn't work with anything greater than 3

[TYPO3] make all pages require login

2007-08-07 Thread dave typo
is there a way to set all of a site's pages require a specific front-end (not backend access) user login without individually setting this aspect on each page? ie: is there a recursive setting for front end access?? thanks -dave ___ TYPO3-english mail

[TYPO3] hl dam gallery

2007-08-08 Thread dave typo
I need some help with hl dam gallery. My thumbnails of dam - referenced images do not correspond to the correct single view page. For example, I have images a b c d which are squared thumbnails on a page (dam-referenced images). When a user clicks on image a they are led to a single-view page

  1   2   >