Forum Replies Created

Viewing 15 replies - 16 through 30 (of 34 total)
  • Actually, I just went back to your site and saw a link in your about me page. Yes, it definitely looks like one of those sape links.

    I am really sorry you have to deal with this. I hope the above resource will be able to help you get this cleaned out.

    That said, don’t panic or anything,as I said, they generally dont do anything else like deleting your site etc. They are only after the backlinks.

    I couldn’t see anything, but I am afraid your site has been hacked by the Russian sape network. These guys make money by selling links to other webmasters (in order to rank higher in Google an get more traffic). They hack to thousand of sites and generally they don’t anything other than placing links.

    They put a code on your site which is very hard to detect. The code is called base64.

    You can get more info here: http://wordpress.org/support/topic/base64-malware-all-over-my-sites-in-the-php-files?replies=5

    Also, here is a post on what to do if you have been hacked: http://codex.wordpress.org/FAQ_My_site_was_hacked

    You can also talk to your host. they may be able to help you as well.

    Good luck.

    Here is how you can do this without using any plugins:

    From your WP dashboard, navigate to Appearance Editor.

    On the right side, find footer.php.

    Put your code right before the </body> tag and hit update. Thats it.

    Make sure to save a copy of your Footer.php in case something goes wrong, so you can simply replace it.

    What theme are you using?

    It depends on the theme. But usually you will need to edit the template of your homepage (possibly index.php), where you would find <!--?php the_excerpt(); ?--> and replace it with <!--?php the_content(''); ?-->.

    Hope that helps.

    Hi Jay,

    I just checked out your site and it looks great.

    I just have a few things that I think would help a bit (just my opinion of course):

    1. The background (wood pattern) is a little too dark and strong. It is not inviting. I would advice on changing it with something lighter.

    I also ran your site through http://gtmetrix.com for speed and your site seems to be very slow. The biggest problem right now are:

    1. I know your site is going to be image heavy, so as you go along, you will be adding more and more images which will slow down your site.

    Your images are not optimized. As you add more images, your site will start to slow down. Either use a plugin like Smush It or simply upload your image to http://www.smushit.com/ysmush.it/ first, then use the “smushed” version on your site.

    2. Another thing about images, you should specify the dimension of your images. Doing so will allow for faster rendering (in plain, your site will load faster).

    3. You need to enable caching. You can do that by either pasting the below code into your .htaccess file (found in your root directory). But be sure to back up your site or at least copy and save the original htaccess, in case you mess something up you can go back and restore the original one.

    # BEGIN File Cache
    <FilesMatch “.(flv|gif|jpg|jpeg|png|ico|swf|js|css|pdf)$”>
    Header set Cache-Control “max-age=2592000″
    </FilesMatch>
    # END File Cache

    If you don’t want to mess with codes, you can use a plugin like W3Cache which will help you do that and many other things that will help your site load faster.

    4. You can also compress your files and other stuff. You can use this code to do that (it basically compresses your files. For example: your CSS file has white lines that is only used to help developers work easier with the code, by compressing them you get rid of those white lines which will help the file load faster).

    <ifModule mod_deflate.c>
        AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript
    </ifModule>

    Remember, although speed is not a big search engine factor, it is still a factor. So, by having a fast loading site, you improve your chances of ranking your site for various keywords.

    Plus, visitors like fast sites. People push the back button if it takes more than a few seconds to load.

    Also, I would strongly suggest you read up about site speed. There are a lot of easy stuff you can do that will help your site perform much better.

    And please please back up your site (or at least the files you are going to work on) before you do any editing (such as mentioned above). I or anyone else here who give you codes or what have you can not be responsible for anything going wrong.

    Anyway, great site and best of luck.

    There was a bug with the last version whcih was giving me the exact same problem the OP mentioned. However, I just upgraded to the new version and it is fixed now.

    Just a thought:
    Are you sure you are actually using the latest version?…

    Thread Starter satrap

    (@satrap)

    Josh and alchymyth, thanks to both of you guys for taking time to help out.

    “how and where do you want to define ‘some’ and ‘certain’?”

    Thats the problem I have. I know there are a few ways to do that like by category or tags. But I only have one category and I don’t use tags, so I can not use that in the code to identify the posts and pages that can display the ad.

    The only way I assume it could be achieved is using the post ID to exclude or include .

    Thanks.

    Thread Starter satrap

    (@satrap)

    Thanks very much for your help again Alchymyth.
    Unfortunately, it still only shows the same set of posts of the specific category on every post of that category.

    However, while waiting for this I did some more digging and was able to find another code that is actually working well.

    I’ll post it here just in case anyone else needs it one day:

    <?php $this_post = $post;$category = get_the_category(); $category = $category[0]; $category = $category->cat_ID;$posts = get_posts('numberposts=5&offset=0&orderby=rand&order=DESC&category='.$category);$count = 0;foreach ( $posts as $post ) {if ( $post->ID == $this_post->ID || $count == 5) {unset($posts[$count]);}else{$count ++;}}?>
    <?php if ( $posts ) : ?>
    <div><ul>
    <?php foreach ( $posts as $post ) : ?>
    <li><a href="<?php the_permalink() ?>">
    <?php if ( get_the_title() ){ the_title(); } else { echo "No Related Post"; } ?></a></li>
    <?php endforeach // $posts as $post ?>
    </ul></div>
    <?php endif // $posts ?>
    <?php $post = $this_post;unset($this_post);?>

    Thank you again for taking time out of your busy day. I really appreciate it.

    Thread Starter satrap

    (@satrap)

    @alchymyth
    Thanks for taking time to help.
    Sorry, didn’t know the code would be broken like this.

    I am sorry I am not very familiar with coding. ‘foreach’ is used twice in the code, so I would have to just add the word ‘global $post;’ right before the actual word ‘foreach’, or there is more to it?….

    Thank you.

    Thread Starter satrap

    (@satrap)

    Thanks for your reply.

    I have tried using the menu option, but it doesn’t work.

    When I disable the plugin (exclude pages from navigation), 3 of the pages that are not on the menu appear in the navigation as well. But the weird thing is that 3-4 other pages that are not on the menu, don’t show there, which is what I want, but id dont know why the other 3 pages show?…

    Thanks in advance.

    Thread Starter satrap

    (@satrap)

    anyone ?

    Thread Starter satrap

    (@satrap)

    hi thank you for responding. no its not resolved yet and i know that when i use firefix it looks ok and there is no “X” there but when i use IE whichn i use the most, the “X” is there!
    any help would be appreciated. thank you

    Forum: Your WordPress
    In reply to: Feedback Welcome

    i think its a cool idea and i encourage you to keep going. as far as the first impression goes, i think if you could make your navbars links a different color or maybe when you hover, it would change to a different color, you know… because it looks kind of like a normal text, like it dos not introduce itself as a link and plus it would be a good idea to use capital for the first latter of each link. these are just my opinion which i tried to make it constructive rather than just negative for no reason. i hope its helpful.

    Forum: Your WordPress
    In reply to: it’s ALIVE!!!

    i think it is very unique and interesting. but there is something about the colors that is not right. i don’t know how to explain… i know that you wanted to give it a old antic look but i think it made it look like its a ….maybe not very alive…? you know what i mean ?
    maybe a little more darker colors for like the sidebar links or maybe even darken the content area or something like that.
    but again its just my opinion. other than that i think its pretty unique

    Thread Starter satrap

    (@satrap)

    Hi Jayw,thanks for taking the time to look at my blog. about adsense i just don’t have much experience with monetizing and since its very popular i figured why not(plus i just started so i am kind of experimenting with different monetizing sources). but are clickbank and paydotcom and such, better in giving you the result? in the mean time i will check them out. thank you again.

Viewing 15 replies - 16 through 30 (of 34 total)