Emiliano wrote:

> > I have to admit I ran in to this last week as well...I cut and pasted a 
> > story (no idea how long, sorry) into the content and abstract sections and 
> > they just didn't appear...I wonder if there is a char. limit set on the 
> > field as it is parsed to the admin page?...just a thought.
> 
> I briefly looked over the admin site code, and I could find no limit
> set on the textareas. One possibility would be that the browser itself
> limits the size of these fields. Care to try with another browser?

Alternatively, try the following:

Change the code of the article page through the admin site (page 29 if
you haven't altered the admin site. After line 202
 <textarea name="content" rows="10" cols="60" wrap="soft">&(content);</textarea>
insert
 <input type="file" name="content_upload">

In the top of the code-init pageelement of that page, add

if ($content_upload && ($content_upload_type == "text/html" ||
      $content_upload_type == "text/plain")) {
   $content = join('', file($content_upload));
}

Untested, but this should allow you to upload files for content.

Emile


--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]

Reply via email to