Command Library NAME halt, reboot, poweroff – stop the system. SYNOPSIS /sbin/halt [-n] [-w] [-d] [-f] [-i] [-p] [-h] /sbin/reboot [-n] [-w] [-d] [-f] [-i] /sbin/poweroff [-n] [-w] [-d] [-f] [-i] [-h] DESCRIPTION Halt notes that the system is being brought down in the file /var/log/wtmp, and then either tells the kernel to halt, reboot …
Author Archives: Prosoxi.com Webmaster
How to restart plesk from command
RESOLUTION This can be done using the following commands when logged in as root via SSH on the Plesk server: Linux Plesk versions: # /etc/rc.d/init.d/psa stopall # /etc/rc.d/init.d/psa start FreeBSD Plesk, versions prior 8.1: # /usr/local/psa/rc.d/psa stop # /usr/local/psa/rc.d/psa start FreeBSD Plesk since 8.1 version: # /usr/local/etc/rc.d/psa.sh stop # /usr/local/etc/rc.d/psa.sh start
Enable 3d Wall Cooliris on your site
Enable your site with Media RSS Media RSS is an open standard for syndicating multimedia content. It extends RSS 2.0 to provide additional information, such as richer thumbnail and image metadata. Media RSS allows Cooliris (formerly known as PicLens) to understand the location of the media files that are displayed in the wall, as well …
Css LI UL rollover effect
CSS #rollover { width:150px; margin:auto; }
My-sql comma values query
Show values 1,2,22,11 mysql_select_db($database_cdl_cms, $cdl_cms); $query_photos = “SELECT * FROM table WHERE ex_ID IN (1,2,22,11)”; $photos = mysql_query($query_photos, $cdl_cms) or die(mysql_error()); $row_photos = mysql_fetch_assoc($photos); $totalRows_photos = mysql_num_rows($photos); or LIKE ‘%”.$_GET[‘cc_id’].”%’
Mysql ORDER by Random
“SELECT * FROM talbe ORDER BY RAND()”;