Search Results for 'crop'
-
AuthorSearch Results
-
April 27, 2010 at 5:26 pm #75500
helpme1
ParticipantI tried.. but it doesn’t upload.. something wrong!!!!
April 27, 2010 at 4:26 pm #75490erikkuntz
MemberI’ve done the changes: no problems with uploading the Avatars, but still no crop tool. Still hunting for the answer to this one, it was working fine until a few days ago and now I have to figure out what changed in my setup.
April 27, 2010 at 11:04 am #75444In reply to: crop avatar bug?
lorenzo
Memberhave you got firebug? the way i had to try to solve the issue was painful, making one change at a time, but if you inspect the area around where the alt text is appearing you can see the paths where stuff is referring to.
for you i’m pretty sure that it is just a matter to change the path to the correct location. i.e. with MU is wp-content/blogs.dir/1/files, for the standalone it should be under miscellaneous settings and i had the full path to the upload folder (people normally keep it outside the WP installation) and the full url is blank for me.
i had to change the htaccess file because the rewrite gave me issues with the slash ‘/’. if i had it at the start it would duplicate it (i.e. mysite.com//wp-content/blogs.dir/1/files) and if i left it out it would modify the path completely (i.e mysite.com/blogs.dir/1/files). it seems that the upload worked in the second instance, but then the reference to the files is not displaying, whilst the first is breaking the upload as well.
hope this helps you, there is another thread discussing similar issues (https://buddypress.org/community/groups/miscellaneous/forum/topic/buddypress-and-wordpress-30/#post-48806)April 27, 2010 at 2:44 am #75392In reply to: Avatar Upload Issues
nightlygigs
Member@Chad – I’m right there with you, buddy. I’ve added the code that @Phlux0r provided, both to my child theme and the actual buddypress theme. I’ve disabled all other plugins, tested on multiple browsers, and had other people try from their computers. Nobody can successfully change their avatar on my site. But the files are being uploaded, as they are visible via my FTP client. The image just never appears in the cropping stage.
Here is the link to my site, which hasn’t gone live yet: http://outgoinggames.com/
April 27, 2010 at 12:27 am #75383In reply to: crop avatar bug?
Chad Holden
ParticipantI would have loved if this worked for me as well, but alas, no such luck. I am using non MU wp3 beta 2 and bp 1.2.3.
April 26, 2010 at 7:55 pm #75327In reply to: crop avatar bug?
lorenzo
Memberok, it took me a few hours to figure this out! then i upgraded to wp 3.0 beta 1 in case this was solved, but the exact same behaviour occurr. with the help of another thread and some research, the solution seem to be working now. you guys maintaining the buddypress site can verify if it works for you as well.
there are two problems here:
– the htaccess file need to be changed for wp 3.0 (and i guess it was the same for wp2.9.2)
– the settings of the main blog must also be modified.this is what is in my htaccess for wp 3.0
RewriteEngine On
RewriteBase /# uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule . index.php [L]# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]SecFilterEngine Off
SecFilterScanPOST Offthe settings of the main blog can be accessed via the ‘sites’ under superadmin and then ‘edit’, all the site options are under there (as i didn’t use the WPMU before i struggled to find the options for a while!)
here there are 3 different entries for upload (don’t ask me why)
1- upload path: i set this to wp-content/blogs.dir/1/files
2- upload url path: i left this blank as after a few experiment doesn’t seem to do anything
3- file upload url: also left blank as it seems to duplicate the base url
i’m guessing this might be a bug, but for now it does solve the problem!maybe this will save people some time…
April 26, 2010 at 5:43 pm #75293In reply to: Avatar Upload Issues
okso
Participanthi all, I’ve read and re read every post and applied all fixes and I still I can’t get the return url right eg. http://roomontheedge.com/uploads/group-avatars/3/avatar15016.jpg somewhere wp-content is missing from the url thats set up to do the cropping stage. Any help really appreciated. d
April 26, 2010 at 3:30 pm #75266In reply to: BuddyPress and WordPress 3.0
Chad Holden
ParticipantI’ve tried the installation a few times on WAMP, MAMP and multiple installations on the same server … It should be important to note that THIS site bp.org has the same avatar uploading issues with this new template/release.
This is my htaccess file, which makes the avatar cropper work, but I still get the upload error after :
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule . index.php [L]
# BEGIN WordPressRewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress
April 26, 2010 at 3:29 pm #75265In reply to: Avatar Upload Issues
Mike Henderson
ParticipantApril 25, 2010 at 8:07 pm #75179cpbsmi
MemberThanks that did it.
April 24, 2010 at 12:44 am #74946In reply to: Avatar Upload Issues
Chad Holden
Participantipstenu, it doesn’t seem to matter whether or not I upload square images, I just cant get past that one part where it needs to actually crop and upload the two sizes.
April 24, 2010 at 12:38 am #74945In reply to: Avatar Upload Issues
Chad Holden
ParticipantMike, do you get the images to display at all in the cropper? I can get to the cropper now then it conks out I hit the crop this image then it says that the image cannot be uploaded.
This is getting very frustrating!
April 23, 2010 at 1:23 am #74807In reply to: Avatar database store
marcoslavorato
MemberComment list from a post. So, how can I see where the avarts is located in database? In the uploads folder I see the cropped. The option show avatar is enabled. Thanks!
April 22, 2010 at 10:56 pm #74793Derek
ParticipantUpdate. OK after testing BP Events out there are a couple bugs. The avatar cropping does not work. There is no menu tab added. It did post messages to the activity stream though. This is still such good news though, forward progress!!!
April 22, 2010 at 8:00 pm #74766In reply to: BuddyPress and WordPress 3.0
Ipstenu (Mika Epstein)
ParticipantWhat size image are you uploading? I have this weird thing where if I upload a square image, and it’s less than 150 px on any side, it gets all stupid and weird on me.
Also which WP 3.0 are you running? I have last night’s nightly and it’s working fine when I tried to use an image that was 284px by 240px and cropped it down.
The other thought is you may not have the image processing apps on your server (I don’t know if they use GD Image or whatever…)
April 22, 2010 at 7:57 pm #74764In reply to: BuddyPress and WordPress 3.0
Chad Holden
ParticipantThat got me one step further, but then i got the RSOD -> There was a problem cropping your avatar, please try uploading it again
April 22, 2010 at 7:56 pm #74763In reply to: Buddypress and WordPress 3.0 Beta
Chad Holden
ParticipantThat got me one step further, but then i got the RSOD -> There was a problem cropping your avatar, please try uploading it again
April 22, 2010 at 6:26 pm #74745In reply to: BuddyPress and WordPress 3.0
Chad Holden
ParticipantI think I am having the EXACT same issue as ajohnson.
I upload the avatars just fine. I am not using the network enabled code in WP3 and my avatars are not showing to crop. they begin at the custom directory files/avatars/1 … etc.
It was a fresh WP3-b1 install
Fresh Buddypress 1.2.3 install on top of it.
April 21, 2010 at 6:47 pm #74635In reply to: Newbie needs help with 4 design elements
Hugo Ashmore
ParticipantWhat I’m looking at needs some work before tackling the detail mentioned above.
at the moment you have a conflict between master elements wanting to be fluid and others fixed, it’s probably easiest to simply let the layout run as fully fluid initially. I would remove or override the default.css body min/max widths and width (you can come back to body later and set appropriate min-width)
You are calling your header graphic twice, decide on one image call and ensure it’s set to no-repeat (unless you want to repeat the name?)
Remove the bottom margin on #header, increase it’s height to 150px set a background color to the blue and a background-position: 0 50%, these are best set as background shorthand declarations.
Personally I would do the #header differently and would always tend to favor a image replacement technique; ‘header would simply have the background color the image would be sliced close cropped to the text and set on a span withing the anchor element that span is then positioned absolute so that it hides the anchor text .
This starts to get the layout looking correct as long as you are after a fluid full width layout; body can always have a min-width to prevent the layout collapsing too far.
As for the main text within .entry I’m afraid the way it’s set out doesn’t easily allow for just that text to be dragged over to the left margin. A quick fix for that would be to remove the left margin from .post-content but add left margin to .post-title and .post-date, better might be to move the .author box into the ..entry div but you’ll need to play around and find what you like best.
April 21, 2010 at 6:41 pm #74633ruthlessbookie
Memberworked fine for me, but avatar cropping failed both during group creating process and after group was created when I went back and tried to edit the group – otherwise, I think you have something here!
April 21, 2010 at 3:01 pm #74599In reply to: Avatar Cropping Problem
greg72
MemberI am having the same problem but I’m using the default buddypress theme and no mu plugin. Tried firefox, ie and chrome to no avail. I do have GD installed on my server, not sure where to go from here.
April 21, 2010 at 1:48 pm #74589In reply to: Avatar Cropping Problem
6020329
InactiveNevermind. The problem was that I took out some div elements and that was obviously breaking the javascript functions. For future child theme creators, make sure to have all the same div elements in the same place as the BuddyPress Default theme (i.e., “container”, “content”, and (maybe?) “padder”).
April 19, 2010 at 2:11 pm #74204pandragon
MemberHey Guys, I’m running MU and I use this edit https://buddypress.org/forums/topic/url-being-retrieved-strangely I’m about to try another update so I haven’t tested if this still works with the newest update but I’ll let you know after I do a backup first
April 18, 2010 at 10:15 pm #74100Ipstenu (Mika Epstein)
ParticipantInteresting! I had a similar problem in my groups and when I looked at the source of my rendered page, the URL for the image was:
/home/domain/public_html//group-avatars/1/avatar.jpgit looks like this function isn’t working right from bp-core-avatars.php
function bp_core_avatar_upload_path() {
if ( bp_core_is_multisite() )
$path = ABSPATH . get_blog_option( BP_ROOT_BLOG, 'upload_path' );
else {
if ( !$path = get_option( 'upload_path' ) )
$path = WP_CONTENT_DIR . '/uploads';
}
return apply_filters( 'bp_core_avatar_upload_path', $path );
}Calling
upload_pathis wrong. It should beupload_url_path– I don’t know if this is a WP 3.0 thing or not, but I’ll open a trac for it
April 18, 2010 at 1:16 pm #74046babybrownfox
MemberYou can also checkout this tutorial http://ping.fm/ZtmLt
-
AuthorSearch Results