Sunday, July 15, 2012

Powerful and Best Tools to check your WebSite WebPage Performance

There are many online performance check service providers out there. all are providing Free web-based service that is great to hear , just see what they do. most of their services are similar and simpler that checking page loading speed , each images,html, css and js files loading time, they are advising and suggesting to improve the files and images once they complete the loading time checking. its a good point for all developers that they can improve their site even more and easy loadable. its good enough for web developing service provider to deliver good and best web pages. here we go for the List of Useful Tools.

Analyze and optimize your website with PageSpeed tools to implement the web performance best practices.
Fast and optimized pages lead to higher visitor engagement, retention, and conversions. The PageSpeed family of tools is designed to help you optimize the performance of your website. PageSpeed Insights products will help you identify performance best practices that can be applied to your site, and PageSpeed optimization tools can help you automate the process.




2.YSlow

YSlow analyzes web pages and suggests ways to improve their performance based on a set of rules for high performance web pages. Feature highlights:


Google Chrome Store : https://chrome.google.com/webstore/detail/ninejjcohidippngpapiilnmkgllmakh?utm_source=chrome-ntp-icon



3.Neustar Web Performance 

Traditional load testing is done inside the firewall. But many of today's applications are found externally—ad servers, news tickers or Web analytics engines. That's why Neustar takes your customer's perspective and tests from the inside out. It's the best way to see if your website is ready for peak usage.


Link ; https://browsermob.com/free-website-performance-test/



4.WebPageTest.org

Run a free website speed test from multiple locations around the globe using real browsers (IE and Chrome) and at real consumer connection speeds. You can run simple tests or perform advanced testing including multi-step transactions, video capture, content blocking and much more. Your results will provide rich diagnostic information including resource loading waterfall charts, Page Speed optimization checks and suggestions for improvements.

Inline image 5

Link : http://www.webpagetest.org/


5.GTmetrix

GTmetrix can help you develop a faster, more efficient, and all-around improved website experience for your users.


Link : http://gtmetrix.com/


6.

We built this Full Page Test tool to help you analyze the load speed of your websites and learn how to make them faster. It lets you identify what about a web page is fast, slow, too big, what best practices you're not following, and so on. We have tried to make it useful both to experts and novices alike.

In short, we wanted it to be a free, easy-to-use tool to help webmasters and web developers everywhere optimize the performance of their websites.


Link : http://tools.pingdom.com/fpt/


7.site-perf.com

With Site-Perf.com, you get an accuraterealistic, and helpfulestimation of your site's loading speed. The script fully emulatesnatural browser behaviour downloading your page with all the images, CSS, JS and other files – just like a regular user. Spot bottlenecks, reach perfect performance and balance your site load with Site-Perf.com, a smart and flexible testing tool. Focus on important things while Site-Perf.com delivers the speed facts straight to your screen. Try it right now!

 


Link  : http://site-perf.com/


8. 

The page analyzer analyzes your web page performance by emulating how a web browser would load your page and all resources referenced in it. The page and the referenced resources are loaded and important performance metrics are measured and displayed in a waterfall diagram along with other per-resource attributes such as URL, size, compression ratio and HTTP status code. Each load time bar has parts of different color corresponding to a performance metric:




Link : http://loadimpact.com/


These are the most wanted tools that giving you useful result and ideas to improve your website to perform well.... hope this help you guys and your comments are welcome...

Monday, July 9, 2012

You do not have sufficient permissions to access this page : WordPress Error Fixed.

You do not have sufficient permissions to access this page : WordPress Error Fixed.

We have faced some issues with WordPress , here is another one and we fixed it, usually admin user or some other WordPress user will face this error (in this case) when they try to login . its a user role permissions , we can modify this in WordPress (wp-admin ) admin.php file .

 

be careful be alert . backup your WordPress database before modifications 

You do not have sufficient permissions to access this page

You do not have sufficient permissions to access this page

 

if your table prefix is different , you should follow your table prefix here  eg table_options means your row96 should be table_user_roles .

we faced this issue and we solved like this , may be you can try this out and update us. usually we faced this issue when we change the user values or change the table prefix .. be careful be alert . backup your WordPress database before modifications

Friday, June 22, 2012

CRON Jobs commands in cpanel


WE are going to see how to use CRON Jobs commands in cpanel today, we are using CRON Jobs here to run some command / files to generate report  or update database or send email or crawl automatically, we can run the cron jobs command in cpanel or linux command line, or in unix.

