Norm
Forum Replies Created
-
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] Anyone has an alternate plugin for this?I switched to NS Clone and the free version suited my needs.
It looks like the views question is address in their free version too. Not coping the users was the only feature missing from Pro, but manually adding after the clone wasn’t a problem.
Thanks.
Hi, I’m getting the following errors when duplicating. Could it be related to your fix above? I am just at the beginning of investigating this problem, and realize I probably need to start a new thread.
WPDB ERROR: Cannot drop table 'wp_51_dlm_order' referenced by a foreign key constraint 'wp_51_fk_order_customer_order' on table 'wp_51_dlm_order_customer'.I was having a similar issue. But with adding the trailing slash from the htaccess file. Do you know why this would cause the editor to not save? I wasn’t able to find any error logs that pointed to this being the problem.
Thanks.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] DB Update Looping@webdevmattcrom what is the looping update doing? Is it actually changing anything in the database?
Forum: Plugins
In reply to: [Full Background Manager] Not working after updating to WordPress 4.7I was having a similar problem before this update. Fixed with css but now my child stylesheet isn’t overriding the plugin css. Looks like it is just adding css inline to the head of the document.
Maybe the plugin author can add an option to set the background size of the image.
I think for now adding !important to background-size: cover; on body.custom-background is the best quick fix.
- This reply was modified 9 years, 5 months ago by Norm.
Forum: Fixing WordPress
In reply to: wp nav menu multiple uses on same pageThanks for your response. I am not putting the registration inside a function.
register_nav_menus( array( 'main_menu' => 'Main Menu', 'footer_menu1' => 'Footer Menu 1', 'footer_menu2' => 'Footer Menu 2' ) );if has_nav_menu is working.
Why wouldn’t just calling wp_nav_menu work? I’ve don’t it before.
Forum: Plugins
In reply to: [Achievements for WordPress] add badges with S2 MemberJust checking did this get into the 3.4 update?
Forum: Localhost Installs
In reply to: 5 minute install my ass!I just answered a similar question MAMP in the local host forum.
http://ww.wp.xz.cn/support/topic/newbie-needs-some-advice-please?replies=2Forum: Localhost Installs
In reply to: WordPress DashboardDid you try downloading a fresh copy of WordPress and replacing it with the files you are using? Just delete the wp-content folder in the new WordPress folder before dragging them in.
Forum: Localhost Installs
In reply to: Newbie needs some advice pleaseHi Alex, You would setup wordpress locally much like you set it up on the server.
Here are the steps I usually take. I’m assuming you have MAMP setup and running properly.
Database – Start MAMP and go to phpMyAdmin. Create a new database for the site. Name it whatever you want.
Install WordPress – Create a folder in your local root directory for the site. Drag a fresh copy of WordPress into that folder. If you don’t know where the root directory folder is, open the MAMP control window and click Preferences > Apache and select the root folder you want to work in.
WP-Config.php – Rename the config sample file and point WordPress to your new database by updating these three lines.
define('DB_NAME', 'database_name_here'); /** MySQL database username */ define('DB_USER', 'username_here'); /** MySQL database password */ define('DB_PASSWORD', 'password_here');Copy the Database – Export your current database in .sql format (no compression) and import that file into your new database.
Update wp-options – Go into the database locally and update the url in the wp-options table. Should be option id 1 & 37. The url should be something like http://localhost:8888/foldername.
wp-content – Next you need to get the live wp-content folder. The uploads folder could be huge so if you are just doing some theme edits you might be able to get away with not downloading that directory. Otherwise download the folder and copy it into your local instillation.
Find and Replace – Now you should be able to login to the site locally. The last thing I do is run find and replace on the whole site to update all the urls from whatever the domain name is to the local url. That way all your paths will work locally. You will need to redo this when you upload.
Good luck!
Forum: Fixing WordPress
In reply to: Help! I still can't use the site!It looks like you need to contact your host for support. Your site doesn’t seem to be set up properly.
Forum: Fixing WordPress
In reply to: Spam issuesWhat form are you using?
I would suggest changing to Gravity Forms or Fast Secure Contact Forms.
I use Fast Secure Contact form on a number of sites and it’s free and has Captcha built in.
If you want to keep your current form then you can find plugins to add Captcha.
Have you tried contacting your host to make sure php is up-to-date and your php.ini file is configured correctly?
Also it might be worth it to go through the usual steps of checking the theme and each plugin.
There is probably some php code that is in your header.php or page.php.
Assuming it is your page.php file, I would create a custom page for the homepage. Copy your current page.php and rename it front-page.php.
Then edit your current page.php and remove the line of code that is inserting the slider.
http://codex.ww.wp.xz.cn/Template_Hierarchy#Front_Page_display