[email protected]
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp_options table severely broken, already tried mostFirst just make sure it’s not a CSS error or otherwise….
If it is critical timing and it isn’t an immensely modified website, creating a new fresh install of a clean wordpress, then importing the posts, postmeta, commnents, users, etc into the new installation… this way it is a clean options table with a fresh install….. I have done this when stuff was entirely broken before, only takes about an hour if you know your way around mySQL….. you need to make sure to avoid importing the old admin user from the original install if you create a new one in the table because it can screw up options…. this is my experience..
Someone else could probably answer this question way better, the options table appears to be full of many encrypted values which are generated on installation or something, and I am uncertain how to modify them as well……, I tried to copy options from one blog to another and edited the corresponding information in the tables to match the correct addresses yet some other encrypted value in the options table created an error…….
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Sunrise.php killed site?Thank you for being amazing, worked perfect…. I didn’t realize having an extra folder in the wordpress installation could cause it to crash.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Sunrise.php killed site?This would to me imply that the activation of sunrise.php in the wp-config file allowed the script to make some change to a core file which caused the site to malfucntion…. I don’t know PHP well enough to know for sure, I am only guessing….. someone with better knowledge might be able to explain it.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Sunrise.php killed site?I tried to delete it, no help… I may just have to reinstall the entire blog, yet I am extremely curious as to why this error has occurred…. any insight would be appreciated.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Sunrise.php killed site?*.tk is the domain…. the site was fully functional up to about 1 second after successfully uploading sunrise.php, creating the mu-plugins folder with the domain mapping .php file, editing the wpconfig file to activate sunrise.php, and refreshing the page…. no other changes were made during this time.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Sunrise.php killed site?I am on a shared hosting dreamhost…. htaccess looks like this.
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]