Skip to main content

Term and Conditions

 

Welcome to www.toxpenguin.com

 

By accessing and using our website, you agree to comply with and be bound by the following terms and conditions:

1. Acceptance of Terms

By accessing this website, you agree to abide by these Terms and Conditions. If you do not agree with any part of these terms, please do not use our website.

2. Use of Content

All content provided on this site is for informational purposes only. We make no representations as to the accuracy or completeness of any information on this site.
You may view, download, and print pages from our website for your personal use, subject to the restrictions set out below.

3. Prohibited Uses

You agree not to use our website in any way that may damage, disable, or impair the site or interfere with any other party’s use and enjoyment of the site.
You must not use this website for any illegal or unauthorized purpose.

4. Intellectual Property Rights

Unless otherwise stated, we own the intellectual property rights in the website and material on the website. All intellectual property rights are reserved.

5. User-Generated Content

If you submit any content to our website (such as comments or forum posts), you grant us a perpetual, non-exclusive, royalty-free, worldwide license to use, reproduce, and distribute your content in any existing or future media.

6. Limitation of Liability

We will not be liable for any indirect, incidental, punitive, or consequential damages arising out of your use of our website.

7. Changes to Terms

We may revise these terms from time to time. The revised terms will apply to the use of our website from the date of publication of the revised terms on our website.


Comments

Popular posts from this blog

:: install postfix, cyrus, courier, mysql, postfixadmin, squirrelmail on opensuse

:: what is please take a look this. :: install dependency + installing berkeleyDB + installing MySQL + installing Apache + installing PHP :: remove sendmail [ root:~ ]# rpm -e sendmail --nodeps :: build cyrus-sasl [ root: ~ ]# wget ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-2.1.23.tar.gz [ root: ~ ]# tar -xzf cyrus-sasl-2.1.23.tar.gz [ root: ~ ]# groupadd mail [ root: ~ ]# useradd -u 96 -d /usr/cyrus -g mail cyrus [ root: ~ ]# passwd cyrus [ root: ~ ]# cd cyrus-sasl-2.1.23/ [ root: cyrus-sasl-2.1.23 ]# export CPPFLAGS="-I/usr/local/mysql/include/mysql" [ root: cyrus-sasl-2.1.23 ]# ./configure --enable-anon --enable-plain --enable-login --enable-sql --disable-krb4 --disable-otp --disable-cram --disable-digest --with-mysql=/usr/local/mysql --with-plugindir=/usr/lib/sasl2 --without-pam --without-saslauthd --without-pwcheck [ root: cyrus-sasl-2.1.23 ]# make && make install :: installing Postfix + download postfix [ root:~ ]# wget http://mirror.postfix.jp/...

Simple Step Installing WordPress in Ubuntu 24.04

Using ols1clk.sh Script This step will: Install OpenLiteSpeed Install PHP Secure your server Install MySQL Set up WordPress Run the script: bash <( curl -k https://raw.githubusercontent.com/litespeedtech/ols1clk/master/ols1clk.sh ) -w  Configuring WordPress Open your browser and navigate to your domain: http://yourdomain.com You’ll be greeted by the famous WordPress installation wizard. Follow these steps: Select your preferred language. Enter your site title, username, and password for the WordPress admin account. Click "Install WordPress." And just like that, you’ve done it!

:: wordpress theme reset to default

:: whatis wordpress WordPress is an open source CMS, often used as a blog publishing application powered by PHP and MySQL. It has many features including a plugin architecture and a templating system. -[ http://en.wikipedia.org/wiki/Wordpress ]- :: reset themes wordpress to default # with cli [ linux: ~ ]$ mysql -u user -p mysql> use dbwordpress; mysql> UPDATE wp_options SET option_value = 'default' WHERE option_name = 'template'; mysql> UPDATE wp_options SET option_value = 'default' WHERE option_name = 'stylesheet'; # share hosting / cpanel / phpmyadmin 0. login on cpanel / phpmyadmin 1. select db for wordpress 2. select SQL tabs and run this command: UPDATE wp_options SET option_value = 'default' WHERE option_name = 'template'; UPDATE wp_options SET option_value = 'default' WHERE option_name = 'stylesheet'; 3. click GO 4. open your site, if you still get blank screen, you can login on admin page ...