Zend Anwar

Full stack web developer

Category: Others

Others

How can I refresh a page with jQuery/Javascript?

It is very simple Javascript : <script type=”text/javascript”> setTimeout(function(){ window.location.reload(); }, 5000); </script> Jquery : $(‘#id’).click(function() { location.reload(); });  

Read More

How to change port? – Skype

    open skype     click tools and go to options     click advanced option from left side     click connection     unchecked (Use port 80 and 443 as alternatives for incoming connection)

Read More

Forbidden You don’t have permission to access / on this server

I am posting several solution please check below. Please open httpd.conf or in the specific directory block in httpd-vhosts.conf <Directory /> Options FollowSymLinks AllowOverride All Order deny,allow Allow from all </Directory> Replace with <Directory /> #Options FollowSymLinks Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order deny,allow Allow from all </Directory> ………………………………………… If you are using […]

Read More

How to Password protecting your development site with .htaccess or .htpasswd?

It is very simple just follow below instruction: Step 1 : Create a .htaccess file and upload to your server to the root of your dev site with the following content: AuthName “Authorisation Required” AuthUserFile “/path/to/.htpasswd” AuthType Basic require valid-user ErrorDocument 401 “Authorisation Required” N.B. : If .htaccess file already exists then you can add […]

Read More

odbc_connect(): SQL error: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified, SQL state IM002 in SQLConnect

Please make sure it is a system dsn and not a user dsn? You must you the system tab in ODBC in the Administrative Tools or ODBC Driver to set up a system dsn. Hope it will work.

Read More

Bangladeshi all local newspapers

Daily Karatoa (Bogra) Notun Gantabba (Banga) Shahnama (Barisal) Amader Barisal (Barisal) Barisal News (Barisal) Kaladan News (Burma) Bagerhat News (Bagerhat) Comillar kagoj (Comilla) Comilla Web (Comilla) Comillar Khabor (Comilla) Comilla News (Comilla) Weekly Amod (Comilla) Daily Amader Comilla (Comilla) Chandpur Web (Chadpur) Daily Chandpur Kantha (Chandpur) Chittagong Today (Chittagong) Daily Mathabhanga (Chuadanga) Dainik Azadi (Chittagong) […]

Read More

34 BCS Preliminary Result of psc

collected from http://www.bpsc.gov.bd/upload/docs/bcs_result_0807163932.pdf 000094 000128 000129 000131 000149 000159 000177 000184 000201 000204 000218 000226 000255 000288 000352 000367 000373 000384 000399 000401 000413 000456 000466 000475 000482 000496 000536 000555 000561 000563 000580 000604 000610 000619 000644  000648 000660 000661 000672 000679 000681 000683 000689 000712 000759 000777 000799 000800 000815 000824 000827 000861 […]

Read More

How to I change disk drive in command prompt

It is very simple. If you want change drive E, please follow action C:\> E: it will change E:\>   hope it will help you.

Read More

How to connect ODBC

$conn = odbc_connect(‘pga’, ”, ”); // pga is your access .mdb file. if (!$conn) { exit(“Connection Failed: ” . $conn); } If you have any query please reply me.  

Read More

How to connect to MS Access DB with ODBC on Windows 7

1. Open the app ODBC Data Source Administrator in Windows 7 (search ODBC from Start Menu). 2. Under User DSN tab, click the Add… button. 3. In the Create New Data Source dialog select Microsoft Access Driver (*.mdb), click Finish button. 4. A new dialog box opens, called ODBC Microsoft Access Setup, now click Select […]

Read More