Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Home page reverts back to latest postsGo to “Settings” –> “Permalinks”
then change nothing on the page and click on “Save”Forum: Fixing WordPress
In reply to: 404 Error File Not Found (sometimes)Hi,
Have you tried to remove :
# Use PHP5CGI as default AddHandler fcgid-script .phpand leave this :
# 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 WordPressas it’s the default WordPress settings for Htaccess file.
Forum: Fixing WordPress
In reply to: Allow Search Engines to Index my SiteHi,
I don’t know this issue, but this behavior is not normal.
Forum: Fixing WordPress
In reply to: Home page reverts back to latest postsHi,
I don’t know this issue…
Have you tried to rebuild your permalinks structure ?Forum: Fixing WordPress
In reply to: Video pop-up from a text linkHi,
Sure, it’s possible.
On my blog, I use Lightbox Plus
Perhaps you already installed it ?!? If not, do it.once it’s installed, you can follow the instructions here to create a lot of advanced things and sure if you already created photo galleries, Lightbox Plus will show pictures with the powerfull Lightbox Style – Click once, and your site is darkened and photos appear on the foreground !
For example, to embed a Youtube Video with a simple one-click link, put this code into your post :
<a title="Example" class="lbpModal cboxElement" href="http://www.youtube.com/embed/3Uo0JAUWijM">Happy New Year !!!</a>class=”lbpModal cboxElement” will call Lightbox Plus core to build the video lighbox when a user click on the link (may be text/image) and the rest of the website content is darkened.
http://www.youtube.com/embed/3Uo0JAUWijM is the Embed URL type for your Youtube video. (you can use the Embed URL for Vimeo video, dailymotion video and whatever the video player.
And you can do that with videos, flash contents, images, iframe…
Forum: Fixing WordPress
In reply to: 404 crawl errors google webmaster toolsIn Google Webmaster Tools, go to “URL Parameters” and look for a wrong parameter.
Then, you can’t remove it, but you will be able to modify it to allow the Google Crawlers to crawl or not the matching URL structure. There are many option for you.Forum: Fixing WordPress
In reply to: Continue reading Only Works in Category ViewI’m not sure, but your template here above is calling the content using another template to display posts ?
<?php get_template_part( 'content', 'page' ); ?>No ?
Forum: Fixing WordPress
In reply to: Continue reading Only Works in Category ViewThey talk about the loop, the loop refers to the code that starts with :
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>and finish with something like that :
<?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>It’s simple…
WHILE (start of the loop)
ENDWHILE (end of the loop)So you’ve juste to insert :
<?php the_content(‘Continue Reading’); ?>
between the WHILE and the ENDWHILE.Usually just after the post entry.
Forum: Fixing WordPress
In reply to: Edit media preview not workingOK, it seems other guys had the same issue like you.
check your functions.php file, and any files included within.
if there are any errors or even empty lines strange things and errors will occur in wp-admin (WordPress Dashboard)The problem may be an empty line between PHP tags
<?php function(){ ... } ?> <?php function(){ ... } ?>needs to be :
<?php function(){ ... } ?> <?php function(){ ... } ?>Forum: Fixing WordPress
In reply to: Continue reading Only Works in Category ViewHe,
Please continue reading http://codex.wordpress.org/Customizing_the_Read_More 😉
This will help you
Forum: Fixing WordPress
In reply to: Edit media preview not workingIn a post, do you try to do “insert media” then find and select the new media (generated after crop/resize) ?
If yes, when you save the post, is the image appears correctly in the post ?Forum: Fixing WordPress
In reply to: Error message when i log on to the dashboardHi,
This could happen after the WordPress installation or an update of the file called wp-config.php.
Download the file called wp-config.php on your server.
Edit this file with Notepadd ++ (for example).
Change the file format to UTF-8 and save the file.
Finally, upload and overwrite it on your server !That’s it !
Forum: Fixing WordPress
In reply to: Blackhole exploit problemsHi,
First, follow these instructions :
http://codex.wordpress.org/FAQ_My_site_was_hackedForum: Fixing WordPress
In reply to: Edit media preview not workingNot like this, you have to find the URL your browser try to display, not the URL that the link open.
Do you have “properties” when you do a right click ?
Forum: Fixing WordPress
In reply to: Edit media preview not workingNo… With your browser, do a right click on the broken image and select “Properties” (or somethinkg like that), this will give you the new image URL/name.
Then check for this image URL/name exist on wp-content/uploads/2012…