gr8nilay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual Editor is not workingIs the visual editor enabled? You can check this by navigating to WP Admin > Users > Your Profile and ensure Visual Editor is unticked (ticking it will actually disable it).
If the visual editor is enabled and still you have same issue that, it might be jQuery conflict issue and you could check the same through the browser console.
Forum: Fixing WordPress
In reply to: ERR_TOO_MANY_REDIRECTSI am glad, your issue has been resolved. If you’re done, please mark your topic as “Resolved”. Thanks.
Forum: Fixing WordPress
In reply to: Changed URL on the now site not workingAlso, if you’re done, please mark your topic as “Resolved”. Thanks.
Forum: Fixing WordPress
In reply to: Changed URL on the now site not workingYour welcome.
Forum: Fixing WordPress
In reply to: Changed URL on the now site not workingI think your issue has been resolved now. I can see your site working fine now.
- This reply was modified 6 years, 4 months ago by gr8nilay.
Forum: Fixing WordPress
In reply to: Changed URL on the now site not workingJust move all the WordPress files from WP folder to public_html directory.
so after that, all your wordpress files will be there in public_html directory instead of WP sub-directory and your directory structure would be like this.
– public_html
— wp
— wp-admin
— wp-content
— wp-includes
— rest of the wordpress filesForum: Fixing WordPress
In reply to: Changed URL on the now site not workingRoot directory means when you connect to your server with FTP you will get list of directories like public_html, logs, mail, www and many more.
The public_html or www directory is your website root directory. You will find your WP directory under public_html. So Move files from WP directory to public_html directory.
However, naming of root directory is upto the server you are using and also it depends on how you have pointed your domain to specific directory on server.
Forum: Fixing WordPress
In reply to: Changed URL on the now site not workingYou do not need to delete just move wordpress from sub directory to root directory.
Using FTP or cPanel just move all the WordPress files from “wp” directory to “root” directory and after this, get in to the admin and reset the permalink structure.
Forum: Fixing WordPress
In reply to: ERR_TOO_MANY_REDIRECTSTry to access the admin using this URL https://www.llpeters.com/wp-login.php
Once you login into the admin, reset the permalink and logout from the admin and after that again try to access the admin using this link https://www.llpeters.com/wp-admin and check it this fix your issue or not.
Forum: Fixing WordPress
In reply to: Changed URL on the now site not workingIt seems, your website Site URL refers to your root directory https://reefmaniacs.co.za/ and your wordepress currently installed in sub-directory.
You want to install WordPress in sub-directory? If yes, than you might need to follow this instructions https://codex.www.ads-software.com/Giving_WordPress_Its_Own_Directory
Forum: Fixing WordPress
In reply to: Constructor Method DepreciatedThe ability to use PHP 4 style constructors is getting removed from PHP. Without an update, many plugins will eventually no longer work (this is PHP breaking this backwards compatibility, not WordPress)
Change WP_Widget::WP_Widget() or {object}->WP_Widget() or parent::WP_Widget() to parent::__construct() in your plugin file.
OR
You can hide this kind of error by adding this filter in your functions.php
add_filter(‘deprecated_constructor_trigger_error’, ‘__return_false’);
Forum: Fixing WordPress
In reply to: http errorIf the increasing of PHP Memory limit doesn’t help than then your server may have mod_security, and it might be causing problems.
You should disable it to see for the solution. To do this, make an .htaccess file in your wp-admin directory. Add the following code to it:
<IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule>
Let me know if this helps or not.