03 Jan, 2011

Php codeignitor jquery library

Articles related to php codeignitor jquery library

cURL PHP Error on Windows

http://digitalpbk.blogspot.com/2009/05/curl-php-windows-unable-load-libcurlphp.html cURL PHP Error on Windows Fatal error: Call to undefined function curl_init() in D:/webs/php.php on line 284This problem arises because of not including the lib_curl.dll to PHP. To solve this uncomment the line as shown below;extension=php_bz2.dllextension=php_curl.dll;extension=php_dba.dllNow restart apache server. If you get an error "Unable to Load X:/path/php/ext/php_curl.dll", copy SSLEAY32.PHPlibEAY32.dll (OpenSSL) Libraries to the System32 folder.Now restart apache server ...
Published 2 years, 9 months ago

Optimize Javascript files with Google Closure compiler

http://digitalpbk.com/javascript/optmizie-javascript-files-google-closure-compiler Optimize Javascript files with Google Closure compiler .0 applications uses a lot of javascript usually jQuery library or the YUI (Yahoo User Interface) Library to make RIA (Rich Internet Applications), this can be a very handy tool to improve Performance. The example code shows converting the following script from function hello(name) { alert('Hello, ' + name); } hello('New user'); to function hello(a){alert("Hello, "+a)}hello("New user"); It removes whitespaces, and shortens the variable names. A Few numbers ...
Published 2 years, 3 months ago

JQuery make dynamic draggable and droppable containers

http://digitalpbk.com/jquery/drag-drop-make-dynamic-draggable-and-droppable-containers JQuery make dynamic draggable and droppable containers The jquery UI javascript has the Draggable and Droppable Interactions inorder to implement a drag drop UI. By default draggable and droppable containers are marked draggable and droppable by jQuery when the page loades, As shown in the code snippet below for the jQuery Drag code and jQuery Drop Code, jQuery Drop Code using jQuery droppable $(".dropTarget").droppable({ drop: function(event, ui) { // Drop Logic ...
Published 1 year, 11 months ago

CodeIgniter: Use GET Parameters for OAuth or Facebook

http://digitalpbk.com/codeigniter/use-get-parameters-facebook-application CodeIgniter: Use GET Parameters for OAuth or Facebook Codeignitor destroys your GET parameters, because it does not use it, however for applications that use OAuth, Facebook Applications or Facebook authentication using Facebook connect, GET parameters are required. In order to retrieve GET parameters from Code Ignitor, first we have to change the config.php, uri_protocol to PATH_INFO, this solves 404 Errors with GET parameters on Codeigniter ...
Published 1 year, 10 months ago

Using PHP for more than HTML

http://digitalpbk.blogspot.com/2007/04/using-php-for-more-than-html.html in the use of the GD library. Returning other formatsOther formats can be returned from php via the same way by changing the Content-Type header and giving the appropriate body.Example : header("Content-Type: text/javascript");?>function Foo(){}echo "function Rand() { } ";?>It is also a good practice to set the content-length header, in case you know the size of the body you are about to send in advance. (In case you are sending an image).Common Content TypesHTML TEXTtext ...
Published 4 years, 9 months ago

PyFacebook Download Python Facebook API Library

http://digitalpbk.com/pyfacebook/pyfacebook-download-python-facebook-api-library PyFacebook Download Python Facebook API Library PyFacebook is the official Facebook API Library written in Python. It is maintained in github, I have attached a snapshot of the master trunk zip file with this post. Python Facebook Software ...
Published 1 year, 3 months ago

CAPTCHA - What ?

http://digitalpbk.blogspot.com/2007/07/captcha-what.html Bend, Orient or change the fonts randomlyHas a random background colour, which is not uniformHas little contrastHas minimum sharp edgesMaking your own CAPTCHA systemA simple CAPTCHA system can be made with PHP and the GD Library.The PHP-GD Library is used to make CAPTCHA images on the fly with random letters.The original text used in the image can be hashed by one way hashing algorithms such as MD5 and SHA. These hashes must be passed through a top-secret function that alters or encrypts the text again ...
Published 4 years, 6 months ago

Resync iPod to new iTunes Library without Erasing or loosing your music

http://digitalpbk.blogspot.com/2009/06/ipod-resynch-itunes-apple-library-copy.html Resync iPod to new iTunes Library without Erasing or loosing your music IntroIt is a mess if you reinstall your computer or lost your iTunes library or you want to add a song from your office computer but your iTunes keeps on saying about "Erase and Resync" your library. Erasing and Resyncing is foolish, because you will loose all your favorite songs on your iPod. Follow these steps to resynch iTunes from iPod.Close iTunes if running and Goto the iTunes folder(My Documents\My Music ...
Published 2 years, 8 months ago

Custom extenstion for a Server Script

http://digitalpbk.blogspot.com/2007/05/custom-extenstion-for-server-script.html Custom extenstion for a Server Script IntroPHP files have a ".PHP" extension and is by default the extension used to run php scripts. Thats ordinary. Now it would be cool if we could name another extension (say .do or .html) for a PHP script and get the same output. This is precisely what the following is about.In order to map a particular extension to a particular application, apache uses handlers. Basically you can define an extension and add the corresponding handler. This can ...
Published 4 years, 8 months ago

Setting up Apache-PHP on windows.

http://digitalpbk.blogspot.com/2006/12/setting-up-apache-php-on-windows.html Setting up Apache-PHP on windows. Step 1 : Downloading required files. apache server binaries : httpd.apache.orgphp binaries : www.php.netStep 2 : Install apache server. Installing apache server is pretty much simple, and same as any other installation. Just enter a network domain name and server name and some email id (someone@microsoft.com). Then choose a installation directory : for reference i am using "C:\". Note that a directory called apache2 will be created under C:\ .So ...
Published 5 years, 1 month ago

Related help topics for php codeignitor jquery library More keywords like php codeignitor jquery library
More pages for php codeignitor jquery library


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
Beach is this way Beach is this way in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk