News
admin
14 years 7 months ago
Backup
mysqldump -u dbuser -p db_name | gzip -9 > db.sql.gzRestore
New DB:
gunzip < db.sql.gz | mysql -u dbuser -p dbname
Existed DB:
mysqlimport -u dbuser -p dbname db.sql// Sorry this version... Read more
admin
14 years 7 months ago
find . -type f -exec grep -il "Text to find" {} \;Bonus: Search command in WinSCP
find . -type f -exec grep -il "!?prompt?!" {} \;
admin
14 years 7 months ago
Backup:cd targetfolder
tar -cvpzf backup.tar.gz --exclude=/backup.tar.gz ./Backup with split
cd targetfolder
tar -cvpz backup.tar.gz --exclude=/backup.tar.gz ./ | split -d -b 3900m - ./backup.tar.gz... Read more
admin
14 years 7 months ago
Command line:
for user in $(cut -f1 -d: /etc/passwd); do echo $user; crontab -u $user -l; done
admin
14 years 8 months ago
I provide how to theme Drupal 7 Forms. in this example is Drupal Commerce Checkout Form
—- template.php—-
/** * Implementation of hook_theme * Define themes to make style */function yourtheme_theme... Read more
admin
14 years 8 months ago
module.info
; Views includesfiles[] = includes/views/module.views.inc ; Views handlersfiles[] = includes/views/handlers/module_handler1.inc
——-
module.module
/** * Implements hook_views_api(). */... Read more
admin
14 years 8 months ago
This is copied from https://github.com/xurizaemon/csvimport/blob/master/csvimport.module
Author is Chris Burgess
Thanks to him!
<?php /** * Demonstration module. * * - Provide form for upload of... Read more
admin
14 years 11 months ago
We now have a new server that is placed in Warsaw, Poland. This will increase the performance of our Polish websites.
admin
14 years 11 months ago
The official website of Jufist will go live this March which is clearer and nicer.
admin
14 years 11 months ago
VnBid will be beta at this March. We are doing everything to have this go right.




