Title: guye64's Replies | WordPress.org

---

# guye64

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

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

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [How to declare the right path for a custom font in a sub-site](https://wordpress.org/support/topic/how-to-declare-the-right-path-for-a-custom-font-in-a-sub-site/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/how-to-declare-the-right-path-for-a-custom-font-in-a-sub-site/#post-11254221)
 * Solved!
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [How to declare the right path for a custom font in a sub-site](https://wordpress.org/support/topic/how-to-declare-the-right-path-for-a-custom-font-in-a-sub-site/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/how-to-declare-the-right-path-for-a-custom-font-in-a-sub-site/#post-11211228)
 * Hi Naveen,
 * Thanks for your answer.
 * The custom fonts are declared on the English sub-site as custom css, exactly 
   the same as they are on the main site.
 * Any thoughts on what can be happening?
 * Thank you,
 * Maria
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [News sites not being created in multisite](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/page/2/#post-11193949)
 * Hi Proteov (is it you, bcworkz?),
 * Everything is working finally fine. It had to do with the way I configured the
   subdomains on cPanel. My host support advised the correct way of doing this and
   now all my sub-sites are working smoothly (yay!).
 * Again, thank you so much for all your help and patience. In the process, I’ve
   learnt quite a lot!
 * Best,
 * Maria
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [News sites not being created in multisite](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/page/2/#post-11154984)
 * Thank you so much for all your help.
 * I have just checked at my cPanel and I saw I can redirect each subdomain and 
   I redirected en. to the main site, but that didn’t work. I have no way of changing
   anything else, so I opened a support ticket. Hopefully they’ll be able to help
   me configure the “en” subdomain correctly.
 * I will let you know the result.
 * UPDATE
 * After talking with them, I saw I hadn’t configured the subdomains correctly. 
   I touched different things and in the end I got it to work (yay!).
    Now I’m getting
   a security error when trying to access the sub-sites. It might have to do with
   the Let’s encrypt installation. I opnened a second ticket about it, and hopefully
   they will point me in the right direction. I will let you know when it works.
 * Again, thank you so much for all your help and patience, you’ve been key in finding
   the solution!
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [News sites not being created in multisite](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/#post-11131214)
 * Thank you again for your answer.
 * The error page I’m now getting when trying to access the en. sub-site looks like
   a standard WP screen to me, with very simple styling. You can (probably?) see
   it here: [https://en.mariaaguye.com/wp-admin/](https://en.mariaaguye.com/wp-admin/)
 * This is what it says:
    “**Not Found**
 * The requested URL /index.php was not found on this server.
 * Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument
   to handle the request.”
 * This is the content of my .htaccess file (it isn’t that long and it doesn’t contain
   any private information so I’ll just paste it here):
 *     ```
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
   
       # add a trailing slash to /wp-admin
       RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^ - [L]
       RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
       RewriteRule ^(.*\.php)$ $1 [L]
       RewriteRule . index.php [L]
       </IfModule>
       # END WordPress
   
       # BEGIN WordPress WPO Tweaks by Fernando Tellado
       <IfModule mod_expires.c>
       # Activar caducidad de contenido
       ExpiresActive On
       # Directiva de caducidad por defecto
       ExpiresDefault "access plus 1 month"
       # Para el favicon
       ExpiresByType image/x-icon "access plus 1 year"
       # Imagenes
       ExpiresByType image/gif "access plus 1 month"
       ExpiresByType image/png "access plus 1 month"
       ExpiresByType image/jpg "access plus 1 month"
       ExpiresByType image/jpeg "access plus 1 month"
       # CSS
       ExpiresByType text/css "access 1 month"
       # Javascript
       ExpiresByType application/javascript "access plus 1 year"
       </IfModule>
       <IfModule mod_deflate.c>
       # Activar compresi贸n de contenidos est谩ticos
       AddOutputFilterByType DEFLATE text/plain text/html
       AddOutputFilterByType DEFLATE text/xml application/xml application/xhtml+xml application/xml-dtd
       AddOutputFilterByType DEFLATE application/rdf+xml application/rss+xml application/atom+xml image/svg+xml
       AddOutputFilterByType DEFLATE text/css text/javascript application/javascript application/x-javascript
       AddOutputFilterByType DEFLATE font/otf font/opentype application/font-otf application/x-font-otf
       AddOutputFilterByType DEFLATE font/ttf font/truetype application/font-ttf application/x-font-ttf
       </IfModule>
       # END WordPress WPO Tweaks by Fernando Tellado
       ```
   
 * Thank you for bearing with me,
 * Maria
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [News sites not being created in multisite](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/#post-11118857)
 * Thank you so much for your thorough explanations on terminology and sub-site 
   types, it’s all clear now.
 * My multisite is sub-domain based.
 * I found (thanks!) and checked the error logs. I’ve got:
    – one file called “error_log”.
   I found two errors there:
 * 1. `[22-Jan-2019 18:57:24 UTC] WordPress database error Table ‘mariaguy_wpaguye.
   wpnz_2_icl_translations’ doesn’t exist for query SELECT element_id, language_code
   
   FROM wpnz_2_icl_translations WHERE trid = (SELECT trid FROM wpnz_2_icl_translations
   WHERE element_type = ‘post_page’ AND element_id = (SELECT option_value FROM wpnz_2_options
   WHERE option_name=’page_on_front’ LIMIT 1)) made by require(‘wp-blog-header.php’),
   require_once(‘wp-includes/template-loader.php’), include(‘/themes/themify-ultra/
   page.php’), get_header, locate_template, load_template, require_once(‘/themes/
   themify-ultra/header.php’), themify_menu_nav, wp_nav_menu, apply_filters(‘wp_nav_menu_objects’),
   WP_Hook->apply_filters, Inpsyde\MultilingualPress\NavMenu\ItemFilter->filterItems,
   Inpsyde\MultilingualPress\NavMenu\ItemFilter->filterItemsCache, Inpsyde\MultilingualPress\
   Framework\Cache\Server\Facade->claim, Inpsyde\MultilingualPress\Framework\Cache\
   Server\Server->claim, Inpsyde\MultilingualPress\Framework\Cache\Server\Server-
   >fetchUpdatedValue, Inpsyde\MultilingualPress\NavMenu\ServiceProvider->Inpsyde\
   MultilingualPress\NavMenu\{closure}, Inpsyde\MultilingualPress\NavMenu\ItemFilter-
   >filterItems, Inpsyde\MultilingualPress\Api\Translations->searchTranslations,
   Inpsyde\MultilingualPress\Framework\Cache\Server\Facade->claim, Inpsyde\MultilingualPress\
   Framework\Cache\Server\Server->claim, Inpsyde\MultilingualPress\Framework\Cache\
   Server\Server->fetchUpdatedValue, Inpsyde\MultilingualPress\Api\ServiceProvider-
   >Inpsyde\MultilingualPress\Api\{closure}, Inpsyde\MultilingualPress\Api\Translations-
   >searchTranslations, Inpsyde\MultilingualPress\Api\Translations->buildTranslations,
   Inpsyde\MultilingualPress\Api\Translations->buildTranslationsForSiteIds, Inpsyde\
   MultilingualPress\Api\Translations->buildTranslationDataForSiteId, Inpsyde\MultilingualPress\
   Api\Translations->translationForRelatedContent, Inpsyde\MultilingualPress\Translator\
   PostTranslator->translationFor, Inpsyde\MultilingualPress\Translator\PostTranslator-
   >translationData, Inpsyde\MultilingualPress\Translator\PostTranslator->publicUrl,
   get_permalink, get_page_link, get_option, apply_filters(‘pre_option_page_on_front’),
   WP_Hook->apply_filters, SitePress->pre_option_page_on_front, WPML_Pre_Option_Page-
   >get`
 * 2. And:
    `[22-Jan-2019 18:58:19 UTC] PHP Warning: ini_set() has been disabled
   for security reasons in /home2/mariaguy/public_html/wp-content/plugins/debug-
   objects/debug-objects.php on line 96`
 * – I also have another file called php_errorlog, this one contains this error:
 *     ```
       [28-Dec-2018 12:18:55 UTC] WordPress database error Table 'mariaguy_wpaguye.wpnz_2_icl_translations' doesn't exist for query 	SELECT element_id, language_code
       						FROM wpnz_2_icl_translations
       						WHERE trid =
       							(SELECT trid
       							 FROM wpnz_2_icl_translations
       							 WHERE element_type = 'post_page'
       							 AND element_id = (SELECT option_value
       											   FROM wpnz_2_options
       											   WHERE option_name='page_on_front'
       											   LIMIT 1))
       						 made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/themify-ultra/page.php'), get_header, locate_template, load_template, require_once('/themes/themify-ultra/header.php'), themify_menu_nav, wp_nav_menu, apply_filters('wp_nav_menu_objects'), WP_Hook->apply_filters, Inpsyde\MultilingualPress\NavMenu\ItemFilter->filterItems, Inpsyde\MultilingualPress\NavMenu\ItemFilter->filterItemsCache, Inpsyde\MultilingualPress\Framework\Cache\Server\Facade->claim, Inpsyde\MultilingualPress\Framework\Cache\Server\Server->claim, Inpsyde\MultilingualPress\Framework\Cache\Server\Server->fetchUpdatedValue, Inpsyde\MultilingualPress\NavMenu\ServiceProvider->Inpsyde\MultilingualPress\NavMenu\{closure}, Inpsyde\MultilingualPress\NavMenu\ItemFilter->filterItems, Inpsyde\MultilingualPress\Api\Translations->searchTranslations, Inpsyde\MultilingualPress\Framework\Cache\Server\Facade->claim, Inpsyde\MultilingualPress\Framework\Cache\Server\Server->claim, Inpsyde\MultilingualPress\Framework\Cache\Server\Server->fetchUpdatedValue, Inpsyde\MultilingualPress\Api\ServiceProvider->Inpsyde\MultilingualPress\Api\{closure}, Inpsyde\MultilingualPress\Api\Translations->searchTranslations, Inpsyde\MultilingualPress\Api\Translations->buildTranslations, Inpsyde\MultilingualPress\Api\Translations->buildTranslationsForSiteIds, Inpsyde\MultilingualPress\Api\Translations->buildTranslationDataForSiteId, Inpsyde\MultilingualPress\Api\Translations->translationForRelatedContent, Inpsyde\MultilingualPress\Translator\PostTranslator->translationFor, Inpsyde\MultilingualPress\Translator\PostTranslator->translationData, Inpsyde\MultilingualPress\Translator\PostTranslator->publicUrl, get_permalink, get_page_link, get_option, apply_filters('pre_option_page_on_front'), WP_Hook->apply_filters, SitePress->pre_option_page_on_front, WPML_Pre_Option_Page->get
       ```
   
 * Is this of any help to you?
 * I tried deactivating all plugins, with no success.
    Then I tried deleting all
   sub-sites via WP-admin and creating them again (created only the en. sub-site),
   but nothing changed either.
 * I checked my server’s file system and an “en” folder was created, but it was 
   empty. Is this ok?
 * What else could I check/do?
 * Thank you so much,
 * Maria
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [News sites not being created in multisite](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/#post-11113479)
 * Hi bcworkz,
 * Thanks for your reply. It’s taken me quite long to respond you, my apologies.
 * I am currently trying to move content of the existing subdomains (wiki. and escola.),
   from a separate installation (where I initially created them), to the multisite
   installation. I am following this tutorial to do it:
    [https://codex.wordpress.org/Migrating_Multiple_Blogs_into_WordPress_3.0_Multisite](https://codex.wordpress.org/Migrating_Multiple_Blogs_into_WordPress_3.0_Multisite)
 * If you see it, they ask you to create new blogs (I guess they mean sites?) in
   the multisite installation. Then you need to go to each blog’s backend and import
   a file you previously exported.
    But I cannot access the backend of these newly
   created sites (I cannot access them at all) so I cannot finish the process of
   moving those sites to the network.
 * >  How have you configured your site for subdomains? Is it set up for wildcard
   > subdomains? Or are you adding new subdomains through your hosting account in
   > concert with adding sites in WP? The third option is virtual hosts, which would
   > typically not be available for the sort of accounts that only have one DB.
 * I’m afraid I don’t understand you.
    For the new sites created (and this is only
   one new site so far, which is the english version of the main site) I first created
   the subdomain on my hosting account, and then I created a new site in the multisite
   network, on WordPress. Did I do it correctly? Is this what you were asking? If
   I did it wrong, how could I do it right?
 * And lastly, how can I check my error logs?
 * Thank you so much for your help,
 * Maria
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [News sites not being created in multisite](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/#post-11077278)
 * I am remembering that, when I moved to multisite, I had problems because I had
   originally created my website in a multisite installation. That was at the very
   beginning of creating my website. I then encountered some problem and I changed
   it to single site.
 * When converting to multisite (this time) the system told me that I already had
   some configuration on my db for multisite and therefore I was not allowed to 
   create it again. I had to ‘clean’ the db first.
 * I searched for information and I found a document within the WP codex, and I 
   deleted some tables on my database that seemed to be the ones causing conflict.
 * Maybe I deleted something that I shouldn’t and that’s why I am now getting those
   errors?
 * In the meanwhile, I switched to another hosting provider (which by the way, only
   allows me to have one database and I’m getting an alert on that).
 * Is this helpful?
 * Thank you,
 * Maria
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [News sites not being created in multisite](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/#post-11077176)
 * Thank you for your answer.
 * I did not have any # BEGIN WordPress and # END WordPress comments, so I placed
   the new rules below them and between a new <IfModule mod_rewrite.c> </IfModule
   >. Nothing changed.
 * Then I tried replacing the old rules (between <IfModule mod_rewrite.c> </IfModule
   >) for the new ones, and nothing changed either:
    – I still get a 404 error when
   trying to access the new sites created in the network – I still access the existing
   subdomain sites (which were created before converting into multisite) as separate
   WP installations
 * Then I remembered you told me that I should not have physical directories on 
   my server for the new sites created in the network and so I removed them on the
   server, and then:
    – now I get a 500 error when trying to access the new sites
   created in the network – I still access the existing subdomain sites (which were
   created before converting into multisite) as separate WP installations
 * Thoughts?
 * Thank you,
 * Maria
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [News sites not being created in multisite](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/#post-11068252)
 * This is the message I get when trying to acces either the front or backend of
   any of my sites within the multisite installation:
 * “Not Found
 * The requested URL / was not found on this server.
 * Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument
   to handle the request.”
 * This happens with the new sites created. For the existing sites (currently subdomains
   of my main site) that I’m trying to move into the multisite, I created them in
   the multisite admin panel but when I try to access them from this panel, it takes
   me to a single site installation, so I cannot move their content into my multisitre
   network.
 * What I’m doing wrong? How can I create actual new sites in my multisite network
   and move my existing ones into this multisite network?
 * Thanks so much for your help,
 * Maria
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [News sites not being created in multisite](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/)
 *  Thread Starter [guye64](https://wordpress.org/support/users/guye64/)
 * (@guye64)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/news-sites-not-being-created-in-multisite/#post-11068184)
 * Hi bcworkz,
 * Thanks for your answer.
 * I’m not sure if I understand how this works, but I have just deleted those empty
   directories that match subsite names and still I have the same problem: I cannot
   access those sites on my multisite installation.
 * What else do I need to do?
 * Thank you ,
 * Maria

Viewing 11 replies - 1 through 11 (of 11 total)