PHP - CMS - JOB

Welocme to PHP CMS Courses and JOB

We are here to help you Learn Basic and Adavanced PHP Concepts, as well as PHP CMS Concepts and working envoirment on CMS. Once you found the way to go with PHP and PHP CMS, you can find the JOB route on this PHP CMS Courses and JOB Blog.

Welocme to PHP CMS Courses and JOB

We are here to help you Learn Basic and Adavanced PHP Concepts, as well as PHP CMS Concepts and working envoirment on CMS. Once you found the way to go with PHP and PHP CMS, you can find the JOB route on this PHP CMS Courses and JOB Blog.

Php Cms Drupal

Welocme to PHP CMS Courses and JOB

We are here to help you Learn Basic and Adavanced PHP Concepts, as well as PHP CMS Concepts and working envoirment on CMS. Once you found the way to go with PHP and PHP CMS, you can find the JOB route on this PHP CMS Courses and JOB Blog.

Php Cms Joomla

Welocme to PHP CMS Courses and JOB

We are here to help you Learn Basic and Adavanced PHP Concepts, as well as PHP CMS Concepts and working envoirment on CMS. Once you found the way to go with PHP and PHP CMS, you can find the JOB route on this PHP CMS Courses and JOB Blog.

Php Cms Wordpress

Welocme to PHP CMS Courses and JOB

We are here to help you Learn Basic and Adavanced PHP Concepts, as well as PHP CMS Concepts and working envoirment on CMS. Once you found the way to go with PHP and PHP CMS, you can find the JOB route on this PHP CMS Courses and JOB Blog.

Pages

Tuesday, September 24, 2013

Login Problem with Magento admin Login after Installation?

Magento admin can't able to login after installtion,

Please follow the below simple steps,

1 - Go to www or htdocs folder
2 - Go through this directory /app/code/core/Mage/Core/Model/Session/Abstract/Varien.php under Magento Installtion Dir
3 - Open with your editior, go to the 108 line
4 - Comment the followng line and try it
 call_user_func_array('session_set_cookie_params', $cookieParams); -   /*call_user_func_array('session_set_cookie_params', $cookieParams);*/

 Now try with Login, still problem exits.

 Please go to line from 85 to 92 in magento (1.7.2 for my case). Like this

 // session cookie params
/* $cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path'     => $cookie->getPath(),
'domain'   => $cookie->getConfigDomain(),
'secure'   => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);
 */

5 - Hopefully you can login with your Magento. Let me know still if you have any issues.

Thursday, July 18, 2013

How to Connect PHP with SQL Server from Windows Env using SQLSRV?

Here we are going to install SQLSRV Driver and configure with PHP,

1 - Before Start, Run phpinfo() from your localhost/server, and find your System bit (x86/x64). From my research SQLSRV will work only on Wamp2.2 and x86 Env.
2 - Now open your wamp php.ini, and enter below lines under extension section,
    extension=php_sqlsrv_52_nts.dll;
    extension=php_sqlsrv_52_ts_vc6.dll;
3 - Then download SQLSRV driver from http://www.microsoft.com/en-us/download/details.aspx?id=20098
4 - Run SQLSRV driver and enter your original PHP ext path(E:\wamp\bin\php\php5.3.13\ext) also please make sure the same path given in php.ini file(;extension_dir = "ext"
extension_dir = "e:/wamp/bin/php/php5.3.13/ext/")
5 - Once you successfully installed SQLSRV, please make sure the above given dll files loaded under above PATH.
6 - Its time to restart your wamp server(several times if needed)
7 - Now check with phpinfo(), sqlsrv should be list in your phpinfo information
8 - Then Finally you must download SQLCLIENT for SQLSRV driver from
SQL Server Native Clients are here:
SQL 2012
  http://www.microsoft.com/download/en/details.aspx?id=29065
SQL 2008 R2
  http://www.microsoft.com/download/en/details.aspx?id=16978
SQL 2005
  http://www.microsoft.com/download/en/details.aspx?id=20101
 
 9 - Finally try with below codes from your PHP to test with PHP SQLSRV driver,


 $dbhost = "servername";
 $user = "sq";
 $pwd="xxxx";

$link = sqlsrv_connect($dbhost, $user, $pwd);
if($link === FALSE) {
    echo 'Could not connect';
    die('Could not connect: ' . sqlsrv_errors(SQLSRV_ERR_ALL));
}
echo 'Successful connection';
sqlsrv_close($link);
?>

10. Now your Wamp server start to work with SQLSRV driver.

Wednesday, July 17, 2013

Configure PHP with MSSQL connectivity


To connect PHP to MSSQL, Please check with below stpes

