Conscience Information Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Plugin management unavailableHo @victorcesario,
Please check your wp-config.php file if it has following constant defined.
define('DISALLOW_FILE_MODS',true);If yes, then please remove that line or comment that line so you will be able to have it working.
If not, then please check if you have any plugin active handling file uploads or something associated with it. If this is the case, then deactivate that plugin and check again.
Please let me know your feedback!
Forum: Fixing WordPress
In reply to: can’t change admin emailHi @hlys57,
You can change the email address from the database directly. Here are the steps explaning 2 methods to do so.
- From WP dashboard – This method is getting failed for you I believe.
- From database – This is something I am talking about.
Make sure you have backup of the site especially database before performing any of the above step.
- This reply was modified 6 years, 3 months ago by Conscience Information Technologies.
Forum: Fixing WordPress
In reply to: Database crashHi @trinard,
Here is a link below for repairing this database crash issue.
https://stackoverflow.com/questions/16934805/mysql-clients-are-using-or-havent-closed-the-table-properlyIn brief, it seems you are not using innoDB database engine. Also, in second answer on the above link, you will find the mysql queries for reparing the database.
Hope that helps!
Please let us know your feedback.
Forum: Fixing WordPress
In reply to: Header slowing down page loadHi @kuyuch,
Please refer some good articles on optimizing wordpress to have better speed performance:
Forum: Fixing WordPress
In reply to: Can’t Click Menu TitlesHi @jaymeyounger,
Please let us know about following questions:
- How have you added the menu items? We are assuming you have added them through Appearance -> Menus and associated categories in them?
- Which theme you are using?
- This reply was modified 6 years, 3 months ago by Conscience Information Technologies.
Forum: Developing with WordPress
In reply to: Reorder Editor Inserter BlocksHi @shane502,
You will need to create a new array of categories. Then add the desired category first and then append the new array with original category blocks. Also, change the priority of the filter to 99 so that additional gutenberg blocks plugin’s categories will be added at the bottom instead of getting at top.
Please refer my code snippet below:
function checkCategoryOrder($categories) { //custom category array $temp = array( 'slug' => 'testing-blk', 'title' => 'Testing Blocks' ); //new categories array and adding new custom category at first location $newCategories = array(); $newCategories[0] = $temp; //appending original categories in the new array foreach ($categories as $category) { $newCategories[] = $category; } //return new categories return $newCategories; } add_filter( 'block_categories', 'checkCategoryOrder', 99, 1);Please let me know your response on this!
Forum: Fixing WordPress
In reply to: Unable to edit or create postsHi @ranastron,
Maybe it seems a permission error to your files due to which wordpress is not able to create/update .htaccess file for updating the rewrite rules.
Please make sure your file permissions are as follows:
Directories: 775
Files: 664
Here is the commad for same:
sudo chmod -R 775 /folder
sudo chmod -R 664 /folder/*Also the group or owner of the files should be ‘www-data’.
sudo chown -R www-data:username /folderOnce these permissions are set, try changing the permalink structure again.
Please let us know your response on this.
Forum: Fixing WordPress
In reply to: Norton blocking managed worpress siteHi @andrewy2911,
Could you please explain how did you got to know that Norton is blocking your site?
We did try accessing the site and found it working fine from our end.
Forum: Fixing WordPress
In reply to: Uploading files in a tabel to be down loadHi @hkey,
Thank you for suggestion. You can do this by adding the columns layout and adding the file block in each section of the column layout. So in this way, it will look as if the download links are presented in the tabular format.
Yes, it has a small problem that you can’t created multiple rows with such blocks. You will need to add simlar section as next row.
Hope that makes sense!
Please let us know your feedback on this.
Forum: Developing with WordPress
In reply to: Custom REST Endpoint In PluginHi @dylanesque43,
Find the responses in italic format below:
- How do I test this setup and ensure that the proper request data is indeed reaching the endpoint?
If it is about testing the endpoint, you can use Postman App for it. - Am I doing this correctly? Should I have separate POST and GET logic, or is just having the POST more than enough?
Actually, having the POST and GET logic in a single method is not a problem but it’s not standard practice. I will suggest to keep them separate. What you can do it, you can send POST method with the parameters to be updated in WP database and depending upon it’s response, you can send another API request to get the relevant data.
Please let me know your thoughts.
- This reply was modified 6 years, 3 months ago by Conscience Information Technologies.
Forum: Fixing WordPress
In reply to: How can I import CSV file from frontend side?Hi @bizbrainz,
For what purpose you are trying to import a CSV?