Category: Tech
-
PHP IDE, comprehensive facilities for PHP programmers
A PHP IDE (Integrated Development Environment) is a program which integrates many functionalities which help developers create quality code more quickly. I have reviewed many PHP Editors and explained why they are indispensable tools when creating PHP code. PHP Editors offer auto completion, syntax highlighting and symbol browsing. Some of them offer wizards that help with writing…
-
Php frameworks, how to choose
Php frameworks are tools that it’s common to find in a developer’s studio. Artists make use of tools to forge their artistic creations. Php developers are artists creating php software and php frameworks are some of their tools. Does a php developer need php frameworks in the same way as a painter needs pigments? Not…
-
When an SMTP server doesn’t return bounces properly
What bounce processing is When you send an email, it’s possible that it’s returned to you because of technical problems or mistakes made when writing the email. One of these mistakes may be that the recipient’s email address is wrong. CRM sending mass emails Many CRMs, Customer Relationship Management system, have the capability of sending…
-
Configuring postfix to relay email through Zoho Mail
This has taken me quite some time to figure out. First of all you need the Zoho email address you want to use when relaying emails through Zoho. It has to be one of the email addresses you configured by using Zoho control panel. In my case I created one to use only to relay…
-
Impossible to login to WordPress website
The problem was that it was not possible to login to a WordPress website, to the admin dashboard I mean. I tried many things: used scripts to reset the password. They actually change the pwd in the wp_user table. See below an example of update command used to change pwd. deleted cache plugins after having…
-
Installing Open Project on Debian 8 server
I’m going to install Open Project on a VPS (Virtual Private Server). What is Open Project? Open Project is an open source application you can use to manage projects. It’s used for software projects. It supports Agile methodology, bug tracking and time tracking. I’ll use it to manage projects meant to build applications for my…
-
SELinux problems when using phone as webcam
What I want to do I don’t want to buy a webcam for my computer. I have a smart-phone with both front and rear cameras. Can’t I use it as webcam? Are you interested in Enhanced Security? Maybe you are not interested in using your smart-phone as webcam. But you may be interested in Enhanced…
-
WYSIWYG editor for Mediawiki
What Mediawiki is and what it is for Mediawiki is the engine that powers Wikipedia. It’s a wiki and it’s used to create collaborative websites where people can share knowledge and keep all sorts of information. They make it possible for people to work on the same document. Personally I keep most of my information…
-
Installing React Application
The goal I’m installing React and many other modules needed for my application. The application will preform drag and drop operations and animations. It will use Material Design. What is the application about? It’s about displaying a list of products or other objects. Using drag and drop the user will be able to rank the…
-
Serving static files in React
Some context I’m building a React application. You can see the code in this Github repository: Rankit Github repository. The live application is here: Rankit Application. To create the environment from scratch I used the tool Create React App. It’s easier and you don’t have to tamper with configuration files to make it work. It…