Damien15
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Permalink and problem with including posts on a external webpageCould this be a htaccess problem??
Forum: Fixing WordPress
In reply to: Permalink and problem with including posts on a external webpageI have also tried it with no pluggins installed on the blog
Forum: Plugins
In reply to: [Facebook] Comments Problem – non facebook users can they stil post?thanks, is there any likely hood that gmail be added to that list.
also has anyone found this increase number of user posting spam?
Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer workingcan anyone help?
Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer workingmight be misunderstanding this but can’t see why .htaccess would stop php file pull info from another source
Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer workinghere is the .htaccess with peralinks set to none
RewriteOptions inherit # BEGIN WordPress # END WordPress
here is .htaccess with permalink set to postname
RewriteOptions inherit # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> # END WordPress
thanks
Damien
Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer workingHi I have removed it from the plymouth cathsoc site, then went at set my permalink to postname and check to see if the querry was working and it was not, back to saying no post to disaply
Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer workingnone, if I use any then the querry code on the main plymouthcathsoc.org.uk website stops working
Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer workingno, least don’t think so
https://www.damiensplace.co.uk is the main domain on the account wordpress is running on there but tis got its own files and it own data base
https://www.plymouthcathsoc.org.uk is perdomantly a html site, with only pages need to be interactive witen in php. it all hard coded exceot for the above code when it pulls articles from the blog
https://www.plymouthcathsoc.org.uk/blog/ has its own worpress files and database
the two blogs should not be sharing anything though they do have the same apps installed on each
6thanks
damien
Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer working.htaccess in main domain https://www.damiensplace.co.uk
RewriteOptions inherit RewriteEngine on RewriteCond %{HTTP_HOST} ^adultdyslexiahelp\.co\.uk$ [OR] RewriteCond %{HTTP_HOST} ^www\.adultdyslexiahelp\.co\.uk$ RewriteRule ^/?$ "http\:\/\/www\.atozdyslexiasolutions\.co\.uk" [R=301,L] RewriteCond %{HTTP_HOST} ^sherwellstudentgroup\.co\.uk$ [OR] RewriteCond %{HTTP_HOST} ^www\.sherwellstudentgroup\.co\.uk$ RewriteRule ^/?$ "http\:\/\/www\.plymouthcathsoc\.org\.uk" [R=301,L] Options -Indexes # 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
the .htaccess for the main website for the blog https://www.plymouthcathsoc.org.uk
RewriteOptions inherit
.htaccess for the blog at https://www.plymouthcathsoc.org.uk/blog/
RewriteOptions inherit # BEGIN WordPress # END WordPress
Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer working.htaccess in the main domains https://www.damiensplace.co.uk
RewriteOptions inherit RewriteEngine on RewriteCond %{HTTP_HOST} ^adultdyslexiahelp\.co\.uk$ [OR] RewriteCond %{HTTP_HOST} ^www\.adultdyslexiahelp\.co\.uk$ RewriteRule ^/?$ "http\:\/\/www\.atozdyslexiasolutions\.co\.uk" [R=301,L] RewriteCond %{HTTP_HOST} ^sherwellstudentgroup\.co\.uk$ [OR] RewriteCond %{HTTP_HOST} ^www\.sherwellstudentgroup\.co\.uk$ RewriteRule ^/?$ "http\:\/\/www\.plymouthcathsoc\.org\.uk" [R=301,L] Options -Indexes # 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
Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer workingHI I am running my hosting on cpanel.
I have my main domain https://www.damiensplace.co.uk
then I have added my other domains such as https://www.plymouthcathsoc.org.uk which is running on a subdomain.
My main site for plymouthcathsoc.org.uk is found in the root of this “sub-domain” there is the a folder for all the blog pages, /blog/
Mainsite – https://www.plymouthcathsoc.org.uk
|
*-blog Folder – https://www.plymouthcathsoc.org.uk/blog/Forum: Fixing WordPress
In reply to: Permalink and Website Intergration – loop no longer workingHi thanks for you advice esmi, mod_rewrite is working on the server as far as I can see the htaccess file is updating. Not sure if I explained the problem correctly.
Our main website is https://www.plymouthcathsoc.org.uk and our blog is located at https://www.plymouthcathsoc.org.uk/blog/
Our news and events pages pull articles directly from the blog. On the blog there a category for news and a category for events (plus others.
our news page can be found here https://www.plymouthcathsoc.org.uk/news.phpThe news page incude any article that is found in the news category (category 3) if Permalink is running on the default settings the url for the category is as follows https://www.plymouthcathsoc.org.uk/blog/?cat=3 however if i set permalink to say https://www.plymouthcathsoc.org.uk/blog/news/ the pagesz then tell me there no posts matching my criteria
The code I am using on the php pages is as follows
<?php query_posts($query_string . '&cat=3'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="post"> <!-- Display the Title as a link to the Post's permalink. --> <h4><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4> <!-- Display the date (November 16th, 2009 format) and a link to other posts by this posts author. --> <small>Posted <?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small> <div class="entry"> <?php the_content(); ?> </div> <hr></hr> <p></p> </div> <!-- closes the first div box --> <?php endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?>
If I turn on permalinks and set it to use something other than default do I need to change this line of code
<?php query_posts($query_string . '&cat=3'); ?>
Thanks
DamienForum: Plugins
In reply to: [wordpress-seo] installed plugin can't intergrate wordpress with website pagethis is wordpress-seo
Forum: Fixing WordPress
In reply to: Displaying articles on a web page matching a 1 categoryworked it out just removed the -number and pub the number of the catagory