Knordelia
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multisite with existing websites in subdirs?Thanks for the reply.
Yeah, I found out that the .htaccess file in the root and the .htaccess file in the folder for that site that is affected by the 403 error are causing this problem.
Do you know what phrase/code I have to find in these .htaccess files that might cause the error?
When I install Multisite, then the main site (= the multisite network administration site) is in the root folder, right?
And all additional sites are stored within the root installation, there is no sub-directory for them, right?
So right now my situation is:
/root –> WP MultiSite Installation
/root/site1 –> Older WP site (before multisite-installation); working
/root/site2 –> Older WP site (before multisite-installation); working
/root/site3 –> Older WP site (before multisite-installation); not workingForum: Fixing WordPress
In reply to: Help – Plugins not showing – unknown problem?Me too 🙂 Thanks.
Forum: Fixing WordPress
In reply to: Help – Plugins not showing – unknown problem?Okay.
Merely following the WordPress guide on the manual update didn’t solve the problem.
I also had to delete all the other files and folder via FTP.
I made a backup before, so I could easily upload them again. But somewhere there was the mistake.
Thanks.
Topic can be closed.
Forum: Fixing WordPress
In reply to: Help – Plugins not showing – unknown problem?Thanks, I will try that today.
Forum: Fixing WordPress
In reply to: Help – Plugins not showing – unknown problem?Unfortunately I get this for every plugin I try to activate after installation – the same error message.
Forum: Fixing WordPress
In reply to: Help – Plugins not showing – unknown problem?Thanks for the reply.
I tried as you suggested, but it is still not working. I tried to activate a plugin again after installation and I still get this message “The plugin does not have a valid header.”
Also I don’t have any plugin installed currently – I’ve deleted them all from the plugins folder. Manually, as I could not deactivate and uninstall them, because I didn’t get into the wp-admin/plugins.php anymore.
I also deleted all of the W3 Total Cache plugin as described here, as I thought this was the culprit.
Could there be something else in the htaccess file? Earlier I deleted all entries from “All in one WP Security”, but this didn’t change anything either back then.
Damn…I really don’t know what to do anymore.
Forum: Fixing WordPress
In reply to: Thumbs and images not visibleThanks for your reply. The site is currently in maintenance mode and I can’t turn it off right now.
Actually one thing that I forgot to mention. Thumbs of posts are not shown although they are stored externally (external url).
What confuses me most is that plugins, etc. are working, only images no matter if backend or frontend are not displayed.
Could it actually be a setting in .htaccess (maybe set up via cpanel of the webhost) or caused by security plugins?
Forum: Fixing WordPress
In reply to: Thumbs and images not visibleDoesn’t anyone have any idea?
It would also help to know where to look or for what to search. So far all my searches didn’t bring any result.
Forum: Fixing WordPress
In reply to: Thumbs and images not visibleDoes anyone have an idea how to solve this issue?
Is more specific information required?
Forum: Plugins
In reply to: [WP-PostRatings] wp-postratings on front page not workingThanks! That did the trick.
I’ve inserted your code above in the content.php here (post meta group):
<div class="post-meta group"> <?php if(!is_single()): ?> <?php echo the_ratings_results(get_the_id()); ?> <?php endif; ?> <p class="post-category"><?php the_category(' / '); ?></p> <p class="post-date"><?php the_time('j M, Y'); ?></p> </div><!--/.post-meta-->Now it seems to work as wished and looks nice. I will try remembering to give you a review on the plugin after some time in actual use (wills till take some time).
Thanks again!
Forum: Plugins
In reply to: [WP-PostRatings] wp-postratings on front page not workingThanks for your reply.
I’m not so good in this, sop just to make sure. I put this code
<?php echo the_ratings_results(get_the_id()); ?>somewhere here in the template’s index.php?
<section class="content"> <?php get_template_part('inc/page-title'); ?> <div class="pad group"> <?php get_template_part('inc/featured'); ?> <?php if ( have_posts() ) : ?> <div class="post-list group"> <?php $i = 1; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?> <?php get_template_part('content'); ?> <?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?> </div><!--/.post-list--> <?php get_template_part('inc/pagination'); ?> <?php endif; ?> </div><!--/.pad--> </section><!--/.content-->Where exactly do I put the code
!is_single()?Thanks!
Forum: Plugins
In reply to: [WP-PostRatings] wp-postratings on front page not workingIt’s not working properly.
What I did:
Added your code in my theme’s (Hueman) index.php as shown below:
<div class="post-list group"> <?php $i = 1; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?> <strong><?php echo the_ratings_results(get_the_id()); ?></strong> <?php get_template_part('content'); ?> <?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?> </div><!--/.post-list-->Added the code below to my theme’s single.php:
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>While the rating itself seems to work properly, showing the results on the front page does not work as I want to. It looks like this. The stars are not above each post, but “gathered” on the right side in every line of posts.
The stars should be above every post (the post they are related to).
How can I fix this?
Thanks again in advance!
Forum: Plugins
In reply to: [WP-PostRatings] wp-postratings on front page not workingThanks, I’ll try that asap and give a feedback on how it worked.
Forum: Everything else WordPress
In reply to: Identifying site's owner via hackGetting the target’s consent ahead of time would remove that problem.
Yeah, but unlikely that consent would be given.
After some research it seems that anonymous web hosting would be the best solution to be sure. Otherwise there is a risk to be identified and in the worst case end up like the guys from charlie hebdo.
In my opinion here is also the problem that such deeds as in Paris create this atmosphere where you can’t be sure anymore. If that person for whom I do this would just go with that setup as he/she has now, it might be as well that nothing would happen – maybe some threat mails…but after Paris it seems risky. That is exactly what “they” want. 🙁
Forum: Everything else WordPress
In reply to: Identifying site's owner via hackMaybe an anonymous offshore hosting server would a solution then?