here the screenshot of the cron job in cpanel , its will be different for each CPanel versions. also its will be different for plesk control panel.  just  click on the icon and its will show you a simple page to add CRON Commands.

CRON Job Icon in CPanel | WeAreWebDevelopers

CRON Job Icon in CPanel 

lets say your php file located in your host like this
http://www.yourdomain.com/folder/file.php . this file contain the script that generate something when you open in the browser,  so we are going to put this in CRON Jobs to be generate / run automatically

firstly you must know your web host php path and your file actual path , you can get it from your hosting provider or you can find out your self if you are using VPS host ,
your php path will be like this /usr/local/bin/php  its will be same for all the host and your actuall php file path will be like this /home/username/public_html/folder/file.php
here we go , just key in the below line in to your command text box
/usr/local/bin/php[space]-q[space]/home/username/public_html/folder/file.php and set the time (frequent) for the file to be run and key in your email (so that you will receive the executed report once the file run successfully) , then clcik Add New Cron, its should run automatically, you may try at-least 5 minutes to test the CRON whether its working or not. if you didn't receive emails , there's some thing wrong,  
CRON Jobs Screen in CPANEL | WeAreWebDevelopers

CRON Jobs Screen in CPANEL 

there is another method that run the file using CURL , if CURL installed in your host , its another solution to run CRON commands . same applies here, you must know your CRUL path and you no need to worry about your  file path in your host because its going run from your URL , its similar to this .  on this case this is the CURL path : /usr/bin/curl 
 and this is the file URL : http://www.yourdomain.com/folder/file.php
just add this line in to CRON JOB command text box and set your time and add your email address to get the report
you may try at-least 5 minutes to test the CRON whether its working or not. if you didn't receive emails , there's some thing wrong,


now we are going to see some thing with security, what if your file having security authentication to run? yes, we have solution for this ,the above CURL works without username and password , we can store the user name and password  in the particular php page session  even  here the solution for secure the CRON Jobs with username and password  .
we use this command line to run the same php file in the CRON with username and password,
here username and password should be your form text box name to read the username and password from the CRON URL (form action and $_GET) . .


we have tested both CRON Jobs with PHP path and CURL path. its works fine on our side and we did received email ever day , just try your side and comment here , we are happy to assist you guys.

Tuesday, June 19, 2012

All in one Search Engine Optimization Guide

SEO is means for Search Engine Optimization , We are going to learn this big deal today  with below tips and PDF files from Leading Search Engine SEO Guides.

All in One Search Engine Optimization Guide from WeAreWebDevelopers
All in One Search Engine Optimization Guide from WeAreWebDevelopers
there are so much tutorials , books , tips and tricks out there to learn and improve your website Search Engine Optimization , well we know they are.  what is the special here . All in One SEO this is the special here. we are going to list down most wanted and useful Search Engine Optimization Starter Guide to teach you
We follow Google First .
Google already released a Search Engine Optimization Starter Guide for web masters to improve their web site indexing perfectly on Google , here the link to Download , there sre so many useful tools in Google developers network , Google web master tools and WebMaster Blog .  this Google SEO Guide will guide you perfectly to improve your website to Google optimize . we are requesting you to read the blog and Google SEO guide clearly to understand how Google crawlers working and indexing pages.
Now we Move to BingMicrosoft also provide a bing webmaster tool and resource center to learn and improve your website to Bing Optimize . they have released a PDF Guide to teach us more about their search engine works. here the link to Download Bing SEO Guide , there is a community blog on bing to talk about Bing Search Engine Optimization , here the link for Bing SEO Community Blog , and this is the link for Bing WebMaster tools .
there is a feature that Google disabled and Bing Still Provide that website Submission to Bing its here : https://ssl.bing.com/webmaster/legacy/submitsitepage.aspx . we have to register our self to submit our site to Google now but previously they allowed any one to submit their site with out registering ,now they disabled, we have to register Google Web Master Account to Submit Our Site .
Next. Yahoo , they are together with Bing to Giving more accurate Search Result . once we register in Bing Web Master its will submit to Yahoo , once we submit our URL to bing also its will submit to Yahoo. still yahoo have their own Web Master Tools and Submissions , yahoo haven't released any PDF versions to teach webmasters how to improve site SEO for Yahoo Indexing , but they have a page to study about it, we have perepared the page in PDF for our iserd to learn about Yahoo Search Engine Optimization , here the link to download Yahoo SEO Basics Giude . 
Finally We have Another Search Engine Optimization Guide will teach you something advance tips and tricks with analyses results.