Cypher
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Missing tabs in Administration MenuGo to the Users tab and take a look at your “Level”. If it is anything other than 10, then you are account isn’t an admin account and won’t be able to see the other tabs.
So first thing, ensure you are indeed logging into your system using your admin account (just ‘admin’ in most cases).
If indeed your admin account has been demoted, you can go in through phpMyAdmin and promote it again.
Regards
Forum: Plugins
In reply to: Witty Plugin Hack?Be aware that if the plugin is probably using the “fopen” call to open the local file for reading and more and more hosts are disabling the ability of using “fopen” on remote files.
So this plugin, when modified to read a remote file, might mysteriously fail to load the file. All’s not lost though, in addition to making the change of reading a remote file, the plugin will have to use CURL to get access to the file which should work.
Regards
Forum: Plugins
In reply to: Mailing friend on new postThere is a Email Notification plugin that you can install which will allow people to subscribe to your blog and get email notification when you make any new posts.
To restrict posts viewing by only a set list of people, you can password protect the post and share the password with only those people.
Regards
Forum: Fixing WordPress
In reply to: Any good rating plugin?I’ve tried that plugin and it is for Authors to rate their own posts as opposed to visitors to rate posts.
Regards
Forum: Fixing WordPress
In reply to: playing with backup databaseYes, if there are comments identified as SPAM by WP, then it will remain in your database but not be visible on regular posts.
You can go to your Admin section and then Manage->Comments and click the link that says “only spam” which will show you all the spam in red. You can then enter “Mass edit mode” click all the spam and delete it.
You can also delete it in the database directly using phpMyAdmin, but doing it through WP is easier. 🙂
Regards
Forum: Fixing WordPress
In reply to: Non public hack area – how?Most people usually deploy a second installation of wordpress under a subdomain or a subfolder only known to you that you can play around with and whatever works, you can integrate into your regular blog.
This allows you to re-install it without having to worry about saving any information.
Regards
Forum: Fixing WordPress
In reply to: RSS FeedCG-FeedRead is your answer.
Regards
Forum: Themes and Templates
In reply to: Not showingStart with this:
http://codex.wordpress.org/Answers-Trouble_Shooting#Headers_already_sentCome back to us if you still have issues.
Regards
Forum: Fixing WordPress
In reply to: Y2K bugHey that’s cool. Timemachine..maybe we can make it go back a tad further and I can get in on the stock-market gains..;)
Regards
Forum: Fixing WordPress
In reply to: Path to a FolderPlease run a quick test to see if indeed fopen has been disabled, they should not disabled fopens on local file system. That’s very lame.
<?php
$fd = fopen("file.txt", "r");
$contents = fread($fd, filesize("file.txt"));
fclose($fd);
echo $contents;
?>
Save this code in “test.php” and create a file called “file.txt” with a simple string. Run this “test.php” to see if it is happy. If it fails, then you should talk to your hosting provider. If it works, let’s debug this issue further.
Regards
Forum: Fixing WordPress
In reply to: Turn off the date/time stamp in Posts?Sure..edit the theme’s index.php and comment out whatever you don’t want to know.
Regards
Forum: Fixing WordPress
In reply to: Path to a FolderDoes the directory exist? You were most probably supposed to create the directory for the plugin to use to store cached information.
Regards
Forum: Fixing WordPress
In reply to: wp-login questionWhat is the URL to your website?
The links on the sidebar are usually listed in the sidebar.php file.
Regards
Forum: Plugins
In reply to: Anyone know a hack or capable of protecting site viewingIf the intention of the site is to provide a Forum type atomosphere, why are you not looking into one of the many Forum software available, phpBB, InvisionBoard, and so on that allow you to restrict access without being first logged in and so on?
Why make WordPress, a blogging software, a forum?
Regards
Forum: Fixing WordPress
In reply to: Feed Validator says feed not valid!!Your blog is borked. It isn’t generating anything resembling a valid feed. What version of WP are you using?
Regards