zapata
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress login passwords not workingauthors were able to login and readers able to comment atleast two hours after the upgrade of lightbox and flexible upload, and then it seems to have stopped working – not allowing authors to log in or readers to comment.
Forum: Fixing WordPress
In reply to: Blank page suddenlyit’s wp-cache… it was not enabled and still caused this problem… how is this possible???
Forum: Fixing WordPress
In reply to: Blank page suddenlyIs advanced-cache.php a part of WordPress of wp-cache plugin… I think I will delete that too if it is a part of wp-cache
Forum: Fixing WordPress
In reply to: Blank page suddenlyI deleted all my plugins (except Akismet) and get the followign error:
Warning: main(/home/public_html/mysite/wp-content/advanced-cache.php) [function.main]: failed to open stream: No such file or directory in /home/public_html/mysite/wp-settings.php on line 84
Forum: Fixing WordPress
In reply to: Blank page suddenlythanks, will delete the plugin folder to see if there is a plugin issue.
Forum: Fixing WordPress
In reply to: Blank page suddenlycan I delete plugins via FTP to check what plugin may be causing a problem? Is it ok to delete a plugin even if it is activated? Problem is i can’t see the plugin page from my phone.
Forum: Fixing WordPress
In reply to: Blank page suddenlythe only section on my iPhone it does not allow me to access is the Plugins page… even though I’ve not installed any new plugins… could someone please advise a direction I can take to resolve this issue.
Forum: Fixing WordPress
In reply to: Blank page suddenlyinterestingly I can access the website through my iPhone but not through my laptop or desktop… this is mind boggling
Forum: Fixing WordPress
In reply to: commenting issuesForum: Fixing WordPress
In reply to: Upload file stopped workingNot sure if this is related, but I installed Hemingway theme for the blog (0.17 ver) and perhaps it’s related… any ideas?
Forum: Fixing WordPress
In reply to: Can One blog run on Two or more different Templates?Thanks HandySolo, the article shows how to change category pages… I’m looking for changing look of single.php or post.php for those posts in that particular category… as I want to display only excerpts in the category page so users will click on post title to view the video post which will have the seperate look and design.
Forum: Fixing WordPress
In reply to: WP-Cache – unlink problem when adding comments, editing postsi’m having the same problems… what files do I have to look into to replace the unlink commands? Did it resolve your problem?
Forum: Plugins
In reply to: WP-Cache errorThe above problem was seen when the commenter tried to put in a comment for a post.
Forum: Plugins
In reply to: WP-CACHE White screen of Death in spite of the changesok my host resolved this issue…
Forum: Fixing WordPress
In reply to: Where to hack wp_list_authors()I think I’ve got it… the list now displays only authors that are active on my blog.
I found the function in the author-template.php and modified the following query
$query = “SELECT ID, user_nicename from $wpdb->users ” . ($exclude_admin ? “WHERE user_login <> ‘admin’ ” : ”) . ” AND user_email <> ‘[email protected]’ ORDER BY display_name”;
The change is adding : AND user_email <> ‘[email protected]’
before: ORDER BY display_name