jmodjeska
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lost Username, NOT password – Help!If you have server or hosted account access, you can look at the wp_users table in your wordpress database to identify your username.
— jm
Forum: Fixing WordPress
In reply to: CSS not showing on test themeYou appear to be missing the ‘rel’ attribute in your external stylesheet reference.
Try replacing line 33 with:
<link href="http://www.squidzink.net/wordpress/wp-content/themes/squidz/style.css" rel="stylesheet" type="text/css" media="screen" />You also don’t really need to specify the media unless you have an alternate stylesheet (i.e., one for print).
More info:
http://www.w3.org/TR/html4/present/styles.html#h-14.3.2— jm
No help here?
Forum: Installing WordPress
In reply to: Can’t View New SiteI can see your blog at the URL provided. Perhaps you need to clear your browser’s cache to ensure you aren’t viewing a pre-install version of your site.
Forum: Fixing WordPress
In reply to: UTC-8 code undoBefore you make any changes directly to your database, make a backup: http://codex.wordpress.org/Backing_Up_Your_Database
I believe figaro is correct; a direct change in the database may be required. If you can login to phpMyAdmin, or have command-line access to the MySQL database, you can try running this query:
UPDATE wp_options SET option_value='UTF-8' WHERE option_id='36'option_id 36 is blog_charset, which is what you’re looking for. Good luck!
Forum: Fixing WordPress
In reply to: Post Error…Please help!Looks like you’re not the only one. Active discussion on this already exists here, including a workaround:
Oops, sorry about that. I guess the sociable stylesheet loads after yours does. Two options: either edit the sociable.css stylesheet directly (same code as above) or add the “!important” flag after those changes in your site’s stylesheet. I just tried the second method and it worked, so give that a shot first:
.sociable-hovers { opacity: 1.0 !important; -moz-opacity: 1.0 !important; filter: alpha(opacity=100) !important; }Do you mean the semi-transparent icons that become opaque when you hover over them? That is the default sociable style.
You can override this in the sociable.css stylesheet, but the better option is to override the sociable styles with your site’s stylesheet so that your changes will persist after upgrades.
Try adding this to your site’s stylesheet:
.sociable-hovers { opacity: 1.0; -moz-opacity: 1.0; filter: alpha(opacity=100); }Hope that helps!
— jm
Forum: Fixing WordPress
In reply to: Custom favicon works, but doesn’t show upLooks OK to me, my friend.
http://j.modjeska.us/imgs/kikicomm.jpg
Try clearing your browser’s cache. Favicons are notorious for persisting after you make changes.
Forum: Fixing WordPress
In reply to: need html page to override WP index pageLocate (or create) the .htaccess file in your blog’s root directory and add the following line:
DirectoryIndex index.htmlForum: Fixing WordPress
In reply to: [Plugin: WP Security Scan] Anxious About Changing wp_ PrefixIgneous: this is a “zero day attack” mitigation. There is no specific known security threat with using wp_ as the prefix, but I think the idea is that through obfuscation of your table names it might save you from some hypothetical future attack that relies on the knowledge that everybody using WordPress has identical table names.
DebNCgal et al: Regarding the process for changing prefixes if you’re on a hosted server:
Many hosting companies don’t allow ALTER rights (including, apparently, Godaddy). This is probably good, based on my limited knowledge of MySQL security.
There are numerous websites that explain workarounds if this is the case for you. For me, a nice safe process with plenty of fallbacks in case I !@#$ed it all up was as follows:
- Backup your tables: http://codex.wordpress.org/Backing_Up_Your_Database (fallback #1: worst case, restore from this file)
- Open the “.sql” backup file that you’ve just created in the text editor of your liking, and replace all instances of “wp_” with whatever your desired new table prefix is; SAVE AS a new file (fallback #2, you still have the original “.sql” file from step 1 in case this modified SQL dump file doesn’t work out)
- Now, create a NEW empty database on your hosted server. This process varies by hosting company. For Godaddy users, for example, you just login to your hosted account, select Databases > MySQL > Create Database. Once you have your new database created, upload the modified “.sql” file to this database; that is, the .sql file with the new prefixes in it. You can probably use these instructions to accomplish this keeping in mind that you’re not *really* restoring from a backup, but populating a new database using your saved data: http://codex.wordpress.org/Restoring_Your_Database_From_Backup
- Locate your wp_config.php file. Save a copy as wp_config.php.backup (fallback #3, you can revert to the “old” wp_config file, which points to the “old” and untouched original database). Edit the wp_config file so that it contains your new database information including the new username, database name, password, and $table_prefix (~line 11).
- Now the fun part. Until now, you haven’t changed anything on your blog. It’s still using the original, unmodified database. Everything you’ve done until now has happened in the background with no effect on your website. Now you’re going to upload the modified wp_config.php file into your blog’s root directory. You’re telling WordPress to use the new database with the shiny new prefixes in it. If something goes wrong, just upload the backup wp_config.php file and WordPress will use the old, untouched database.
Like you, I’m nervous about any automated database modifications, so this process should give you the peace of mind that should something disastrous happen, you have several immediate options to revert back to the way things were.
NOTE: If you encounter the “You do not have sufficient permissions to access this page” error, follow these instructions here.
Hope this helps!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] A page with all the galleries?Sure! Create an album. Name it whatever you want and then save it. Then, go to the “Album” option under “Gallery” on your admin page. Select the album name from the drop down, and then drag and drop your galleries (middle column) in the order you desire into the album (left column).
To display this album and all its galleries, create a new page with the tag [album id=1 template=extend].
The author’s working example can be found here:
http://nextgen.boelinger.com/album/One important configuration note: In the Admin module, go to Gallery > Options > Gallery tab, CHECK the “Deactivate gallery page link” option. I don’t understand the purpose of this option is, but when it was unchecked my album page was not functional.
Hope that helps.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] unable to add title to thickbox windowPlease see here:
http://wordpress.org/support/topic/263350?replies=2A solution for this is detailed here:
http://narasopa.com/seoblog/18/adding-title-and-description-to-nextgen-gallery-thumbnails/
In addition, since this page comes up for related Google queries, I’ll share this here as well. This is a solution for prepending the image title to the description in the popup window when using the tickbox effect:
Forum: Plugins
In reply to: nextgen-gallery – no title in shutter pop-up?I looked everywhere for a solution for this but no luck, so I came up with a hack (works for “tickbox” effect only, as far as I know). You were on the right track, but shutter-reloaded.js doesn’t directly read the image data. In fact the relevant javascript file is tickbox.js, but even that one just pulls its data from the title attribute of the tumbnail image’s “a” tag. So, the solution is to modify the data that gallery.php puts into the “a” tags.
More information, example, and code here:
http://j.modjeska.us/?p=113Hope this helps.