[wpmu-trac] [WordPress MU Trac] #732: "upload_path" and
"upload_url_path" don't work
WordPress MU Trac
wpmu-trac at lists.automattic.com
Fri Sep 5 15:17:00 GMT 2008
#732: "upload_path" and "upload_url_path" don't work
------------------------+---------------------------------------------------
Reporter: daniel_a | Owner: somebody
Type: defect | Status: new
Priority: normal | Milestone:
Component: component1 | Version:
Severity: normal | Keywords:
------------------------+---------------------------------------------------
I want to change the default upload directory for the files. I think that
change the options "upload_path" and "upload_url_path" into the database
"wp_X_options" was the answer. I change it and nothing happened.
I dive into the code and know what's the matter.
1. wp-settings.php define the constant UPLOADS.
if( !defined( "UPLOADS" ) )
{{{
define( "UPLOADS", "wp-content/blogs.dir/{$wpdb->blogid}/files/" );
}}}
2. functions.php overwrite my dir (what I put into the database) because
UPLOADS is defined.
{{{
if ( defined('UPLOADS') ) {
$dir = ABSPATH . UPLOADS;
$url = trailingslashit( $siteurl ) . UPLOADS;
}
}}}
3. If I comment the lines in wp-settings.php the mu.php file and others
files don't work because they need the constant UPLOADS.
I think this is a error of WordPress Mu because the options in the
database should work.
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/732>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list