ColdForged
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Good ol’ step 5Oddly, the suggestions that you just listed are the right route to go. Verify you have all of the things correct.
Forum: Fixing WordPress
In reply to: change login redirectwhy isn’t it an option in the administrative control panel
Because if every esoteric option was in the administrative control panel we’d need a 3-monitor system and a gig of server space to host the admin pages :).
That said, which of the many
$redirect_toassignments are you modifying?Forum: Fixing WordPress
In reply to: I can’t get to pages in the Admin that use Dir/file.phpThen again, maybe not… after further reading it appears it “works with caveats”.
Forum: Fixing WordPress
In reply to: I can’t get to pages in the Admin that use Dir/file.phpHmm, wait a sec… which version of Subscribe To is that? The latest preview is only for 1.5.1, and as far as I know that’s the only one that has an admin interface.
Forum: Fixing WordPress
In reply to: how to uninstall plugins if plugin manager isn’t workingAlrighty, go here, download that code to a file and upload it to your wp-plugins directory with your FTP client and save it as “chmod-hack.php”. Activate it in the Plugins menu.
Using your FTP client you should be able to delete those plugin files now… the plugin changed the permissions of all files in the plugins directory to 777. Bear in mind, that’s unsafe. So, click on the Plugins menu again. Every time you click on the Plugins menu while that plugin is active it will toggle the permissions of all the files in the
wp-content/pluginsdirectory between 0777 and 0755. So, when you’re done deleting plugins, click on the Plugins menu and then double-check from within your FTP client that the files have the correct (0755) permission. Then, deactivate the “Chmod Hack” plugin again until you next need it.Forum: Themes and Templates
In reply to: Not sure where to startA link would be heplful.
Forum: Fixing WordPress
In reply to: how to uninstall plugins if plugin manager isn’t workingUnfortunately it’s a techy situation. Let me see what I can come up with.
Forum: Themes and Templates
In reply to: What are Sending Referrers?Forum: Fixing WordPress
In reply to: I can’t get to pages in the Admin that use Dir/file.phpAh. But it’s only printing it once? That’s interesting, there’d have to be more than one if you’ve got 2 echos. Make sure you have echos in all conditional paths in the
admin.phpfile, and make sure you cna tell the echos apart (e.g.echo "1. $page_hook";for one andecho "2. $page_hook";for another).Forum: Fixing WordPress
In reply to: I can’t get to pages in the Admin that use Dir/file.phpalrighty….so did you “dump[ing] the page_hook calculated from within the add_menu_page() function to compare it” or what? 😉
Forum: Fixing WordPress
In reply to: how to relate images to postings in wp? (php/mysql)but i am wondering why WP does not have this feature
Primarily because if WordPress had every feature that everyone might possibly desire it would be roughly the size and maintainability of Windows XP.
Forum: Requests and Feedback
In reply to: A better search?I don’t believe they’re sorted by relevance, Lorelle. MySQL ain’t that good that I know of.
Forum: Themes and Templates
In reply to: Ohhh those #fff color codes.Precisely.
Forum: Fixing WordPress
In reply to: I can’t get to pages in the Admin that use Dir/file.phpNo, you’re fine. What you have is precisely what I intended :).
Forum: Fixing WordPress
In reply to: how to uninstall plugins if plugin manager isn’t workingTricky. About the only recourse I can think of — and this is pretty hacky, admittedly — is create a new template and insert some PHP code in that template to chown all the files in your
wp-content/pluginsdirectory to your UID. That way you can deal with them again.The problem with the WPPM is that, as you’ve found, in some environments the files installed are owned by the UID of the Apache process, not your FTP UID. Hence, the FTP UID doesn’t have permission to due jack to it. So, you have to again rely on the Apache UID under the guise of some PHP code to change the owner of the file back to you.