Paul
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Forgot WordPress blog username and passwordIf you have server access, then try resetting your password directly in the database.
Forum: Plugins
In reply to: [NextGEN Gallery Media Library Addon] Feature RequestsHello BillDempsey,
Try the latest update version 0.3.0 that feature is already implemented.
Forum: Fixing WordPress
In reply to: File missing?It’s something like a temporary file created by the server (and updated) as the image uploads. Do you know how to debug? (check Debugging_in_WordPress). Have you tried contacting your host?
Forum: Fixing WordPress
In reply to: Old wordpress.com blog still around after transfer to .orgIf your .com account has traffic, I don’t think it’s a good idea to close it. Redirect your pages instead to your .org site pages.
Forum: Fixing WordPress
In reply to: File missing?Any error messages? More info please…
Forum: Plugins
In reply to: [NextGEN Gallery Media Library Addon] Issue with adding media to galleryHello dynm,
If it’s fine with you, can you possibly send a temporary WP admin access and FTP details to [email protected]? We’ll check it out.
Thanks!
Forum: Plugins
In reply to: [NextGEN Gallery Media Library Addon] Unable to workForum: Fixing WordPress
In reply to: Changing domain issueFollow Moving_WordPress or try some plugins like Duplicator
Forum: Fixing WordPress
In reply to: Removing title-wrapper and crumbs-wrapper div on Home page?CSS only
.page-id-20 #title-wrapper, .page-id-20 #crumbs-wrapper { display: none; }
Forum: Fixing WordPress
In reply to: Can I see my posts in this forum ?Did you try clicking “View your profile”?
Forum: Fixing WordPress
In reply to: Bullets not showing up after updating Station themeForum: Fixing WordPress
In reply to: Bullets not showing up after updating Station themeTry editing theme.css at line 660 check below:
.widget ul li { display: block; /* delete this line */ list-style: square outside none; padding: 3px 10px; }
Forum: Fixing WordPress
In reply to: Trouble changing URL (despite following instructions)If you’re comfortable running sql queries, you can try this query…
UPDATE wp_options SET option_value = replace(option_value, 'https://www.old-domain.com', 'https://www.new-domain.com') WHERE option_name = 'home' OR option_name = 'siteurl';
from mydigitallife.info
Forum: Fixing WordPress
In reply to: totally lost on jQuery things.Try to put the
if (!is_admin()) { ... }
in an action hook like…
function myscripts() { if (!is_admin()) { ... } } add_action('init', 'myscripts');
Forum: Fixing WordPress
In reply to: Moving complete site to new hostGeneral idea…
1. Backup the database from old host.
2. Create a new database and new database user in new host and write down somewhere the database name, username and password.
3. Import the backup database file to the new database.
4. Extract the .gz file to your domain’s folder.
5. Open wp-config.php and changedefine('DB_NAME', 'enter new database name here'); define('DB_USER', 'enter new database username here'); define('DB_PASSWORD', 'enter database user password here');
6. Save the file.
7. Test…