Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#73 2007-05-09 17:32:53

feragnoli
Member
From: the hague
Registered: 2005-02-10
Posts: 150

Re: mem_moderation - Generic Moderation

hello manfre, welcome back.
I’m still following the mod_article_image, so I’m interested in knowing if there’s a possibility for the plugin to add limitation for size/type of the image.
as far as I know, know it accepts any extension allowed by the textpattern installation.
maybe you could take a look at some of the stuff I wrote in the help file of the version I uploaded
sure you’ll find a lot of mistakes and so; was really trying to figure out how to make the plugin work from scratch.

@moslib. thanks a lot, but I can’t see much on the site..?


what was that again…?

Offline

#74 2007-06-05 12:15:40

frippz
Member
From: Sweden
Registered: 2005-01-30
Posts: 22
Website

Re: mem_moderation - Generic Moderation

Has any progress been made in the last month?

At times like these, I wished that my skills with PHP were a lot better so I could contribute more.

Last edited by frippz (2007-06-05 12:16:23)


//Fredrik Frodlund

frippz.se | Adjust.nu

Offline

#75 2007-06-13 00:46:38

Manfre
Plugin Author
From: North Carolina
Registered: 2004-05-22
Posts: 588
Website

Re: mem_moderation - Generic Moderation

frippz wrote:

Has any progress been made in the last month?

At times like these, I wished that my skills with PHP were a lot better so I could contribute more.

—-

I’ve been working on resolving an issue for a client. There are some odd issues with post backs on a specific installation. Once that is finally resolved, more generic development will resume.

-Manfre

Offline

#76 2007-06-20 18:47:42

Manfre
Plugin Author
From: North Carolina
Registered: 2004-05-22
Posts: 588
Website

Re: mem_moderation - Generic Moderation

A quick little update. Resolved most issues with the client and will wrap everything in to a new version to serve as a baseline for all installations.

Offline

#77 2007-06-20 18:51:18

sthmtc
Member
From: CGN, GER
Registered: 2005-01-17
Posts: 586
Website

Re: mem_moderation - Generic Moderation

Manfre wrote:

A quick little update. Resolved most issues with the client and will wrap everything in to a new version to serve as a baseline for all installations.

Awesome! Can’t wait to check it out…

Offline

#78 2007-06-21 00:28:04

photonomad
Member
Registered: 2005-09-10
Posts: 290
Website

Re: mem_moderation - Generic Moderation

I can’t wait either! : )

Offline

#79 2007-06-27 10:26:18

feragnoli
Member
From: the hague
Registered: 2005-02-10
Posts: 150

Re: mem_moderation - Generic Moderation

hello Manfre, thank you for picking up the work on this plugin again.
Which features do you plain to include in the next release(s)?
will image upload/embed possible and if so will there be the possibility to limit size/kind for the images?
I’m currently using the sed_afu plugin to allow users to upload files (images) because that plugin seems to make a rather thorough check of the uploaded files.
my php skills aren’t enough to develop such a plugin myself…
thank you and good luck.


what was that again…?

Offline

#80 2007-07-17 02:19:46

Manfre
Plugin Author
From: North Carolina
Registered: 2004-05-22
Posts: 588
Website

Re: mem_moderation - Generic Moderation

Offline

#81 2007-08-10 10:41:50

feragnoli
Member
From: the hague
Registered: 2005-02-10
Posts: 150

Re: mem_moderation - Generic Moderation

hello Manfre, can’t access your svn…

I’m still trying to figure how mem_moderation_image works and I have a question:
in the function mem_image_save which I assume is the function that actually saves/uploads the file to textpattern, there’s this line:

if ($extensions[$extension]) { et cetera…

which, if I understand good, verifies that the extension of the file is one of the extensions accepted by the textpattern installation.
or am I wrong?

if it is so, why wouldn’t something like if ($extension==$myExtension) { work? (where myExtension is an attribute assignable to the public tag; ie <txp:mem_moderation_image type='jpg' />)

the same goes for the size of the image.
thanks


what was that again…?

Offline

#82 2007-08-11 03:13:48

Manfre
Plugin Author
From: North Carolina
Registered: 2004-05-22
Posts: 588
Website

Re: mem_moderation - Generic Moderation

feragnoli wrote:

hello Manfre, can’t access your svn…

I’m still trying to figure how mem_moderation_image works and I have a question:
in the function mem_image_save which I assume is the function that actually saves/uploads the file to textpattern, there’s this line:

if ($extensions[$extension]) { et cetera…

which, if I understand good, verifies that the extension of the file is one of the extensions accepted by the textpattern installation.
or am I wrong?

if it is so, why wouldn’t something like if ($extension==$myExtension) { work? (where myExtension is an attribute assignable to the public tag; ie <txp:mem_moderation_image type='jpg' />)

the same goes for the size of the image.
thanks

Your analysis is correct. That check will make sure that the image format is one that textpattern recognizes. I have added the arguments ‘accept’ and ‘maxfilesize’ to the tag modimg_form.

accept will allow a CSV mimetype list to allow the browser to restrict the type of files that are uploaded.

maxfilesize will add the MAX_FILE_SIZE hidden input field before the file input field to allow the user’s browser to restrict the file upload.

You can try accessing my svn by clicking this link http://manfre.net/svn/txp

Offline

#83 2007-08-11 10:32:15

feragnoli
Member
From: the hague
Registered: 2005-02-10
Posts: 150

Re: mem_moderation - Generic Moderation

manfre wrote:

accept will allow a CSV mimetype list to allow the browser to restrict the type of files that are uploaded.

maxfilesize will add the MAX_FILE_SIZE hidden input field before the file input field to allow the user’s browser to restrict the file upload.

but wouldn’t be safer to make those checks also on the uploaded temporary file?
the hidden form fields can be easily bypassed, so a check on the temporary file would increase the safety of the uploaded file.

also: is the image resizing/thumbnail creation working for you?

I installed version 0.4.8 of mem_moderation and tried to install. after installing, when trying to open the moderate tab, it gives this:


Warning: Table 'd005373b.txp_moderation`, `txp_users' doesn't exist select txp_moderation.* from
`txp_moderation``, ``txp_users` where txp_moderation.user=txp_users.name AND (DATE_SUB( NOW(),
INTERVAL 7 DAY ) > txp_moderation.submitted OR txp_users.privs = 1) order by txp_moderation.submitted
asc limit 0,25 in /www/htdocs/v135192/test/textpattern/lib/txplib_db.php on line 84
Failed to access table. Table 'd005373b.txp_moderation`, `txp_users' doesn't exist

where d005373b is the name of my database

thank you

Last edited by feragnoli (2007-08-11 11:24:07)


what was that again…?

Offline

#84 2007-10-14 11:23:54

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: mem_moderation - Generic Moderation

The plugins at Michael’s SVN page don’t work for me – entering them into TXP’s plugin page gives an “Badly formed or empty plugin code” error.

What’s the best way to get the plugins into TXP?

Also, can someone tell me which plugins are necessary for something like this:

  • User submission of articles
  • Users get their own page to edit/delete articles (not TXP backend)

Not sure if I can do this with Michael’s plugins (perhaps with igner’s plugin), but I’d like to test it out, or get some other ideas from people here….

Offline

Board footer

Powered by FluxBB