jQuery

jQuery este o Biblioteca JavaScript rapidă ÅŸi concisă care simplifică manipularea evenimentelor, animatiilor ÅŸi interacÅ£iunilor care sunt folosite intr-un document HTML, si Ajax pentru dezvoltarea web rapidă. jQuery este proiectat pentru a schimba modul în care aÅ£i scrie JavaScript. Plugin-urile sau extensiile sunt unele dintre cele mai interesante aspecte ale jQuery. Arhitectura sa permite programatorilor […]

Continue Reading

Activare .htaccess

Enable .htaccess in iBay log on using shell (putty, etc.) with the root username and password. login as: rootroot@server’s password: password Enter the following commands: (where: my_ibay_name is the name of the ibay we want to enable for .htaccess override) [root@server ~] db accounts setprop my_ibay_name AllowOverride All[root@server ~] signal-event ibay-modify my_ibay_name Allow FollowSymLinks When […]

Continue Reading

Instalare MySQL 5

To upgrade to MySQL 5.0.68, do the following at a command prompt: yum upgrade mysql –enablerepo=centosplus signal-event post-upgrade; signal-event reboot   mysql_upgrade signal-event post-upgrade; signal-event reboot Errors like this in /var/log/httpd/admin_access_log: Premature end of script headers (index.cgi)Can’t do setuid (cannot exec sperl)Should be fixed by doing this: yum install perl-suidperl signal-event post-upgrade; signal-event reboot   […]

Continue Reading

Error Handling

Prevent public display of PHP errors via htaccess # supress php errorsphp_flag display_startup_errors offphp_flag display_errors offphp_flag html_errors offphp_value docref_root 0php_value docref_ext 0 Preserve (log) your site’s PHP errors via htaccess # enable PHP error loggingphp_flag log_errors onphp_value error_log /home/path/public_html/domain/PHP_errors.log

Continue Reading

Facebook Login

<html> <head>  <title>My Facebook Login Page</title> </head> <body>  <div id=”fb-root”></div>  <script src=”http://connect.facebook.net/en_US/all.js”> </script&gt  <script>   FB.init({     appId:’YOUR_APP_ID’, cookie:true,     status:true, xfbml:true    });   </script>   <fb:login-button perms=”email,user_checkins”>   Login with Facebook   </fb:login-button> </body> </html> A full list of permissions is available in the permissions reference.

Continue Reading

border-radius

-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;   -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 20px; -moz-border-radius-bottomright: 30px; -moz-border-radius-bottomleft: 60px; -webkit-border-radius: 10px 20px 30px 60px; border-radius: 10px 20px 30px 60px;   -moz-border-radius-topleft: 0px; -moz-border-radius-topright: 0px; -moz-border-radius-bottomright: 50px; -moz-border-radius-bottomleft: 30px; -webkit-border-radius: 0px 0px 50px 30px; border-radius: 0px 0px 50px 30px;  

Continue Reading

Keyword Research

Google Adwords Keyword Research Tool – free tool for generating keyword ideas and estimating monthly searches. Wordtracker Keywords – Super fast online tool for assessing the competitiveness of various keywords, to find possible target segments. Market Samurai – Cheaper (but slower) desktop alternative to Wordtracker Keywords, also includes Rank Checker and other marketing tools. SEOMoz […]

Continue Reading

jQuery Cycle

DOWNLOAD DEMO Prezentare Plugin-ul Cycle este un plugin jQuery pentru slideshow care acceptă multe tipuri diferite de efecte de tranzitie. Aceasta acceptă pause-on-hover, auto-oprire, auto-fit, înainte / după callback, declansatoare la clic si multe altele. De asemenea, suporta, dar nu necesita, plugin-ul Easing. Cum funcÅ£ionează Plugin-ul oferă o metodă numită cycle care este invocata pe […]

Continue Reading

box shadow

Inset: No; Horizontal Length: 0px Vertical Length: 0px Blur Radius: 50px Spread: 5px Shadow Color:#CCC -webkit-box-shadow: 0px 0px 50px 5px #ccc; -moz-box-shadow: 0px 0px 50px 5px #ccc; box-shadow: 0px 0px 50px 5px #ccc;         Inset: No; Horizontal Length: 0px Vertical Length: 0px Blur Radius: 5px Spread: 50px -webkit-box-shadow: 0px 0px 5px 50px […]

Continue Reading