bobnolin
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WordPress Exploit Scanner] Exploit Scanner not working@DebnNCgal
Same problem here. It was working in a prior incarnation, but 0.7 has never worked for me. Just spins its wheels until I pull the plug.
I’m running the latest version of Firefox on my Mac.
Thank you, Anonymous! Replacing functions.php did the trick! I’m still on 2.6.0, by the way.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Zip upload doesn’t work (blank page)Installed today, running WP 2.6.0
Uploaded Zip file, same problem others are reporting: empty folder. So I FTP’d it up manually, that worked.I see no option to bulk-upload images, only one at a time OR zip, and zip isn’t working.
Other problems: slideshow and pagination causing 404’s. Turned them off for now.
Great gallery, otherwise! Thanks!
Forum: Fixing WordPress
In reply to: Okay for .htaccess to have nothing in it?Turns out the .htaccess file exists in two places. The one on the public_html level is empty, as shown above. The one on the public_html/blog level has got code in it, which I have to assume is the correct code. It looks like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule># END WordPress
So I guess everything is okay. Maybe this will help someone else similarly confused! : )
Forum: Plugins
In reply to: share-this problemI’m having a problem as well – though it looks like you resolved it by removing the Share This plugin. You can see the problem here:
http://www.digitalimagemagazine.com/blog/category/tutorials/The archive page is including some Share This codeage, which I’m guessing comes from the template tag The_Content. Is there a way to stop this from happening?
WordPress version 2.6, running latest version of Share This.
Forum: Installing WordPress
In reply to: Upgrade to 2.6, now website not showing.kmessinger –
Yes, the site is up, though I’m having some clean up to do. I ended up doing a clean install of 2.6, not an upgrade. Then I re-applied my theme, config to that. Created a new password, but not sure if that was necessary. Somewhere in here I found a command that logged me off (finally). I would recommend logging off BEFORE starting the upgrade.
Forum: Installing WordPress
In reply to: Upgrade to 2.6 – Admin Login ProblemOmegaMan –
HOW did you log out?
Thanks,
BobForum: Installing WordPress
In reply to: Can’t log in with admin/pass since upgrade troubleeyedea –
“Log out” of where? the database? If so, how?
tia – Bob
Forum: Installing WordPress
In reply to: Upgrade to 2.6, now website not showing.I’m having a similar problem, though I can’t get past the login. url: http://www.digitalimagemagazine.com/blog
You see just a white screen.
I just kept getting the login page, so I went in to myPHPadmin and changed the password. Now I get invalid password. Blog is nonfunctional.
I’m guessing I was supposed to log out before upgrading?
Forum: Installing WordPress
In reply to: problem with install.php…config.php not foundWhooami –
Doh – that was it. Deleted all the files on the server, reuploaded it all, and voila!
Thanks a million!
-Bob
Forum: Installing WordPress
In reply to: problem with install.php…config.php not foundWhooami –
Boy you’re quick! Yeah, I thought that I may have screwed up the upload. I will look into it. Thank you!
Forum: Installing WordPress
In reply to: problem with install.php…config.php not foundHello –
Having a similar problem to the above. Here’s the error when I try to run Install.phpIn browser, I type: http://www.digitalimagemagazine.com/wp-admin/install.php
I get these errors:
Warning: require_once(./includes/upgrade.php) [function.require-once]: failed to open stream: No such file or directory in /home2/digitbr6/public_html/wp-admin/install.php on line 10Fatal error: require_once() [function.require]: Failed opening required ‘./includes/upgrade.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home2/digitbr6/public_html/wp-admin/install.php on line 10
Here is the wp-config file:
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘digitbr6_digitalimagemag’); // The name of the database
define(‘DB_USER’, ‘username not shown’); // Your MySQL username
define(‘DB_PASSWORD’, ‘not shown here’); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
define(‘DB_CHARSET’, ‘utf8’);
define(‘DB_COLLATE’, ”);// Change SECRET_KEY to a unique phrase. You won’t have to remember it later,
// so make it long and complicated. You can visit http://api.wordpress.org/secret-key/1.0/
// to get a secret key generated for you, or just make something up.
define(‘SECRET_KEY’, ‘It was a hobbit hole and that means comfort’); // Change this to a unique phrase.// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);/* That’s all, stop editing! Happy blogging. */
define(‘ABSPATH’, dirname(__FILE__).’/’);
require_once(ABSPATH.’wp-settings.php’);
?>From what I can see (not knowing PHP), it looks like it’s expecting a file called Upgrade.php in the WP-Includes folder. There isn’t such a file, but there IS one called Update.php. Could this be a bug? Not likely, I know…
TIA for your help!
-Bob