webhostinguk
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Blog for multi user and multiple authorsWordPress is 100% capable of doing this. Multiple authors is not a problem and multiple blogs can also share same database.
Themes can be easily modified from admin section of your blog.
Forum: Fixing WordPress
In reply to: Error accessing Pages, Archives, or CategoriesYou need to add following option to your .htaccess file :-
Options -Indexes
Forum: Fixing WordPress
In reply to: post headingsYou have this option under Options >> Reading >>
You can increase the number of show recent posts and click on summary rather than full post.
Forum: Fixing WordPress
In reply to: Blog disappeared and have blank page suddenlyYou have problem with php on your webserver. Have your server provider to rectify this problem. Probablly recompile of php or restart of http service would solve the problem.
Forum: Fixing WordPress
In reply to: How can I show my blog on my website?The link I gave you which calls the latest blog entries and you get complete URL to those blog entires. You can use a javascript include statement in your html page same way like you call header or footer. Instead of calling the header or footer you should parse link from the above code in your html page.
Forum: Fixing WordPress
In reply to: Blog Suddenly Not WorkingSimran,
You should check the ownership and permission of the blog directory. Seems like something is wrong with the permission coz if mysql was down then the error you would have got would have been different.
This error is due to wrong permission on your blog directory or public_html
Forum: Fixing WordPress
In reply to: How can I show my blog on my website?We have added following code in footer of our forum to show latest blog entries :-
<center><span class=”admin-link”><b>Latest Blog Entry</b>
<script language=”JavaScript” src=”http://itde.vccs.edu/rss2js/feed2js.php?src=http%3A%2F%2Fblog.webhosting.uk.com%2Ffeed%2F&chan=n&num=3&desc=0&date=y&targ=n” type=”text/javascript”></script>
</span><br><span class=”admin-link”>WebHosting UK Home – Web Hosting Blog<br><br>
<span class=”admin-link”>{ADMIN_LINK}</span>
<span class=”copyright”>You can check the resumt of this code on our forum located at http://www.webhosting.uk.com/forums/
Forum: Fixing WordPress
In reply to: Google is not Caching my posts, what to do?>I tried to open couple of categories on your blog and that resulted in a 404 error. You have some problem with the server on which you have hosted your blog. either timeout limit set is low or you have some problem with mysql service on the server.
You should ask your webhosting provider to rectify this error as samething is happening when google spiders try to crawl on your blog.
If you check our blog at http://blog.webhosting.uk.com then you will notice that all posts in our blog get listed in google.
Forum: Fixing WordPress
In reply to: Sidebar Widgets Npt Updating BlogYou should make sure that sidebar.php is writable. Incase of Linux servers we set it to 777 to make changes in sidebar and make it 644 once again when you complete the changes. You should find sidebar.php inside wp-content/themes/yourtheme directory.
Forum: Plugins
In reply to: 404 errors when submitting a formYou should use submit action to submit the form and post method to post the form. Sample code for both would be as follows :-
<form name=form1 action=”http://www.webhosting.uk.com/cgi-bin/FormMail.pl” method=post>
&
<input type=”submit” name=”Submit” value=”Submit” class=”home_button”>
<input type=”hidden” name=”recipient” value=”contact@webhosting.uk.com”>
<input type=”hidden” name=”redirect” value=”http://www.webhosting.uk.com/thankyou.php”>
<input name=”subject” type=”hidden” id=”subject3″ value=”Form Submission”>Forum: Fixing WordPress
In reply to: .htaccess correct permissions666 should have no problems as I’ve never seen anyone injecting .htaccess file so far. . is used to hide files and its very difficult to inject hiden files.
Forum: Everything else WordPress
In reply to: My blog was hacked. How can I beef up security?You must have left some of the php files in your blog with 777 permission. Most probablly the themes were left with 777 permission as you need to keep them with that permission to modify them from admin section of your wordpress blog.