1.       Enable php_mssql.dll in PHP.INI (Throw WAMP services ICON)

2.       Copy the php_mssql.dll into PHP 5.3.x/ext.

3.       Copy ntwdblib.dll and MSVCR71.dll into sysWOW64 folder.

4.       Restart WAMP, Restart system also good advice.

Note:

1. Below CMD steps to check the required MSSQL DLL loaded or not. if the below command does not return anything, then PHP, MSSQL  installation  is success. if it return some alert with missing DLL message, then download that DLL and push into system32/ sysWOW64 folder.

execute this command in command prompt, make sure you should be inside the wamp/bin/php/php5.x.x/ext ) 

php -d extension_dir=ext -d extension=php_mssql.dll -d extension=C:\wamp\bin\apache\Apache2.2.17\bin –m

Thursday, October 4, 2012

How Install and Access Druapl Site from DrupalGap MobileApps | PHP CMS JOBS


Install and Access Druapl Site from DrupalGap Mobile Apps

DrupalGap is a portal for mobile devices to interact with Drupal websites that have the DrupalGap module enabled. DrupalGap is act as a bridges between Drupal websites and mobile device applications. 

DrupalGap is built around PhoneGap and utilizes the power of JQuery, JQuery Mobile and of course Drupal.

Features of Mobile Application for Drupal Websites:

Once you have successfully installed and configured your DruaplGap on Mobile, you have the below access rights to your drupal site from the Mobile

Access Content
Register User Account
User Login, Logout and Account Update
Create, Retrieve, Update and Delete  
Content
Comments

In order to getting start,Follow the below Sections.

Friday, September 28, 2012

How to Install Cassandra and Configure Cassandra on your windows?


Install Cassandra and Configure Cassandra on your windows Step by Step

First we must download Cassandra from the Apache Cassandra Source

Now unzip the file and put it into a drive where you want to store your Cassandra.you can change the folder name cause deafult name is "apache-cassandra-0.5.1".

Thursday, September 27, 2012

How to Setting the JAVA_HOME Variable in Windows 7


Setting JAVA_HOME  Environment Variable in Windows 7

Before start this Chapter, you must have JAVA on your system. Please visit JAVA Installation and let begin with following chapter.

To set environment variables to enable the compilation and execution of Java applications from the command line (command prompt) or byusing an IDE like Eclipse. By installing the Java SDK, system variables about the location of executables (compiler, java virtual machine) are not defined or initialized automatically.

Wednesday, September 26, 2012

Cassandra and Cassandra Data Model Step by Step Guides


This article contains Quick and Easy tour of Cassandra database system and how to install Cassandra on your local windows system. 

What is Apache Cassandra?

Apache Cassandra is an open source, distributed, decentralized, elastically scalable, highly available, fault-tolerant, tuneably consistent, column-oriented database that bases its distribution design on Amazon’s Dynamo and its data model on Google’s Bigtable. Created at Facebook, it is now used at some of the most popular sites on the Web.


Friday, September 21, 2012

Create a Custom Joomla 2.5 Module step by step guide


The focus of this course, is to Create a Custom Joomla 2.5 Module step by step guides. I hope You have already learned  Joomla Installation , Create a  Joomla Hello world Components  from this blogs. Let we start our new Joomla CMS Custom Module Course Here, 

There is a defined folder structure for Joomla extension. Create the files and folders as per the below using your code editor. 

Create the main folder which will be called  "mod_siteusers". Then create the files/folders below.

Tuesday, September 18, 2012

Freelancer Webdeveloper


Hello Friends, 

Thanks you for visiting to my Blog, 

Kindly please share your feedback with me. It will help me to bring more useful blogs for begineers and others.

Currently I am developing PHP CMS related websites / Portals with Low Price to Small Scale Industries and making them as a KING on the Web.

If you need any CMS related Websites to develop using PHP related CMS - Drupal, Joomla, Wordpress or else core / Advanced PHP. Please feel free to contact me.

Mail Me at here : krishblogs2012@gmail.com.

Once again Thanks for your valuable time with me and my blogs.

Monday, September 17, 2012

Create a Simple Form in Druapl 7.x - Step by Step Guide



In the Last posts, we have discussed more about create a Hello World Module and Create a content in Drupal 7.x. now we are going to learn and Create a Simple Form in Drupal 7.x step by step.

 Before start works, you must know How does it work? Drupal has several built in Form functions, that deal with building and rendering your forms, and all you have to do is provide an array of information to the build functions. In this case, we build the form array, then return it.

When we call drupal_get_form, we pass the name of the function that returns the form, and Drupal does the rest.

Here the form array is 
$form = array();

Lets begin your simple form,