[drupal-support] failed logins to drupal.org
Hello, When I attempt to login to drupal.org, I am greeted with the following errors: * Error -404 : Not Found * Sorry. Unrecognized username or password. Have you forgotten your password? I am attempting to log in with my remote kerneltrap.org username/password, as I've done for years. Is there currently a known issue? -Jeremy
When I attempt to login to drupal.org, I am greeted with the following errors: * Error -404 : Not Found * Sorry. Unrecognized username or password. Have you forgotten your password?
I am attempting to log in with my remote kerneltrap.org username/password, as I've done for years. Is there currently a known issue?
FWIW: This was due to the fact that I removed my local xmlrpc.php when I heard about the latest vulnerability... Now I know one of the things that file is used for. ;) Cheers, -Jeremy
I've asked this on drupal.org <http://drupal.org> with no answer and I've searched the website with little result. I wish the search function on Drupal were more robust. Perhaps in a future version. To my question. I'm using the bluemarine theme. I have several users that would like the body section of content to be taller and wider. I've scanned the theme docs and am now printing them to pour over later. I also have the TinyMCE rich text editor installed if they wish to use it. Does anyone know how one can change the number of columns and rows in the textareas? Any help appreciated!
It wouldn't be in there it would be in one of the modules. mode.module probably. Go in there and find the form_textarea and change it's rows and cols, look up the function at drupaldocs.org Alison Skip Taylor writes:
I've asked this on drupal.org <http://drupal.org> with no answer and I've searched the website with little result. I wish the search function on Drupal were more robust. Perhaps in a future version.
To my question.
I'm using the bluemarine theme. I have several users that would like the body section of content to be taller and wider. I've scanned the theme docs and am now printing them to pour over later. I also have the TinyMCE rich text editor installed if they wish to use it.
Does anyone know how one can change the number of columns and rows in the textareas?
Any help appreciated!
Thanks Alison! On 8/18/05, Alison Stanton <alisons@bankofknowledge.net> wrote:
It wouldn't be in there it would be in one of the modules. mode.module probably. Go in there and find the form_textarea and change it's rows and cols, look up the function at drupaldocs.org <http://drupaldocs.org>
Alison
Skip Taylor writes:
I've asked this on drupal.org <http://drupal.org> <http://drupal.org> with no answer and I've searched the website with little result. I wish the search function on Drupal were more robust. Perhaps in a future version.
To my question.
I'm using the bluemarine theme. I have several users that would like the body section of content to be taller and wider. I've scanned the theme docs and am now printing them to pour over later. I also have the TinyMCE rich text editor installed if they wish to use it.
Does anyone know how one can change the number of columns and rows in the textareas?
Any help appreciated!
Hi, The easiest method that have found to change this is to use css. try something like #edit-body { width: 100%; height: 20em; } this should allow you to change the textarea to what you want. Gordon. On Thu, 2005-08-18 at 15:53 -0700, Skip Taylor wrote:
I've asked this on drupal.org with no answer and I've searched the website with little result. I wish the search function on Drupal were more robust. Perhaps in a future version.
To my question.
I'm using the bluemarine theme. I have several users that would like the body section of content to be taller and wider. I've scanned the theme docs and am now printing them to pour over later. I also have the TinyMCE rich text editor installed if they wish to use it.
Does anyone know how one can change the number of columns and rows in the textareas?
Any help appreciated! !DSPAM:430519b1256561219218168!
Thanks Gordon, that worked fine. For future reference where are the sizes actually set (without reading a LOT of code)? I've found functions but nowhere that seems to call that function with actual numbers. Perhaps it's all in a set of variables somewhere. I'll keep looking just so I know! Thanks again! Skip On 8/18/05, Gordon Heydon <gordon@heydon.com.au> wrote:
Hi,
The easiest method that have found to change this is to use css.
try something like
#edit-body { width: 100%; height: 20em; }
this should allow you to change the textarea to what you want.
Gordon.
On Thu, 2005-08-18 at 15:53 -0700, Skip Taylor wrote:
I've asked this on drupal.org <http://drupal.org> with no answer and I've searched the website with little result. I wish the search function on Drupal were more robust. Perhaps in a future version.
To my question.
I'm using the bluemarine theme. I have several users that would like the body section of content to be taller and wider. I've scanned the theme docs and am now printing them to pour over later. I also have the TinyMCE rich text editor installed if they wish to use it.
Does anyone know how one can change the number of columns and rows in the textareas?
Any help appreciated! !DSPAM:430519b1256561219218168!
-- [ Drupal support list | http://lists.drupal.org/ ]
On Thursday 18 August 2005 10:16 pm, Skip Taylor wrote:
Thanks Gordon, that worked fine.
For future reference where are the sizes actually set (without reading a LOT of code)? I've found functions but nowhere that seems to call that function with actual numbers.
Perhaps it's all in a set of variables somewhere. I'll keep looking just so I know!
Textarea sizes are specified when the textarea is injected into the output by this function: http://drupaldocs.org/api/4.6/function/form_textarea Where in the module code that function gets called varies somewhat from module to module. I hadn't thought of using ems to resize it via CSS, though. That's cool. :-) -- Larry Garfield AIM: LOLG42 larry@garfieldtech.com ICQ: 6817012 "If nature has made any one thing less susceptible than all others of exclusive property, it is the action of the thinking power called an idea, which an individual may exclusively possess as long as he keeps it to himself; but the moment it is divulged, it forces itself into the possession of every one, and the receiver cannot dispossess himself of it." -- Thomas Jefferson
Hi, The actual function is form_textarea() which is in the includes directory. but where the sizes are pasted is all over. just find the form_textarea() and there are 2 parameters that specify the width and depth. check drupaldocs.org for more information. Gordon. On Thu, 2005-08-18 at 20:16 -0700, Skip Taylor wrote:
Thanks Gordon, that worked fine.
For future reference where are the sizes actually set (without reading a LOT of code)? I've found functions but nowhere that seems to call that function with actual numbers.
Perhaps it's all in a set of variables somewhere. I'll keep looking just so I know!
Thanks again! Skip
On 8/18/05, Gordon Heydon <gordon@heydon.com.au> wrote: Hi,
The easiest method that have found to change this is to use css.
try something like
#edit-body { width: 100%; height: 20em; }
this should allow you to change the textarea to what you want.
Gordon.
On Thu, 2005-08-18 at 15:53 -0700, Skip Taylor wrote: > I've asked this on drupal.org with no answer and I've searched the > website with little result. I wish the search function on Drupal were > more robust. Perhaps in a future version. > > To my question. > > I'm using the bluemarine theme. I have several users that would like > the body section of content to be taller and wider. I've scanned the > theme docs and am now printing them to pour over later. I also have > the TinyMCE rich text editor installed if they wish to use it. > > Does anyone know how one can change the number of columns and rows in > the textareas? > > Any help appreciated! >
-- [ Drupal support list | http://lists.drupal.org/ ]
!DSPAM:430552fe282083356511151!
I am having trouble with inline images. On this page http://bcybll.emwd.com/node/53 in Safari I get the "broken image" icon for the picture. in Firefox, I get the name of the file The attachment is in the correct location, and you can click on the filename itself (as the attachment) and see it. All users can view uploaded files. I've added inline images to the default filter. The log has this in it: Type page not found Date Saturday, August 20, 2005 - 18:42 User admin Location /files/amc_casual_sm.jpg Message 403.shtml not found. Severity warning Thanks, Andrew
participants (6)
-
Alison Stanton -
Andrew Cohill -
Gordon Heydon -
Larry Garfield -
Lists -
Skip Taylor