How to get followers count from Social Platforms in PHP with jQuery?

Blog, PHP, PHP Scripts, Tutorials
In this blog we describe how you can get followers count from Facebook, Instagram, YouTube and Twitter profile URL. When you enter a Facebook or Instagram URL in the text field and click on the button then contact information like; name, email, profile picture and description will also get from their social account. For get followers we have to use some jQuery code snippets. Facebook Follower count: By using Facebook graph api you can get social count from Facebook. For this you require an access token and you can get this from here https://developers.facebook.com/docs/marketing-apis/overview/authentication/. After getting access token you can use jquery following code to get followers. var link11 = document.getElementById('FacebookPageURL').value; link11 = stipTrailingSlash(link11); var link2 = link11.split( '/' ); var user = link2[link2.length - 1]; var token = 'Your…
Read More
How to secure WordPress without using plugin?

How to secure WordPress without using plugin?

PHP, Plugins, Tutorials, Web Design & Programming, Web Development Services, WordPress, wordpress plugins
WordPress is a very popular CMS and that's why it is highly targeted by hackers. Although latest updates have made it one of the most used tools for e-commerce website, news portals or a business blog. There are a many ways to protect your WordPress Blog from being hacked. We have collected some of the best practices which will help you to Secure your WordPress Website : Disable File Editing: Using the below code we can disable the File editor of admin side so hacker will not able to open the files if he/she want to do any change in file. By default Wordpress allows user to edit the file using the editor through the admin panel. define('DISALLOW_FILE_EDIT',true); Protect your .htaccess file .htaccess is a important file of Wordpress. .htaccess…
Read More
Default Routing In Codeigniter

Default Routing In Codeigniter

Blog, PHP, PHP Scripts, Techniques, Web Design & Programming
One of the most common problem that a beginner faces with codeigniter is the presence of index.php in the URL just before the name of the controller. This makes the URL look odd. Also, whenever developers are trying to form a link during the development of a project, it becomes mandatory for the developer to add index.php in the URL otherwise the application does not work and keeps on providing a 404 Error (Not FOund). So, in order to make the URL of the codeigniter user friendly , we can use .htaccess file. This .htaccess file helps us in changing the default routing behavior of Codeigniter. This .htaccess file contains some line of code which can help us achieve our target and it is placed in the root directory of…
Read More

WooCommerce FrontEnd Pro Product Manager

PHP, Web Development Services, WordPress, wordpress plugins
WooCommerce FrontEnd Pro product manager is a powerful WooCommerce add-on that explicitly implemented to switch your WooCommerce website into a multi-seller platform in front-end. WooCommerce FrontEnd Pro product manager plugin helps to manage all the shop-vendor’s products, their product orders, profile settings and other WooCommerce settings from the front-end of your site. No back-end access required for the shop-vendors to set up his own products and profile settings on your site. WooCommerce FrontEnd Pro product manager add-on also have feature of shop-vendors registration, shop-vendors front-end login and all WooCommerce plugin feature. This offers customers a higher number of products from different sellers. Read more...
Read More

Joomla! Framework changes to LGPL

CMS, News, PHP, Web Design & Programming, Web Development Services
The board of Open Source Matters (OSM) has voted to approve the request submitted by the Joomla! Production Leadership Team (PLT) to change the license of the Joomla Framework from GPL v2+ to LGPL v2.1+. It is important to understand that this license change applies only to the Joomla Framework, and does not affect the GPL v2+ license for the Joomla Content Management System (CMS). This decision by OSM was the final step in a process that started early last year, when the PLT first initiated a public email list discussion and then conducted a survey aimed at the Joomla developer community. When the results of that survey indicated strong support for that potential license change, the PLT requested that OSM research legal issues regarding this potential change for the…
Read More

WHY WORDPRESS ASKS FOR FTP CONNECTION INFO?

PHP, Web Design & Programming, Web Development Services, WordPress
Whenever you use the WordPress admin panel to  install, upgrade, or delete plugins, WordPress must make changes to files on their filesystem.Before making any changes, WordPress first checks to see whether or not it has access to directly manipulate the file system. If WordPress does not have the necessary permissions to modify the filesystem directly, you will be asked for FTP credentials so that WordPress can try to do what it needs to via FTP. HOW TO RESOLVE IT? In order to fix this issue, you will need to make sure that the scripts which need to write to the filesystem are owned by the same user that apache is running as. WordPress asks for your FTP credentials when it can't access the files directly. This isusually caused by PHP running…
Read More

Validate HTML and remove forbidden tags and data

PHP, Techniques, Tutorials
This class might be utilized approve HTML that is XHTML agreeable and uproot tags and information that are not acknowledged. The class can parse the HTML information as a XML record and cross it to confirm if it agrees to a rundown of decides that characterize worthy tags and information. It can erase prohibited and copy tags and characteristics. The prepared record is saved in a class variable. Download Source File
Read More

Produce HTML Forms to control Mysql records

PHP, PHP Scripts, Tutorials
This class could be utilized to create HTML structures to control Mysql table records. It can take a rundown of Mysql table fields and produce HTML for structures to select, addition, redesign, erase table records. The class can additionally perform given approvals of specified fields and conjure given callback works on certain structure preparing occasions. Source Code is here
Read More

Validate and process file uploads

PHP, PHP Scripts
This class can be used to validate and process file uploads. It can take the name of a given form upload field and check the respective upload information to see if there was no error and the file MIME type is the one that is expected. If the file upload was validate, the class moves the file to a given destination directory and output details of the uploaded file. Download Files
Read More