Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to open wp-adminHummmm… I’ve found the problem, this plugin is installed here :
..\wp-content\plugins\wp-contact-sidebar-widgetThe error message you have says :
Warning: require_once(../wp-content/plugins/wp-contact/class.contact.php) [function.require-once]: failed to open stream: No such file or directory in D:\Hosting\5942597\html\wordpress\wp-content\plugins\wp-contact-sidebar-widget\wp-contact.php on line 71There is something wrong here !!!
Wordpress try to read a file in
..\wp-content\plugins\wp-contact-sidebar-widget\wp-contact.php
But if I install the unzip the plugin I saw that the real path is
..\wp-content\plugins\wp-contact-sidebar-widget.1.0\wp-contact.php!!!So, with FTP, try to rename the directory “wp-contact-sidebar-widget” with “wp-contact-sidebar-widget.1.0”
Forum: Fixing WordPress
In reply to: Unable to open wp-adminOK, so now, edit your message to remove the account + password, it must stay secret.
Can you send me the account of your FTP connection ? Like that, I’m able to upload the plugin again and perhaps solve your problem.
Forum: Fixing WordPress
In reply to: WP Showroom Problem (wont generate thumbnails or insert pics)Hummmm… I think this plugin is so not supported on 2.9.2 !
regarding the comments on this page http://faild.de/wpshowroom/
it seems some people have problems !Forum: Fixing WordPress
In reply to: Unable to open wp-adminHi Dleonte,
Try to upload the Plugin files and overwrite them.
I could solve the problem…Otherwise, give me your admin account + password, You’ll be able to change it after my intervention.
Forum: Fixing WordPress
In reply to: WP-Stats plug-inYes, see here http://wordpress.org/extend/plugins/wp-stats/
In the bottom right, you can see there is “Not enough data” to determine if 2.9.2 is compatible or not.Forum: Fixing WordPress
In reply to: WP-Stats plug-inWhich version of WordPress do you use ? 2.9.2 ???
If you are using the “wp-stats” plugin, it seems it is not supported on WordPress 2.9.2
Forum: Fixing WordPress
In reply to: cannot change themesHi Jackfussell,
See if you have this at line #3601 :
$file_data = fread( $fp, 8192 );If not, try to increase the numeric value
Forum: Fixing WordPress
In reply to: Disable ‘attachment’ posts without remove the MediasI’ve found solution into another old topic…
The only thing I can do is to redirect every attachment page/posts to its parent URL :1) Create a new PHP file
2) Paste this line in it :
<?php wp_redirect(get_permalink($post->post_parent)); ?>
3) Save the file as “image.php”
4) Upload it into your theme folderThat’s it !
Now, every request to http://www.riversatile.fr/2010/04/18/lost-saison-6-photos-promotionnelles-episode-14/promo-lost-S06E14_06/ redirect to its parent URL : http://www.riversatile.fr/2010/04/18/lost-saison-6-photos-promotionnelles-episode-14/But it doesn’t disable indexing by Google ! Sorry
Forum: Plugins
In reply to: Redirect Attachment page to Post page – How To?Yeah !!!!!! It’s incredible ! It works 😉
Thanks Kirk T
CheersForum: Fixing WordPress
In reply to: Disable ‘attachment’ posts without remove the Medias…I’ve not found any solution
Forum: Fixing WordPress
In reply to: floating navigation over headerSee the result here :
http://www.monsterup.com/upload/1272703051640.pngForum: Fixing WordPress
In reply to: floating navigation over headerOK…Very easy !!!
I used Firefox with “Firebug” to find the CSS solution !See below :
1) Separate the 2 CSS IDs “#suckerfishnav” and “#suckerfishnav ul” contained here :
#suckerfishnav, #suckerfishnav ul { float:right; list-style:none; line-height:20px; padding-right:16px; margin-top:157px; width:100%; }Like that :
#suckerfishnav { float:right; list-style:none; line-height:20px; padding-right:16px; margin-top:157px; width:100%; } #suckerfishnav ul { float:right; list-style:none; line-height:20px; padding-right:16px; margin-top:157px; width:100%; }2) Change some parameters in the CSS of the ID “#suckerfishnav” like that :
#suckerfishnav { float:right; list-style:none; line-height:20px; padding-right:16px; margin-top:137px; width:100%; z-index:100; position:relative; }– I have change margin-top:137px; by margin-top:157px; because you want the menu up 20px 😉
– z-index attribute allows to place the DIV (layer) above the other DIV, so your menu appear in first instead of appear below your logo !
– position:relative; is mandatory when you use a z-index attribute
Finally, it works !!!
Cheers
Forum: Plugins
In reply to: Redirect Attachment page to Post page – How To?@kirk T
I want to do the same on http://www.riversatile.fr for the same reason.
But my template for attachment is the file “single.php”, this file is already used for all posts, I don’t know where do I put the line :
<?php wp_redirect(get_permalink($post->post_parent)); ?>
From my understanding I should have a dedicated file for attachment request ??? Then put this line in it ?Thanks for your help
Forum: Fixing WordPress
In reply to: Disable ‘attachment’ posts without remove the MediasSorry, What mean “remove the loop” ?
Forum: Fixing WordPress
In reply to: .Htaccess within wp-admin folderIt’s useful to prevent SPAM/HARVEST BOTS sniff your entire website/wordpress structure.
An HTACCESS file is useful when you know a specific IP address of a user you want to ban.