Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: "www" in the URL is missedI think you’ve something like :
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} !^mywebsite\.com$ [NC] RewriteRule ^(.*)$ http://mywebsite.com/$1 [R=301,L] </IfModule>Change this to :
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} !^www.mywebsite\.com$ [NC] RewriteRule ^(.*)$ http://www.mywebsite.com/$1 [R=301,L] </IfModule>Forum: Fixing WordPress
In reply to: "www" in the URL is missedYou’ve a problem with the REWRITE protocol into your HTACCESS file.
Paste the content of your .htaccess file, I will see what’s wrong.
Here is an exemple of .htaccess file :
# BEGIN WordPress <ifmodule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </ifmodule> # END WordPressForum: Fixing WordPress
In reply to: how to replace the logo.png.Give us URL of your website…
Forum: Fixing WordPress
In reply to: how to delete phantom page?Are you sure you don’t have a folder called “short-biography” into your “www” folder ? Using FTP, I mean.
Forum: Fixing WordPress
In reply to: Internal Error 500 (theme is causing it)Can you send me the theme folder ? Just to test and see what is going on.
Send it using megaupload.comForum: Fixing WordPress
In reply to: Internal Error 500 (theme is causing it)Hi,
Is the theme you’ve bought compatible with the release of WordPress you’re using actually ?
Forum: Fixing WordPress
In reply to: Picture/link problemNo image displayed for the moment at your site !
Forum: Fixing WordPress
In reply to: RSS Feed works depending the browserOK…
RSS Feed are not a useful feature for my site, I disabled it.the problem is solved 😉
Forum: Plugins
In reply to: SexyBookmarks (an invalid / misplaced quotation in sharer function)Not really resolved… I’ve just removed the Facebook sharer icon and left the others.
Forum: Fixing WordPress
In reply to: Remove a SidebarHere is the result !!!
Forum: Fixing WordPress
In reply to: Remove a SidebarHi,
Sorry for the delay…
In your sidebar.php file, search the HTML code that correspond to the <div id=”r_sidebar”> container, then delete the entire container. (from <div id=”r_sidebar”> to the </div> of the same level.)
Then, into your CSS file (usually called ‘style.css’)
Go to the rules called #l_sidebar and see the ‘Width’ attribute, put the value ‘350px’ instead of ‘160px’
and add the attribute ‘Height’ with the value ‘100%’It should work, I’ve made some test on your website.
Otherwise, if you want make something cleaner, then you can replace everywhere the HTML code <div id=”r_sidebar”> by <div id=”main_sidebar”> and do the same into your CSS file, you’ve just to replace the rule #l_sidebar by #main_sidebar
Bye
Forum: Fixing WordPress
In reply to: HeadersIs it work ?
Forum: Networking WordPress
In reply to: Force Multisite in 'Sub-directory' modeOK, this is what I understood.
I’ve just to replace :
define( 'SUBDOMAIN_INSTALL', true );
by
define( 'SUBDOMAIN_INSTALL', false );???
Forum: Fixing WordPress
In reply to: 403 .htaccess problemOK…
create a copy of your .htaccess file, then replace all the lines by :
Order allow,deny
allow from allThen, save this file as .htaccess and upload it / overwrite it on your server. And you’ll see what’s happen. This can’t impact your server.
Forum: Fixing WordPress
In reply to: HeadersHi,
Make this folder writable
/home/xxxxx/public_html/blog/wp-content/uploads/Put the value 755 for permissions of this folder