malefactor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bandwidth ProblemI have the same problem..
Daily 9-10GB
this is for stat for the last two days where I had 8.500 visitsjpg Image 845102 59.9 % 16.81 GB 76.5 %
I have a lot of images, that’s right, but before update it wasn’t like that.
Forum: Fixing WordPress
In reply to: I can't upload imageI know, but I asked a lot of people and forums, and no one have particular solution. Not even my Hoster.
Forum: Fixing WordPress
In reply to: I can't upload imageActually, 757 works as well.. And only 01 folder has 757, the other are 755.. So I think I’m gonna leave it like that so far, maybe next WP update will change something.
Thanks dude for everything. 😉
Forum: Fixing WordPress
In reply to: I can't upload imageDoesn’t work with none of them, when I’m changing premissions only on wp-content.
but only on 01 folder works, with 767, and the other /wp-content/upload/12 are 755
i’ve changed back to 755 but again could not work.
Forum: Fixing WordPress
In reply to: I can't upload imageI have changed the permissions to 777 for all this folders: /wp-content/uploads/2012/01 and finally image show up!
But all those 777 is a little bit risk to leave like that.. O.o
Forum: Fixing WordPress
In reply to: I can't upload imageI did it.. “Store uploads in this folder” and “Full URL path to files” are blank, so Default is wp-content/uploads
I don’t know if they running mod_secirty i think no, but anyway I disabled in wp-admin/.htaccess
<IfModule mod_security.c> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule>I have tried with jpg, gif and png. 120px, 500px…
Forum: Fixing WordPress
In reply to: I can't upload imagetiggaz@ehost:~$ gdlib-config –version 2.0.33
Forum: Fixing WordPress
In reply to: I can't upload imageI have enough free space.. btw what is GD Library?
Forum: Fixing WordPress
In reply to: I can't upload imageI’ve tried everything from this link, but still nothing.. :S
I have the same problem like this guy. http://wordpress.org/support/topic/images-upload-fine-but-wp-shows-0x0-size?replies=7
I’ve tried with AJAX Thumbnail Rebuild plugin as well and change the 172 line but still nothing.
Forum: Fixing WordPress
In reply to: I can't upload imageI did, everything is fine there. Default is wp-content/uploads
Strange thing is, image size is 0x0
Forum: Fixing WordPress
In reply to: Another div style in one CategoryDone!
I just create new php file category-X.php where X is my categori ID.
And it works!esmi thank you anyway. 😉
works for me.
you just need to enter this code in your template style.css file. If still doesn’t work, open your heder.php file and before </head> put:
<style type="text/css"> <!-- .advanced-recent-posts li { float:left; width:100px; margin: 15px; } .advanced-recent-posts li a img { display:block; } --> </style>Forum: Fixing WordPress
In reply to: query_posts: How to call only the thumbnail?I don’t know if i understand u well but all those posts have one or more uploaded images. btw I’m using Hungred post thumbnail plugin.. Maybe this plugin make some conflict?
Forum: Plugins
In reply to: [WP-PageNavi] disable wp-pagenavi on pages with template using the loopFinally I found solution. Here is the code if you still need it.
<?php $delnavi="http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; if ($delnavi=="http://your_web_site_here.com/") { } else { wp_pagenavi(); } ?>Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] How to disable pagenavi from some page?Finally I found solution. Here is the code if someone need it.
<?php $delnavi="http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; if ($delnavi=="http://your_web_site_here.com/") { } else { wp_pagenavi(); } ?>