Wordpress
Ok – so I’ve used the module – and read about all the ways to do this without the module. My answer is a hybrid.
Here are some things I had to do.
Write a custom image import script
Why this didn’t happen during import I’m not clear. My script preserves post_parent, title, date modified and menu_order (weight).
Set the [...]
Client : 18th Biennale of Sydney
Job Type : Website
Abstract : Reflecting curator’s wanted to make an online venue that reflected her curatorial process and give the online works a broader socio-political context on the theme of Revolutions that turn. A Flash front end was built onto a WordPress backend. The curatorial department could add [...]
Client : Caroline Rothwell
Job Type : Website
Abstract : A website to archive and document the works of writer and artists Caroline Rothwell. The website uses Wordpress as a CMS and provides a space to archive and document the artists’ work.
Year : 2007
Designer : House of Laudanum
Link : http://www.carolinerothwell.net
Client : Dani Marti
Job Type : Website
Abstract : A website for the artist Dani Marti.
Year : 2009
Designer : Kactus Pie
Link : http://danimarti.com/
If you host your email externally from the server that runs your website you might find that PHP’s mail function doesn’t quite work as expected. Following is the scenario.
To increase the upload size in PHP you need to modify some variables in the php.ini file on the server. If you don’t have access to that file you can override the defaults using .htaccess.
If your server uses phpSuExec use the 2nd method.
Create or add to the current .htaccess file in the document root directory.
# .htaccess
php_value [...]
Uploading an image returns error on creating directory. “Is its parent directory writable by the server?”
Check that PHP Safe Mode is off ( particularly mediatemple ).
You can’t upload a file larger than 2MB
PHP’s max_upload_size directive needs fixing. See this post.
While there are lots of reasons for this error you can fix the mod_security error by adding this to your .htaccess file.
[via http://thethemeblog.com]
If you are using authentication then the problem is more likely elsewhere. See “Password protect Wordpress (but still use the Flash Uploader)” instead.
#BEGIN Image Upload HTTP Error Fix
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
<IfModule security_module>
<Files async-upload.php>
SecFilterEngine [...]
Add this to you .htaccess file to allow Apache authentication to work with the Flash image uploader.
# allow flash uploader regardless of the authentication
<Files async-upload.php>
Order deny,allow
Allow from all
Satisfy Any
</Files>
# and flutters one too if you use flutter
<Files RCCWP_GetFile.php>
Order deny,allow
Allow from all
Satisfy Any
</Files>
This attachments plugin doesn’t provide much enhancement to the display layer of Wordpress but it does provide utilities for theme builders to quickly extract all kinds of media into their themes. The use for which it was designed is galleries based on media uploaded to particular posts and pages.
Features
Associate still frames with their appropriate videos [...]