Quimbly
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't log in to wp admin after changing site URLWell, I did manage to get it working, but I have NO idea why. I undid all my changes and verified that everything was working fine at the old address: nerfgunrentals.com/wp/
Then, I followed the same set of instructions, but this time changed which value which value I used for Site Address and which for WordPress Address: nerfgunrentals.com
Site Address: nerfgunrentals.com/wpThis also crapped out. Then, as before, I hard-coded the values in the wp-config.php file as follows:
define(‘WP_HOME’,’http://nerfgunrentals.com’);
define(‘WP_SITEURL’,’http://nerfgunrentals.com/wp’);Lo’ and behold! It works!
I guess I was mixing up Site address (SITEURL) and WordPress address
(WP_HOME)??I then went in a changed the values in the DB directly, so I could remove the two lines from the wp-config.php file. It’s still working, so I’ll chalk that up as a success.
I’m still confused by the whole mix-up, but maybe this chain will help someone else.
Forum: Fixing WordPress
In reply to: Can't log in to wp admin after changing site URLThe hosting account has many websites on it, including the NerfGunRentals.com site, and several other WordPress sites. As far as I know, it’s fairly common practice to do what I’ve done:
– Create a subfolder in the public_html to host all websites
– Direct domains to the proper subfolderIn fact, other sites that are configured identically as I’ve described above, are set up in other folders in the /_websites/ folder, and work just fine. This is why I’m finding this so frustrating.
If you think this is the issue, what recommendations do you have to identify and fix the problem?
Forum: Fixing WordPress
In reply to: Can't log in to wp admin after changing site URLRenamed plugin folder — same results.
The error log shows this message repeated:
[03-Sep-2013 12:41:04] PHP Fatal error: require() [<a href='function.require'>function.require</a>]: Failed opening required './wp/wp-blog-header.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home3/johanna/public_html/_websites/nerfgunrentals.com/wp/index.php on line 17Again, I have these set up as the instructions said:
index.php in root folder has: require(‘./wp/wp-blog-header.php’);
index.php in /wp/ folder has: require(‘./wp-blog-header.php’);I believe that’s correct, but it seems as if this is where the problem lies. ??? I’m very confused.
Forum: Fixing WordPress
In reply to: Can't log in to wp admin after changing site URLAlso tried renaming the .htaccess in the root and /wp/ folders. Same result. =(
Forum: Fixing WordPress
In reply to: Can't log in to wp admin after changing site URLI definitely did rename the current theme’s folder.
Here’s conformation: http://nerfgunrentals.com/wp/wp-content/themes/_kinetico/screenshot.png
Not available here: http://nerfgunrentals.com/wp/wp-content/themes/kinetico/screenshot.png
However, maybe some caching is going on. I have a caching plugin installed (wp-supper-cache). It’s disabled, but inexplicably, I still see cache files appearing in the /public_html/_websites/nerfgunrentals.com/wp/wp-content/cache/supercache and /public_html/_websites/nerfgunrentals.com/wp/wp-content/meta folders.
Not sure what to think of that! Regardless, I deleted the cache. Now I get a blank homepage and blank login. Argh!
Forum: Fixing WordPress
In reply to: Can't log in to wp admin after changing site URLThank you for the reply.
Ok, using FTP, I renamed my current theme’s folder.
Results: Homepage is still not styled.
Admin: I don’t get a 404 now, but I still can’t log in. I get redirected to this page which is blank: http://nerfgunrentals.com/wp-login.php?redirect_to=http%3A%2F%2Fnerfgunrentals.com%2Fwp%2Fwp-admin%2F&reauth=1I had looked at the Outerbridge User Credits plugin before. Looks like it *might* work. But it doesn’t integrate with the event registration.
Forum: Plugins
In reply to: [Black Studio TinyMCE Widget] How to add TinyMCE table plugin to this widget?Confirmed! I installed the Ultimate TinyMCE plugin and it affects both the post editor and the Rich Text Widget editor.
Thanks for the follow-up!
Forum: Plugins
In reply to: [Black Studio TinyMCE Widget] How to add TinyMCE table plugin to this widget?If I use of the these plugins, will it change all instances of TinyMCE on my site? In other words, will both the Post/Page content editor and the Black Studio TinyMCE Widget content editor be changed?
Forum: Fixing WordPress
In reply to: 500 internal server error after moving WordPressIt’s now working. I believe it was a problem with the .htaccess file. Here’s what I did:
– I renamed this file to __htaccess
– I uploaded an empty file and renamed it to .htaccess
– I changed the permissions on .htaccess to 666 (rw-rw-rw)
– I set permalinks to a different setting, saved it, then switched it back to my usual setting.
– Then I changed the .htaccess file permissions back to 644 (rw-r–r–)That seemed to fix the problems!
Awesome, thanks for info!
As I understand it, the users that register will be admins, but not super-admins. I read that, therefore, they will not be able to install plug-ins. Makes sense. Would they still be able to install a theme, or change the appearance of their blog in any way? I suppose they could edit the HTML for their CSS files. But would there be another way?
Sorry, reading my post again, I’m not sure I was clear enough.
Just to get it straight, enabling these options would allow any Joe off the street to register for an account, and then have a live site which they could start blogging on, uploading pictures, etc.? In other words, they would be site admins on their own subdomain/subfolder — is that right?
That’s what I need. And yes, I agree, monitoring would be difficult!
Forum: Fixing WordPress
In reply to: How to get auto-linking on posts by email?Oops, I didn’t refresh first before posting.
Ok, that looks like a better solution. I’ll try it out.…Yep, that did the trick. Thank-you!
Also, you wouldn’t happen to know a solution to the problem for posting by email where the subject and author appear, but the content/body does not?
Forum: Fixing WordPress
In reply to: How to get auto-linking on posts by email?Well, I got tired of waiting and starting tinkering. I think I’ve found a solution, in case anyone is interested.
WP Version: 2.3.1
In wp-includes\class-pop3.php, line 370Replace:
$MsgArray[$count] = $line;With:
$MsgArray[$count] = make_clickable($line);That seems to do the trick.