Technical Solution
| 2
min read
The client has a large volume of content namely stock market news for different companies. The client site is integrated with multiple third-party systems where real-time news articles are aggregated via custom API integrations. The information thus received is sent as the content of the bulk subscription emails for the different users real-time, daily, and weekly. The issue or the problem was with the emails sent to users who are subscribed to a watch-list. A watch-list is a set of companies that the user is interested in so that emails will be sent in constant intervals (daily or weekly) with the news of these companies. These watch-list emails could contain hundreds of content titles and other data. But the issue was Gmail clip’s emails that have size in excess of 102 Kb.
Drupal Technical
| 4
min read
While working on a Drupal 6 project, I came across the requirement to send some mails. Interestingly, I couldn't find any good articles or procedures on the same. So, here, I am going to explain how to send mails in Drupal 6 with attachments. If you need any business support, get in touch immediately.
Technical Solution
| 6
min read
There will be many situations when you need to handle files from an FTP server in PHP. PHP provides a handful of functions to do the task quite easily, but there are some hidden difficulties too. So here I am going to explain the process of connecting to and FTP server and handling files there.
Technical Solution
| 7
min read
Git is a version control system which is distributed and is famous for its speed and efficiency. Git is different from its predecessors in so many ways, it handles the data as snapshots rather than file differences. Also almost all the operations in git is done at the local repository thus called distributed. Since all the operations are local it gives the power of speed to the end user.However more than this git also provides some tools which makes the git usage more easier and also increases the user friendliness.
Drupal Technical
| 5
min read
The feedAPI module is a famous one for processing custom feeds in different formats like rss/Atom, csv, iCal etc. Now the feedAPI has been upgraded to the "feeds",which have more features and easy to use and customize. However still a lot of Drupal 6 sites uses the feedAPI module for handling external feeds. Let us see how a new parser can be created in feed API module.
Technical Solution
| 4
min read
Since a long time, I have been using the grep utility to search in code, and I am pretty comfortable with the tool. However, recently I came across git grep. The main advantage of this tool, when compared with the normal grep, is the speed of search. Read on to know how to use git grep to speed up development and coding.
Technical Solution
| 4
min read
A constant is a name for a simple value, which will not change at the time of execution. The main advantages are ranges from setting configuration values to saving integer values to be checked as strings (like status codes). PHP provides functions for constant values, which make the usage more easier. These functions are important in Drupal too, since we may need those when working in Drupal projects.
Application Development
| 4
min read
jQuery is a famous javascript library used widely. It allows the developer to create very complex client side operational web tools easily. The jQuery is actually allows us to work on the DOM tree which has various html elements used in the webpages.
Drupal Technical
| 4
min read
There are some constraints when giving passwords for mysql databases when using with drupal 6. Some special characters will make the site unavailable with the error "Access denied for user 'user'@'localhost' (using password: YES)" even if the password is correct in Drupal 6.
Drupal Technical
| 4
min read
The feedAPI module is a famous one for processing custom feeds in different formats like rss/Atom, csv, iCal etc. Now the feedAPI has upgraded to the "feeds",which have more features and easy to use and customize. However still a lot of Drupal 6 sites uses the feedAPI module for handling external feeds. Let us see how a new parser could be created in feed API module.