live_u4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upload destination1. Open /wp-includes/functions-post.php
2. Change the dir at line #843Forum: Fixing WordPress
In reply to: New upload feature – problemI think Matt and his team are working on these issues. Please, just be patience and consider that the 2.0 version is just, so far, a stable version which not always means “final”. Actually, there’s no an official public annoucement about the release, at least not written on the WP Blog that is expected to be the “official word”.
All of this was caused because we users carried the news too quickly and maybe yes, a more extensive beta testing… who knows. =(
Forum: Fixing WordPress
In reply to: WP 2.0 Upload picturesForum: Fixing WordPress
In reply to: New upload feature – problemE-mail??
Forum: Fixing WordPress
In reply to: New upload feature – problemNice Tijmen!!! Much better than hacking the other files!! =)
Kahil, you should try this!!!Forum: Fixing WordPress
In reply to: New upload feature – problemTested on Firefox 1.5, Opera 8.5… all it’s working fine.
Forum: Fixing WordPress
In reply to: New upload feature – problemStrange… maybe your javascript it’s disabled.
Forum: Fixing WordPress
In reply to: New upload feature – problemKahil:
It’s probable that uploaded files before you made the changes will not work and it’s advisable that you delete the files, you can do it by clicking on the square where the images they were supposed to be.
Try uploading something new.
Sorry if get misundertood, but english is not my natural language…
Forum: Fixing WordPress
In reply to: wp 2.0 vs 1.5 – how to edit quicktags.js?Sorry, i meant
/wp-includes/js/quicktags.jsForum: Fixing WordPress
In reply to: New upload feature – problemHere is another hack for the Core. This is for choosing the path of the uploaded files:
1. Open /wp-includes/functions-post.php
2. Find the line #843$dir = ‘wp-content/uploads’;
Just replace with the path of your choise
—————
For those who doesn’t want that trick of making subfolders with year and month, just follow these steps on the same file:1. Scroll to the line #862 and #863
$pathy = “$path/$y”;
$pathym = “$path/$y/$m”;Replace with:
$pathy = “$path”;
$pathym = “$path”;2. Scroll to line #879
$uploads = array(‘path’ => $pathym, ‘url’ => get_option(‘siteurl’) . “/$dir/$y/$m”, ‘error’ => false);
Replace that line with:
$uploads = array(‘path’ => $pathym, ‘url’ => get_option(‘siteurl’) . “/$dir”, ‘error’ => false);
—————-
That’s it!! =) Another quickfix while we wait for programmers to integrate the possibility to do it through the dashboard.
Forum: Fixing WordPress
In reply to: wp 2.0 vs 1.5 – how to edit quicktags.js?Replace /wp-includes/js/quicktags.php with your old file.
Forum: Fixing WordPress
In reply to: New upload feature – problemAlright! Let’s Hack the Core:
1. Open the file /wp-admin/inline-uploading.php
2. Find the line 242
3. Read Carefully:<img id=\”image{$ID}\” src=\”$src\” alt=\”{$image[‘post_title’]}\” $height_width />
And just delete:
$height_width——
That’s it! It’s a quick fix but it will be working nice. Also you can change the “alt” but don’t touch the “id” part. Maybe you will want to add a default “class” for your images there.
Forum: Fixing WordPress
In reply to: Mail Notification isn’t workingI’m also having this problem. Updated to 1.5.1.2 but i cant still get the comment notifications.
2 contact form plug-ins i’ve tried didn’t send any mail as well. They are Wp-contact form and In-touch. ??
Mail address is correct.
Tnx in advance.