Maruti Mohanty
Forum Replies Created
-
Hi ,
In the domain mapping page you need to check if you have entered the right IP address and then in the domain options check 2nd n 3rd option.
You dont need to change anything here anymore when you add sites.
To add sites go the admin network and add sites.For example if ur parent site is http://www.example.com and the new site you want to add is site1 then in the “Add new site” in the site address field just add site1 and other details.
then the url would be site1.example.com or example.com/site1 depending upon the installation.Now if you want to do the domain mapping, go to settings->domains
In the new domain field add the site id(site1 id, you can get this by hovering over the site in all sites)
then give the domain name of ur choice lets say “site1.com” and then check the primay and saveHope this helps
Hi luftikus143
Please go through the post below.
http://ottopress.com/2010/wordpress-3-0-multisite-domain-mapping-tutorial/
and check if you are doing everything right.Forum: Plugins
In reply to: [BP Multi Network] How to "Edit your database "@ron can we have an example showing how to do it … It will be highly appreciated… Thanks in Advance
Forum: Networking WordPress
In reply to: Error 404 Cant create a new blogCatch with any of the moderators to get this done.
Forum: Installing WordPress
In reply to: wp-config.php@songdogtech i understand the risk .. I was just trying to help. It seemed like Bustina had “Error establishing a database connection” which means problem in wp-config.php.
Forum: Networking WordPress
In reply to: Can't access subdomain only subfolderFor solutions for the domain based url please check http://codex.wordpress.org/Before_You_Create_A_Network#Server_Requirements
if you have the above requirements.To have a static home page you need to change the setting from the admin.
The path is
Dashboard/Setting/Reading/Front page diaplaysHope this help 🙂
Forum: Networking WordPress
In reply to: Error 404 Cant create a new blogPlease visit the BuddyPress support for help http://buddypress.org/support/
You have a higher possibility to get help there than here.and FYI please dont provide DB informations like you have in this thread.
Forum: Plugins
In reply to: [WooCommerce] picture are not showing up completely in my websiteThe nav bar is in non-english. Can u pls paste the link to the popular products?
Forum: Fixing WordPress
In reply to: how can find out header .phpthe path can be something like below:–
wordpress-folder/wp-content/themes/your-theme/header.phpHere your-theme means the theme you are using 🙂
Forum: Installing WordPress
In reply to: wp-config.phpHi Bustina,
If possible can u pls put the content of ur wp-config.php here for us to see. Seems like u have missed something?
Forum: Plugins
In reply to: [MFS MAILBOX] [Plugin: MFS MAILBOX] Mail all users?Hi Mega,
The newer version of the plugin ie: Mfs_mailbox version 1.1 has the option to send the mail to all or to more than one user at a time.
Regards,
-Maruti
WordPress Consultant
Mindfire SolutionsForum: Fixing WordPress
In reply to: How to set a php error log file for WP?Hey this worked for me.
Rather I didnt have a problem in the first place.
The first set of codes used in config.php ie@ini_set('log_errors', 1); @ini_set('display_errors', 0); /* enable or disable public display of errors (use 'On' or 'Off') */ @ini_set('error_log', dirname(__FILE__) . '/wp-content/logs/php-errors.log'); /* path to server-writable log file */ @ini_set( 'error_reporting', E_ALL ^ E_NOTICE ); /* the php parser to all errors, excreportept notices. */is absolutely working.
I was trying a wrong example to test the php error log.
Anyways thanks for the help.Forum: Fixing WordPress
In reply to: How to set a php error log file for WP?I am presently trying to use this in my local . Can you help me how to get this work in local.
I tried the above codes in the wp-config.php
and committed a syntax error in a plugin for which I got a error in my front end “Parse error: syntax error, unexpected T_STRING in /var/www/project/XYZ/wp-content/plugins/xyz-plugin/xyz.php on line 47 “
but nothing gets write in the php error file inside wp-content/logs
I have also tried the same in the dedicated server where my site is in but no luck.
Forum: Fixing WordPress
In reply to: How to set a php error log file for WP?Did you try these set of codes
@ini_set('log_errors', 1); @ini_set('display_errors', 0); /* enable or disable public display of errors (use 'On' or 'Off') */ @ini_set('error_log', dirname(__FILE__) . '/wp-content/logs/php-errors.log'); /* path to server-writable log file */ @ini_set( 'error_reporting', E_ALL ^ E_NOTICE );if yes what was the value you set for your WP_DEBUG.
Can we set the error log files without setting WP_DEBUG to true?
Forum: Fixing WordPress
In reply to: How to set a php error log file for WP?I tried taking off the whole line which means
define(‘WP_DEBUG_DISPLAY’, true);Doing the above I get the same result as before and on top of the that the errors shows in my front end.
FYI — i am only getting the php notices in the error log no warnings or errors