Title: autotutorial's Replies - page 2 | WordPress.org

---

# autotutorial

  [  ](https://wordpress.org/support/users/autotutorial/)

 *   [Profile](https://wordpress.org/support/users/autotutorial/)
 *   [Topics Started](https://wordpress.org/support/users/autotutorial/topics/)
 *   [Replies Created](https://wordpress.org/support/users/autotutorial/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/autotutorial/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/autotutorial/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/autotutorial/engagements/)
 *   [Favorites](https://wordpress.org/support/users/autotutorial/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 16 through 30 (of 706 total)

[←](https://wordpress.org/support/users/autotutorial/replies/?output_format=md) 
[1](https://wordpress.org/support/users/autotutorial/replies/?output_format=md) 
2 [3](https://wordpress.org/support/users/autotutorial/replies/page/3/?output_format=md)…
[46](https://wordpress.org/support/users/autotutorial/replies/page/46/?output_format=md)
[47](https://wordpress.org/support/users/autotutorial/replies/page/47/?output_format=md)
[48](https://wordpress.org/support/users/autotutorial/replies/page/48/?output_format=md)
[→](https://wordpress.org/support/users/autotutorial/replies/page/3/?output_format=md)

 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [local multisite setup problem](https://wordpress.org/support/topic/local-multisite-setup-problem/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/local-multisite-setup-problem/#post-12386361)
 * It is the standard WordPress code, see Doc htaccess for version 3.0 to 3.4.2 (
   even if you are now using WordPress 5.3)
 * > [htaccess](https://wordpress.org/support/article/htaccess/)
 * 
    if you started your first installation before version 3.5 you have to use the
   htaccess code for 3.0 to 3.4.2 and the code wp_config.php these codes can be 
   found here [http://localhost/wordpress/wp-admin/network/setup.php](http://localhost/wordpress/wp-admin/network/setup.php)
   if from the database in wp_options it has home [http://localhost/wordpress](http://localhost/wordpress)
   it is configured well. you can add secondary sites if the folders do not physically
   exist. in the database You must have a different prefix for each installation
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Event scheduled with wp_schedule_single_event is executing more than once](https://wordpress.org/support/topic/event-scheduled-with-wp_schedule_single_event-is-executing-more-than-once/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/event-scheduled-with-wp_schedule_single_event-is-executing-more-than-once/#post-12384756)
 * [@nkearns](https://wordpress.org/support/users/nkearns/) if $ args is different
   it is called several times, do you want the timestamp code $ hook and maybe update
   the timestamp or $ args for the 10 minute period?
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [wordpress multisite domain mapping](https://wordpress.org/support/topic/wordpress-multisite-domain-mapping/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/wordpress-multisite-domain-mapping/#post-12383420)
 * From WordPress 4.5 domain mapping is predefined without plugin, create secondary
   site from your network->sites->add new site , then from network->sites->edit 
   for enable domain mapping.
    WordPress does not configure your DNS, please specify
   the error well. Example strutture: Network: [http://network.com/](http://network.com/)
   Secondary site: [http://network.com/user/](http://network.com/user/) (add site)
   Domain mapping [http://my_super_site.com/](http://my_super_site.com/) (edit site)
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Event scheduled with wp_schedule_single_event is executing more than once](https://wordpress.org/support/topic/event-scheduled-with-wp_schedule_single_event-is-executing-more-than-once/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/event-scheduled-with-wp_schedule_single_event-is-executing-more-than-once/#post-12383268)
 *     ```
       $args = array( '123' );
       //value timestamp or false
       if ( ! ($var = wp_next_scheduled( 'myevent', $args ) ) ) {
       //value true or false
           unset( $var );
           $var = wp_schedule_event( time(), 'daily', 'myevent', $args );
       }
       if( is_int( $var ) ) {
       $test = new DateTime( '@'. $var );
       $output = $test->format( "Y-m-d H:i:s" );
       }
       ```
   
 * Valid values for the recurrence are ‘hourly’, ‘daily’, and ‘twicedaily’. These
   can be extended using the ‘cron_schedules’ filter in wp_get_schedules(). [https://developer.wordpress.org/reference/functions/wp_schedule_event/#comment-933](https://developer.wordpress.org/reference/functions/wp_schedule_event/#comment-933)
   
   if a scheduled event exists, you don’t create an event even using a unique id
   in $ args ( good php code ). , unique id you have to create it only when it is
   necessary
    -  This reply was modified 6 years, 3 months ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 6 years, 3 months ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 6 years, 3 months ago by [James Huff](https://wordpress.org/support/users/macmanx/).
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Event scheduled with wp_schedule_single_event is executing more than once](https://wordpress.org/support/topic/event-scheduled-with-wp_schedule_single_event-is-executing-more-than-once/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/event-scheduled-with-wp_schedule_single_event-is-executing-more-than-once/#post-12382670)
 * Note that scheduling an event to occur within 10 minutes of an existing event
   with the same action hook will be ignored unless you pass unique $args values
   for each scheduled event.
 * Use wp_next_scheduled() to prevent duplicate events.
 * Use wp_schedule_event() to schedule a recurring event.
    [https://developer.wordpress.org/reference/functions/wp_schedule_single_event/](https://developer.wordpress.org/reference/functions/wp_schedule_single_event/)
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [local multisite setup problem](https://wordpress.org/support/topic/local-multisite-setup-problem/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/local-multisite-setup-problem/#post-12382631)
 * [http://localhost/wordpress/wp-admin/network/sites.php](http://localhost/wordpress/wp-admin/network/sites.php)(
   sites from network, have add new site)
    Setup multisite for wp-config.php and.
   htaccess [http://localhost/wordpress/wp-admin/network/setup.php](http://localhost/wordpress/wp-admin/network/setup.php)
   your htaccess indicates you started before WordPress 3.5 use this or otherwise
   delete any ftp file and in the database if you really want to use a clean install.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [local multisite setup problem](https://wordpress.org/support/topic/local-multisite-setup-problem/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/local-multisite-setup-problem/#post-12382494)
 * Your network must be in the /wordpress/ folder the secondary site must be created
   by the network [http://yourdomaim.com/wordpress/en](http://yourdomaim.com/wordpress/en)
   this en is a symbolic path the folder does not exist physically en but index.
   php recognizes this path for the secondary site.
    Create Network [https://wordpress.org/support/article/create-a-network/](https://wordpress.org/support/article/create-a-network/)`
   From network->sites->add new site`. WordPress 3.5 and up on subdirectory wordpress
 *     ```
       RewriteEngine On
       RewriteBase /wordpress/
       RewriteRule ^index\.php$ - [L]
   
       # add a trailing slash to /wp-admin
       RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^ - [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
       RewriteRule . index.php [L]
       ```
   
 * WordPress 3.0 through 3.4.2 on subdirectory wordpress
 *     ```
       # BEGIN WordPress
       RewriteEngine On
       RewriteBase /wordpress/
       RewriteRule ^index\.php$ - [L]
   
       # uploaded files
       RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
   
       # add a trailing slash to /wp-admin
       RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^ - [L]
       RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
       RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
       RewriteRule . index.php [L]
       # END WordPress
       ```
   
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [What’s the minimum wordpress version to support php 7.3](https://wordpress.org/support/topic/whats-the-minimum-wordpress-version-to-support-php-7-3/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/whats-the-minimum-wordpress-version-to-support-php-7-3/#post-12381725)
 * 4.9.0 start from php 7.2 [https://wordpress.org/support/wordpress-version/version-4-9/](https://wordpress.org/support/wordpress-version/version-4-9/)
   and 4.9.6 have support php 7.3 (last 4.9.13 for WordPress 4.9, this have bug 
   fix and other fix).
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [What’s the minimum wordpress version to support php 7.3](https://wordpress.org/support/topic/whats-the-minimum-wordpress-version-to-support-php-7-3/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/whats-the-minimum-wordpress-version-to-support-php-7-3/#post-12381702)
 * WordPress 5.2 support maxium php 7.3, WordPress 5.3 support maxium php 7.4
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Best way to access and control remote sites](https://wordpress.org/support/topic/best-way-to-access-and-control-remote-sites/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/best-way-to-access-and-control-remote-sites/#post-12367007)
 * Woocommerce use this api rest [https://docs.woocommerce.com/document/woocommerce-rest-api/](https://docs.woocommerce.com/document/woocommerce-rest-api/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Best way to access and control remote sites](https://wordpress.org/support/topic/best-way-to-access-and-control-remote-sites/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/best-way-to-access-and-control-remote-sites/#post-12366415)
 * If all your stores have woocommerce see the API rest of this plugin, you need
   to ask for more information from the plugin support.
 * [https://wordpress.org/support/plugin/woocommerce/](https://wordpress.org/support/plugin/woocommerce/)
   
   [https://wordpress.org/support/plugin/mainwp/](https://wordpress.org/support/plugin/mainwp/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Request exceeded the limit of 10 internal redirects](https://wordpress.org/support/topic/request-exceeded-the-limit-of-10-internal-redirects-5/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/request-exceeded-the-limit-of-10-internal-redirects-5/#post-12358949)
 * talk to the plugin developer slug /es/ , you need a second slug in this scenary
   the rewriterule is always false, the bug is on the server not in WordPress
 * If you use multisite with su directory have [http://yourdomain.com/user/](http://yourdomain.com/user/)(
   user slug for secondary site) and [http://yourdomain.com/](http://yourdomain.com/)(
   for root folder /) this problem is for initial WordPress, root folder installaction.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Multi-site upload directory path (v 4.9.8)](https://wordpress.org/support/topic/multi-site-upload-directory-path-v-4-9-8/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/multi-site-upload-directory-path-v-4-9-8/#post-12358916)
 * Site->edit->settings all option for secondary site, upload , Year month etc.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Bad URL in some pages of WordPress backend (domain removed)](https://wordpress.org/support/topic/bad-url-in-some-pages-of-wordpress-backend-domain-removed/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/bad-url-in-some-pages-of-wordpress-backend-domain-removed/#post-12357333)
 * overwriting is necessary when changing the domain name otherwise leave the default
   one.
    For WordPress WP_HOME, WP_SITEURL and wp_options siteurl, home do not have
   a final slash. Browser: (in the browser it must end with slash when it is a WordPress
   slug or directory path): [http://yourdomain.com/](http://yourdomain.com/) WordPress(
   I explained earlier): [http://yourdomain.com](http://yourdomain.com) can you 
   use a default twenty* theme?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site works only with Ugly permalinks](https://wordpress.org/support/topic/site-works-only-with-ugly-permalinks/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/site-works-only-with-ugly-permalinks/#post-12350486)
 * you need to disable the cache, if you use plugin cache ask the plug-in programmer
   for more information. Please [@sterndata](https://wordpress.org/support/users/sterndata/)
   this time don’t delete my message improperly .. thanks.

Viewing 15 replies - 16 through 30 (of 706 total)

[←](https://wordpress.org/support/users/autotutorial/replies/?output_format=md) 
[1](https://wordpress.org/support/users/autotutorial/replies/?output_format=md) 
2 [3](https://wordpress.org/support/users/autotutorial/replies/page/3/?output_format=md)…
[46](https://wordpress.org/support/users/autotutorial/replies/page/46/?output_format=md)
[47](https://wordpress.org/support/users/autotutorial/replies/page/47/?output_format=md)
[48](https://wordpress.org/support/users/autotutorial/replies/page/48/?output_format=md)
[→](https://wordpress.org/support/users/autotutorial/replies/page/3/?output_format=md)