svsdnb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: /Êtegory%/%postname%/ not working 2.7without getting in there i’m at a loss honestly. maybe wait and see if anyone else has anything to try before granting access to some dude on the internet. 😛
Forum: Fixing WordPress
In reply to: Why can’t I change the size of photos when I post them?Also, does your server have gd or imagemagik installed?
AHHHHHHHHH neither!
are these specifically for WP?
Forum: Fixing WordPress
In reply to: /Êtegory%/%postname%/ not working 2.7Stupid question – You verified it works fine with ugly links, right?
yeah, see that’s what I asked originally but never got a response. kind of why I want to see what happens when he uses ugly links or one of the custom presets.
Forum: Fixing WordPress
In reply to: /Êtegory%/%postname%/ not working 2.7curious.
try one of the preset customs like Day and Name just so I can see if that shows up.
I’m trying to do this without gaining access to your blog admin panel but seems like something fishy is going on in there.
Forum: Fixing WordPress
In reply to: Want to change image in headerNot to say this is better… just preference…
http://yourdomain.com/wp-content/themes/green-theme/style.css
find #header
should be a line under that, that says..
background:url(img/front.jpg) no-repeat;
drop your new image in the img folder and rename the call according to your file name..
background:url(img/yournewheader.jpg) no-repeat;
But if you don’t know CSS all that well just do as Figaro has suggested. It’s probably the easiest solution.
Forum: Fixing WordPress
In reply to: Want to change image in header^that’s probably the easiest way but not always fool proof when or if there’s updates.
Forum: Fixing WordPress
In reply to: /Êtegory%/%postname%/ not working 2.7hrmm… well if you do not have any categories created then it’s not going to find them.
try this…
create 3 categories of any name
create 3 posts of any name saving each post to 1 category eachthen test the permalinks issue.
Forum: Fixing WordPress
In reply to: Want to change image in headershould be in the style sheet… could depend on the theme. What theme are you using?
Forum: Fixing WordPress
In reply to: /Êtegory%/%postname%/ not working 2.7so just to clarify… when you use the default permalink you can hit the pages just fine however when you use the custom you get a 404 page cannot be found error?
Can you provide me an example of one of your category slugs?
Also, are you posting to multiple categories?
Forum: Fixing WordPress
In reply to: Why can’t I change the size of photos when I post them?svsdnb Are the size options greyed out or just not there?
Will it actually let you put the full size photo in?
I have the radio option of FULL SIZE but all others are greyed out. I checked out that link but nothing in there has worked for me. I’m still without the use of image resizing. I can just give the image parameters manually but it’s nice to have the option to do so with a single click.
Forum: Alpha/Beta/RC
In reply to: Image Sizing Radio Buttons Greyed out// $size == ‘full’ has no constraint
else {
$max_width = $width;
$max_height = $height;
}Change the max to your desired max pixels. In my case I set max width and height to 600 pixels as shown below.
// $size == ‘full’ has no constraint
else {
$max_width = 600;
$max_height = 600;
}tried this and I’m still stuck with greyed out radio buttons. WP do you have a fix for this?
Forum: Fixing WordPress
In reply to: /Êtegory%/%postname%/ not working 2.7remove # BEGIN WordPress & # END WordPress
just
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>Forum: Fixing WordPress
In reply to: Permalinks other than default not working without index.php@ JF
make your .htaccess file this with a 755 permissions level.<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>Forum: Fixing WordPress
In reply to: /Êtegory%/%postname%/ not working 2.7try this…
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>and make sure it’s readable and writable (755)
Forum: Fixing WordPress
In reply to: /Êtegory%/%postname%/ not working 2.7what does your .htaccess file say?