Moving on.

by on Dec.22, 2017, under Ultimate Edition

I have began moving a singular, dual website. Both will land you to the same. http://os-builder.com & http://uebuilder.com I have downloaded solidly in excess a Terabyte, we are changing hosting companies. Godaddy has been extortionately been raising costs for years. I have fixed it, perhaps permanently.

I had to write software to “fix” it, you know I love arrays:

#!/bin/bash
declare -a SERVER=();
declare -a USERPASS=();
SERVER=(‘rockamd.db.10515754.hostedresource.com’ ‘ultimate22.db.10515754.hostedresource.com’ ‘dow1604804582068.db.10515754.hostedresource.com’ ‘osbuilder.db.10515754.hostedresource.com’ ‘testue.db.10515754.hostedresource.com’
‘uedonors.db.10515754.hostedresource.com’ ‘repostorm.db.10515754.hostedresource.com’ ‘ultamatix.db.10515754.hostedresource.com’ ‘ultimateplayer.db.10515754.hostedresource.com’ ‘themelinux.db.10515754.hostedresource.com’ ‘forumubuntu.db.10515754.hostedresource.com’ ‘dow1304409265529.db.10515754.hostedresource.com’)
USERPASS=(‘rockamd’ ‘ultimate22’ ‘dow1604804582068’ ‘osbuilder’ ‘testue’ ‘uedonors’ ‘repostorm’ ‘ultamatix’ ‘ultimateplayer’ ‘themelinux’ ‘forumubuntu’ ‘dow1304409265529’)

if ! [[ -d DATABASES ]]; then
mkdir “DATABASES”
fi
array_counter=0
for EACH in “${SERVER[@]}”
do
echo “Processing $EACH”
UP=”${USERPASS[$array_counter]}”
echo “Command: mysqldump -p -h “$EACH” -u “$UP” “$UP” > DATABASES/”$UP”.sql”
mysqldump -p -h “$EACH” -u “$UP” “$UP” > DATABASES/”$UP”.sql
array_counter=$((array_counter + 1))
done

I am uploading a 18GB compressed file for gamers, UETOYS are next, followed through with apps. We are still dealing with one website, how many do we own?

This is where I want the hosting site to wake up. I send you a few Million users, straight up don’t charge me. I have had hosting companies send me checks. GoDaddy is not one of them, they year after year raise the amount I pay. You do realise I am working on a Operating System for servers? I may host out of my house.

As far as hosting? I am probably the worst individual you would ever want to mess with. Take a deep breath.

TheeMahn,


Leave a Reply

You must be logged in to post a comment.

Back to top ↑