Recent Updates RSS Toggle Comment Threads | Keyboard Shortcuts

  • saif 4:57 am on December 2, 2011 Permalink | Reply
    Tags: CMS, htaccess issue, OpenCart, opencart config   

    OpenCart config url,dir path problem and htaccess issue 

    Opencart is another easy, robust and handy e-commerce CMS. For beginner, there are some common problem related to URL, Directory path and .htaccess issues.

    Following issues need to keep in mind during installation, moving to another server or installation on windows:

    • Use trailing slash after the url like define(‘HTTP_SERVER’, ‘localhost/myproject/’) otherwise it may not load all css, images and js files.
    • For windows, use path like define(‘DIR_APPLICATION’, ‘F:\wamp\www\myproject/catalog/’); as well as for other settings. It may be ok in normal way like define(‘DIR_APPLICATION’, ‘F:/wamp/www/myproject/admin/’);
    • For htaccess, if your store/project is in your document root which is generally public_html on cpanel servers that is ok for for default RewriteBase, but if it’s in a subfolder you will need to edit the file and change the ‘RewriteBase /’ to ‘RewriteBase /subfoldername/’

    That’s all for some common issue. Have fun with open source opencart :)

     
  • saif 12:15 pm on June 14, 2011 Permalink | Reply  

    isset() use techniques in php 

    isset

    isset() is the most commonly used php construct as well as a good friend of  a programmer. we frequently use it to check whether a variable has been set or not. it returns true if the variable has been set otherwise false… also return false if the variable has been set to null.

    isset() is the only one of the three language constructs that accepts an arbitrary amount of parameters. Its accurate prototype is as follows:

    <?php
    isset($var1, $var2, $var3, …);
    ?>
    It only returns true, if all the variables have been defined; otherwise, it returns false. This is useful when you want to check if the required input variables for your script have really been sent by the client, saving you a series of single isset() checks.

    So writing it with arbitrary parameters can be interesting upon your need! cheers!

     
  • saif 1:53 pm on June 6, 2011 Permalink | Reply
    Tags: , site   

    Get website favicon by single line 

    Getting website favicon is more easy now. Google gave us many things till now to do and share web info, development and so on. Google gave a nice shared stuff to get any site’s favicon by a sigle line :

    http://www.google.com/s2/favicons?domain=yahoo.com

    So check out this for Yahoo’s favicon. By changing the desired site’s url, u can get any site’s favicon as well. Have fun and cheers!

     
  • saif 9:48 am on March 15, 2011 Permalink | Reply
    Tags: interview, php programmer, question   

    Interview question set for a advanced PHP Programmer 

    Recently, I got a chance to face some questions which make sense for a PHP Programmer, who can rethink all about web development what he has been learned yet. I thought i can share those among yourselves just for sharing that what could be the questions for a advanced PHP Programmer.

    Questions are as follows. I will try to give answers here and discussion about these time to time. Looking forward to hear from you guys about any question listed below.

    • Question: You are committing a file with bug fixes to the SVN, there is an issue with a conflict in the file what does this mean? How do you solve it?
    • Question: How would you find out what files were out of date within SVN and commit those specific files into a revision with a log message via the command line?
    • Question: How do you use memcached to optimize mysql queries?
    • Question: How do you iterate an array in smarty?
    • Question: PHP errors are not displaying on the page you are developing. You only have SFTP Access to change files. How do you display the errors?
    • Question: What is better and more efficient in development time for a large scale enterprise PHP / MySQL application. Using packages and open source classes or developing your own solutions?
    • Question: What are the risks of using user inputted data in SQL queries and how to eliminate this risk ?
    • Question: You have been given a specification and been briefed on a project. The specification included work that was already completed for the project but there are many bugs and you did not write this code. What do you do?
    • Question: There is a bug in your code, what do you do?
    • Question: Recently users are complaining they are being logged out of the site. The site uses sessions and php. Also recently a new webserver was added, bringing the total to 2. What could be causing this and how would it be solved?
    • Question: You need to create a search function for a website with over 30.000 searches per hour on a record set of 1.000.000 text records. How would you do this using MySQL?
    • Question: You need to integrate an external website’s data that does not have a API – describe this process.
    • Question: You’ve written a news service in PHP that needs to used by many external websites. How would you allow those websites to use your functions to display the news on their site ?
    • Question: You want to create an AJAX suggestion box that displays in real time suggestions related to the content of the search textfield. Describe how this process would work.

    I think, some questions are really good and every PHP Programmer should know about those terms.

     
  • saif 7:54 pm on December 28, 2010 Permalink | Reply
    Tags: 2011, wishlist   

    A Turning Year 2010 and Wishlist for 2011 

    just ending 2010 and going to start 2011! I’m wondering how time passed away! 2010 was really a turning year for me and also 2009. Have some plan and idea for 2011.

    Remembering 2010:

    • Joined bGlobal, got some awesome colleagues as well as friend, realized a great working environment.
    • Learned Cakephp, Zend Framework, EE.
    • Bought my Laptop (ACER ASPIRE 4745).
    • Worked on some tremendous website and web application.
    • Reviewed a jquery animation book by Packt Pub.
    • Became 27 years old :)

    Wishlist for 2011:

    • To be the Cakephp NINJA
    • Do something advance with CI.
    • will learn Magento and Zen cart soon
    • To be a TRUE BLOGGER and WordPress geek (have plan to create some WP Plugin)
    • Jquery! Wanna rid of this!
    • Wish to have a  MACBOOK/MACBOOK PRO and also a iPHONE.
    • Will buy a Acoustic Guitar soon (even once upon a time i had a dream of a BAND :) )
    • To be a ZCE (it was also in 2009 wish list :) )
    • To be more faster.

    Finally, well wishes for everyone, for every friendz, colleagues. Pray for me!
    Have a nice year!

     
  • saif 7:39 pm on February 16, 2010 Permalink | Reply
    Tags: CodeIgniter, PHP Security   

    Simple PHP Security in CodeIgniter 

    As web is now the part of our life and we can’t think our daily works without www. For both users and developers, security is a key question. I would like to share some simple security points in this post, which are common.

    • Cross Site Scripting(or XSS) is one of the most common application-layer web attacks. XSS commonly targets scripts embedded in a page which are executed on the client-side (in the user’s web browser) rather than on the server-side. An example of XSS may be as from user input. Suppose you put <textarea> on your site to get user input. But malicious user give input like this :<script type="text/javascript">
      window.locaton('http://example.com');
      </script>

      or it may be a unwanted alert message in javascript, which is not expected.So you definitely want to prevent this type of attack. I’m going to show the solution here in CodeIgniter. CodeIgniter has its built in input class.The example is below:

      $data= $this->input->post('UserInput');
      $data_xss = $this->input->xss_clean($data);

      At first, you get user input by post method and now just pass that value to the function. if you print the final value, you will see the javascript code will be replaced by others like [removed].Now you can pass the value to database query or do anything with that value.

    • Use htmlentities( ) for user input . It will convert all applicable characters to HTML entities like below.

      $str = “A ‘quote’ is <b>bold</b>”;
      // Outputs: A ‘quote’ is &lt;b&gt;bold&lt;/b&gt;
      echo htmlentities($str);

    Some useful links for best practices and security:

    Cheers and practice with best approach. :)

     
  • saif 10:52 am on February 3, 2010 Permalink | Reply
    Tags: html, PHP, php in html   

    Execute PHP code within a html/htm file 

    When a web page is call, the server checks two thongs, whether it is a html/htm file or a php/asp(etc) file. The key point is file extension or file type.If it is a normal .html/.htm file, server sends it direct to the browser. And if it is a php/asp(etc), server than execute the appropriate code before sending it to the browser.

    Come to the point: Now you need to add some php code within your existing html file,then what is the process?
    There are two ways, what i ever know and want to share with you,
    1.Rename the html file to php file (the easiest way),
    2.Using .htaccess file to allow php within html file.

    if you follow the first one, it’s easy. but you may have incoming links or search engine ranking or if u change the file type, you need to change many code within your application.so in this situation, come to the second solution. ;)

    The way is:
    You need to add some command in your .htaccess file like below:
    For html file :
    AddType application/x-httpd-php .html

    Or for .htm
    AddType application/x-httpd-php .htm

    If you only plan on including the PHP on one page, it is better to setup this way:
    <Files myhome.html> AddType application/x-httpd-php .html </Files>

    Example:
    Now you can put php script like below in your html file :

    <p id='php_cont'><?php echo "hi all"; ?></p>

    N.B. Always be careful about your .htaccess file. if you have already one, just add the above command to the file, don’t replace all. and for beginner, the .htaccess file will be in your root folder, where your application or project exists (i.e. http://localhost/myapp)

    That’s all. For very beginners it may be helpful and i think this is a common question for them that  ‘How to use php in html file?’. cheers ;)

     
  • saif 8:49 am on January 12, 2010 Permalink | Reply
    Tags: drop down list url, onChange go url   

    Go to a URL/link from drop down list/menu in html+javascript 

    In many web application, we see some kind of drop down list to go to a URL only by clicking on the list item, no need to click on any button. For the users, this is a nice experience that they don’t have to click on submit button.
    I have described here in details the tutorial especially for beginners. Let we have a form like below:


    <form method="post" action="http://www.example.com/submit.php">
    <input type="submit" name="submit_button" value="Go">
    <select name="url_list" >
    <option value="http://www.example.com/index.html">list 1</option>
    <option value="http://www.example.com/about.html">list 2</option>
    </select>
    </form>

    we can improve the form performance by combining it with a simple javascript and it has below advantages:

    1.It makes your page more efficient, because if JavaScript is enabled, the web browser can jump to the destination webpage itself without having to run the script. Also it is nicer for users because they do not need to select the “go” button.

    2.The form will also continue to work with web browsers that do not have JavaScript available.

    Now, the following example displays a drop down list with a js function. Include the js in your <head></head> of the file :


    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin gotosite
    function gotosite()
    {
    var URL = document.gotoform.url_list.options[document.gotoform.url_list.selectedIndex].value; window.location.href = URL;
    }
    // End gotosite -->
    </script>

    and now try the form like this :


    <form name="gotoform" method="post" action="http://www.example.com/submit.php">
    <noscript>
    <!-- use noscript to only show this if no javascript is available -->
    <input type="submit" name="submit_button" value="Go">
    </noscript>
    <select name="url_list" size="1" onChange="gotosite()">
    <-- Value of first option is default, usually current page -->
    <option value="http://www.example.com/submit.php"> Select a Site...</option>
    <option value="http://www.example.com/index.html">list 1</option>
    <option value="http://www.example.com/about.html">list 2</option>
    </select>
    </form>

    we call ‘gotosite()’  function on ‘onChange’ of <select>, and this will help to jump to the url for each list.
    Hope this will help the beginners for more reliable user experience.

     
  • saif 6:28 pm on December 20, 2009 Permalink | Reply
    Tags: insert string with quote, mysql   

    insert string with single quote(‘) or double quote(“) in mysql 

    In developing web application, we write insert query for inserting data into database. Hence i use mysql query and PHP functions for inserting string with single quote(‘) or double quote.

    let we know two useful PHP function :

    1.  addslashes – Quote string with slashes. Returns a string with backslashes before characters that need to be quoted in database queries etc. These characters are single quote ('), double quote ("), backslash (\) and NUL (the NULL byte).

    <?php
    $str
    = "Is your name O'reilly?";
    // Outputs: Is your name O\'reilly?
    echo addslashes($str);
    ?>

    2. stripslashes –  Un-quote string quoted with addslashes(). Returns a string with backslashes stripped off. (\' becomes ' and so on.) Double backslashes (\\) are made into a single backslash (\).

    <?php
    $str
    = "Is your name O\'reilly?";

    // Outputs: Is your name O’reilly?
    echo stripslashes($str);
    ?>

    Now come to the point…..if we insert string into database with single or double quote like this :
    <?php
    $str = “Is your name O’reilly?”;
    $query = “INSERT INTO tbl (description) VALUES ( ‘$str’)”;
    ?>
    This will occur error.

    but if we use addslashes($str) function like below and then insert into database, then no error will be occurred.
    <?php
    $str = “Is your name O’reilly?”;
    $desc_str = addslashes($str);
    $query = “INSERT INTO tbl (description) VALUES ( ‘$desc_str’)”;
    ?>

    similarly we can use stripslashes($str) to print that table field value like this :
    <?php
    echo stripslashes($str);
    ?>

    cheers :)

     
c
compose new post
j
next post/next comment
k
previous post/previous comment
r
reply
e
edit
o
show/hide comments
t
go to top
l
go to login
h
show/hide help
shift + esc
cancel
Follow

Get every new post delivered to your Inbox.