Title: caylean's Replies | WordPress.org

---

# caylean

  [  ](https://wordpress.org/support/users/caylean/)

 *   [Profile](https://wordpress.org/support/users/caylean/)
 *   [Topics Started](https://wordpress.org/support/users/caylean/topics/)
 *   [Replies Created](https://wordpress.org/support/users/caylean/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/caylean/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/caylean/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/caylean/engagements/)
 *   [Favorites](https://wordpress.org/support/users/caylean/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 53 total)

1 [2](https://wordpress.org/support/users/caylean/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/caylean/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/caylean/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/caylean/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problem with WordPress Image Renaming Feature](https://wordpress.org/support/topic/problem-with-wordpress-image-renaming-feature/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/problem-with-wordpress-image-renaming-feature/#post-8217990)
 * So its a bug, great … THANKS .. didn’t even know for what to search exactly in
   that list, but if you see there something, its fine 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] Point release 6.1.4 is live today](https://wordpress.org/support/topic/point-release-614-is-live-today/)
 *  [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/point-release-614-is-live-today/#post-7301585)
 * I know, you do not reply to support requests here, but I just wanted to tell 
   you that since this Update, Wordfence doesn’t let me save my widgets anymore.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Directory Script on Mainpage and a Multi WP for Subdomains possible?](https://wordpress.org/support/topic/directory-script-on-mainpage-and-a-multi-wp-for-subdomains-possible/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [10 years ago](https://wordpress.org/support/topic/directory-script-on-mainpage-and-a-multi-wp-for-subdomains-possible/#post-7209880)
 * Forgot to check “Mark this topic as resolved” *sigh* and thats not possible to
   edit 🙁
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Directory Script on Mainpage and a Multi WP for Subdomains possible?](https://wordpress.org/support/topic/directory-script-on-mainpage-and-a-multi-wp-for-subdomains-possible/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [10 years ago](https://wordpress.org/support/topic/directory-script-on-mainpage-and-a-multi-wp-for-subdomains-possible/#post-7209879)
 * As I am no more able to edit my previous Post (That didn’t worked out at all),
   I’d like to put the Answer here as a link, as I do not wish to copy my text from
   there to here… kind of DC and so eh 😉
 * **This solution works for WHM/cPanel Servers**: [http://stackoverflow.com/questions/36272849/how-to-give-www-domain-tld-its-own-seperate-folder](http://stackoverflow.com/questions/36272849/how-to-give-www-domain-tld-its-own-seperate-folder)
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Directory Script on Mainpage and a Multi WP for Subdomains possible?](https://wordpress.org/support/topic/directory-script-on-mainpage-and-a-multi-wp-for-subdomains-possible/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [10 years ago](https://wordpress.org/support/topic/directory-script-on-mainpage-and-a-multi-wp-for-subdomains-possible/#post-7209872)
 * I have found a solution that would give me a wordpress in [http://domain.tld/](http://domain.tld/)
   and [http://www.domain.tld/](http://www.domain.tld/) shows the content of the
   folder www … Right now I am uploading the Directory Script to the www folder 
   to check if it can work also from there as intended….
 * At the Moment I have the Problem that the htaccess rule that is used to accomplish
   this effect, gives me a 500 error whenever I add the htaccess rules from wordpress.
 *     ```
       RewriteCond %{HTTP_HOST} ^www\.domain\.tld$
       RewriteCond %{REQUEST_URI} !^/www/
       RewriteRule (.*) /www/$1
       ```
   
 * works, but
 *     ```
       RewriteCond %{HTTP_HOST} ^www\.domain\.tld$
       RewriteCond %{REQUEST_URI} !^/www/
       RewriteRule (.*) /www/$1
   
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /index.php [L]
       </IfModule>
       # END WordPress
       ```
   
 * cripples me again.
 * Any ideas how to solve this?
 * Edit:
 *     ```
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /index.php [L]
       </IfModule>
       # END WordPress
   
       RewriteCond %{HTTP_HOST} ^www\.domain\.tld$
       RewriteCond %{REQUEST_URI} !^/www/
       RewriteRule (.*) /www/$1
       ```
   
 * WORKS… Now I have to see if the rest also works out as I wish to have it.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Custom Theme shows on page/2 same content as on homepage](https://wordpress.org/support/topic/custom-theme-shows-on-page2-same-content-as-on-homepage/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/custom-theme-shows-on-page2-same-content-as-on-homepage/#post-5049992)
 * Solution that worked for me
 *     ```
       <?php if (have_posts()) : ?>
       <?php while (have_posts()) : the_post(); ?>
       <div class="single-post floatleft" id="post-<?php the_ID(); ?>">
       <span><?php if(function_exists('the_ratings')) { the_ratings(); } ?> </span>
       <a href="<?php the_permalink()?>"><?php the_post_thumbnail('post-thumb'); ?>
       <h3><?php the_title()?></h3></a>
       </div>
       <?php endwhile; ?>
       <?php else : ?>
       <h3><?php _e('Fehler 404 : Nichts Gefunden'); ?></h3>
       <?php endif; ?>
       ```
   
 * Used a new ‘opening’ Code: <?php if (have_posts()) : ?> <?php while (have_posts()):
   the_post(); ?>
    added: id=”post-<?php the_ID(); ?>” to the Posting added: used
   a correct PHP closing code et voilà, it worked!
 * Posting amount is now cunfugured with Settings in WP himself.
 * Would that be clean? It DOES work… for now thats what counts for me 😉
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Uploaded Images getting Lost](https://wordpress.org/support/topic/uploaded-images-getting-lost/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/uploaded-images-getting-lost/#post-4929569)
 * I do pre-edit my Themes (not child themes) offline and do other changes (fine
   tuning like missed english words, missing images, adding hard coded ‘widgets’
   above/below all others) directly online *headscratch*
    Never thought if that 
   could be the wrong/right way. Usually I have of the Themes 2-4 Backups.
 * Here is a List of my active Plugins:
 * **Globally activated Plugins:**
    Antispam Bee BWP Google XML Sitemaps Conditional
   Widgets EWWW Image Optimizer Quick Cache Tagcloud (customized Plugin for Tagclouds)
   WP-PageNavi WP Permalauts
 * **Plugins that are in the ‘Main’-Blog activated:**
    Login LockDown Multi-Site
   Site List Shortcode WordPress Database Backup
 * **Plugins activated for each Blog himself:**
    O3 Social Share
 * The only one that is related to images would be “EWWW Image Optimizer” so that
   images are progressive and stuff, for faster load times. So that could be the
   source of the troubles?
 * Kind Regards
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Uploaded Images getting Lost](https://wordpress.org/support/topic/uploaded-images-getting-lost/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/uploaded-images-getting-lost/#post-4929566)
 * Sorry for bumping, but after i didn’t got a reply i thought it would end up forgotten
   in the depth of the board ^^
 * > Are the images missing from the Media Library as well?
 * Yes, they are gone like they would never had existed.
 * > If not, what happens when you paste the URL into the browser?
 * As they are missing in the Library AND Server (checked via FTP) i get a 404 error
   message.
 * > You shouldn’t edit the php files directly like that.
 * I am having a hard time getting in touch with child themes and none of my themes
   will be updated, because usually they are custom made, nothing from the WordPress
   Themes Pool.
 * > When you need to add media to the THEME (not the content), you should upload
   > it via FTP.
 * Seemed more easy with the Media Uploader, never expected that something would
   get deleted if not used the way WordPress expects me to do.
 * > Have you asked your hosts about any backups?
 * So far not, could get the problem solved with personal backup.
 * The reason I am here asking about that was more to find out why it happened, 
   to prevent it. Well, if I do use FTP it can’t happen anymore, but that would 
   still keep the Question up if WordPress DOES delete by himself files that are“
   unused”.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [WordPress MU Plugin Control to deny access to some Plugins](https://wordpress.org/support/topic/wordpress-mu-plugin-control-to-deny-access-to-some-plugins/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/wordpress-mu-plugin-control-to-deny-access-to-some-plugins/#post-3981727)
 * Something like Plugin Commander seems to be fitting.. but also this one seems
   very outdated on [http://wordpress.org/plugins/plugin-commander/](http://wordpress.org/plugins/plugin-commander/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [www.domain instead of http://domain in WP Multiuser](https://wordpress.org/support/topic/wwwdomain-instead-of-httpdomain-in-wp-multiuser/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/wwwdomain-instead-of-httpdomain-in-wp-multiuser/#post-3808213)
 * Uhm, no Answer means that i can forget it?
 * I have dozenz of links hitting [http://www.domain.tld](http://www.domain.tld)
   but the domain is purely redirecting what gets there, that can’t be really good
   🙁
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Google mixes Title Tags strange](https://wordpress.org/support/topic/google-mixes-title-tags-strange/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/google-mixes-title-tags-strange/#post-3671239)
 * *cough* AdultTemplateEvolution *cough*
    They do lots of templates, but most are
   more for kind of Adult Websites
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [echo category_description not working in index.php?](https://wordpress.org/support/topic/echo-category_description-not-working-in-indexphp/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [13 years ago](https://wordpress.org/support/topic/echo-category_description-not-working-in-indexphp/#post-3586800)
 * Stupid me!
    The index.php is really just for the / page. If i go now into an 
   Category the achive.php file is in charge!
 * Everybody, everywhere you read that you have to put it into the achive.php file,
   but somehow i was so sure that it always meant something different.
    Now it is
   function as it should be. <? $cat_id = get_the_category(); echo category_description(
   $cat_id); ?> IS function, BUT <?php echo category_description(); ?> is function
   TOO.
 * Thank you very very much. Now i just have to complete my descriptions and it 
   is all really nice and smooth 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [echo category_description not working in index.php?](https://wordpress.org/support/topic/echo-category_description-not-working-in-indexphp/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [13 years ago](https://wordpress.org/support/topic/echo-category_description-not-working-in-indexphp/#post-3586799)
 * I just digged out an old post from 4 years ago
    [http://en.forums.wordpress.com/topic/showhide-category-descriptions](http://en.forums.wordpress.com/topic/showhide-category-descriptions)
 * As far as the author said what i am doing was once fine. Was there maybe such
   a major change in the code that this function was deleted, overseen or something?
 * Maybe kind of buggy?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [echo category_description not working in index.php?](https://wordpress.org/support/topic/echo-category_description-not-working-in-indexphp/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [13 years ago](https://wordpress.org/support/topic/echo-category_description-not-working-in-indexphp/#post-3586798)
 * Thanks for your Help, but as far as i tested it, it isn’t function 🙁
 * @MegaToon TV, i do not have an category.php in the Template
 * @Slchymyth, Your Code isn’t function. I have placed it where i did it always 
   before and there is nothing shown.
    (The Place is fine, i had tested it already
   with a static Text and it was shown where I wanted to have the description. Also
   is the Code not to be found in the Sourcecode of the complete loaded Blog.)
 * index.php:
 *     ```
       <div id="content">
       <div style="padding: 0 10px 5px 10px;"><?php $cat_id = get_the_category(); echo category_description($cat_id[0]->term_id); ?></div>
       <div class="main_title">
       ```
   
 * Sourcecode on loaded site:
 *     ```
       </div>
       <div id="content">
   
       <div class="main_title">
       ```
   
 * To me it seems strange. You can add such a ‘wonderful’ thing to your categories
   to make them more attractive, but there isn’t an easy way to do so.
    Shouldn’t
   be there somewhere a marker or something that tells already “Hey, you are in 
   Category 7” so that <?php echo category_description(); ?> could get the needed
   information without any complications?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [echo category_description not working in index.php?](https://wordpress.org/support/topic/echo-category_description-not-working-in-indexphp/)
 *  Thread Starter [caylean](https://wordpress.org/support/users/caylean/)
 * (@caylean)
 * [13 years ago](https://wordpress.org/support/topic/echo-category_description-not-working-in-indexphp/#post-3586790)
 * _[ [http://codex.wordpress.org/Forum\_Welcome#No\_Bumping](http://codex.wordpress.org/Forum_Welcome#No_Bumping)]_
 * Nobody any ideo or is my question that stupid and easy to answer that it should
   be solved by myself already 😉
 * Say like that, i found several instructions and also the codex was checked for
   it, but whatever i do, there is no shown description when i place it in the index.
   php

Viewing 15 replies - 1 through 15 (of 53 total)

1 [2](https://wordpress.org/support/users/caylean/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/caylean/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/caylean/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/caylean/replies/page/2/?output_format=md)