Prihlásiť

Webdesign


Fixing the PNG Color in IE

11. 10. 2007 Zobraziť článok
Open up your image with TweakPNG and remove the gAMA chunk.
More info
Zobraziť článok

mysqlimport

23. 3. 2007 Zobraziť článok
mysqlimport -u username -p database /path/to/tablename.sql
Zobraziť článok

A session is active

18. 3. 2007 Zobraziť článok
Warning: ini_set() [function.ini-set]: A session is active. You cannot change the session module's ini settings at this time. in /path/sites/default/settings.php on line 134

Reason:
session.auto_start is set to 1 in php.ini
Solution:
.htaccess: (AllowOverride All)
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0

Zobraziť článok

Allowed memory size exhausted

18. 3. 2007 Zobraziť článok
  • memory_limit = 12M to your php.ini file (recommended, if you have access)
  • ini_set('memory_limit', '12M');
  • php_value memory_limit 12M in your .htaccess file

Zobraziť článok

CSS only hack

22. 12. 2005 Zobraziť článok
html>body selector /* not for IE<=6 */
_property: value; /* for IE<=6 */
#property: value; /* for IE7 */ 

Zobraziť článok