HubsInfo Network
Login or Register to remove ads! You're browsing our forum and website as a Guest meaning you can only see a portion of the forum in read-only mode.
PHP MySQL Linux Material Design Web Hosting Online Games SimCity BuildIt

Recent Posts

Pages: [1] 2 3 ... 10
1
Linux / Check MySQL server status on Linux
« Last post by Remix on August 20, 2025, 11:09:50 AM »
Check MySQL server status on Linux

Code: [Select]
sudo service mysql status
or

Code: [Select]
ps aux | grep mysql



Start, Stop and Restart MySQL server on Linux

Code: [Select]
sudo /etc/init.d/mysql start
sudo /etc/init.d/mysql stop
sudo /etc/init.d/mysql restart
2
Servers and Networking [IT & Datacenter] / Fixing wsappx high memory and CPU usage
« Last post by Remix on August 09, 2025, 02:25:10 PM »
Fixing wsappx high memory and CPU usage


WSAPPX, a Windows process related to the Microsoft Store and app management, can sometimes cause high CPU usage. This is usually due to background tasks like app updates or installations. If you're experiencing this, it's recommended to let the process run its course or check for pending updates. If the issue persists, you can try updating your device drivers, scanning for malware, or disabling background app activity.

Disable background app activity: You can limit the impact of WSAPPX by disabling background activity for specific apps. Go to Settings > Privacy > Background apps and adjust the settings.

3
Web Hosting and Datacenters / cPanel Spam Filters Emails Blacklist
« Last post by Remix on February 26, 2025, 11:16:22 PM »
cPanel Spam Filters Emails Blacklist


Configure the blacklist settings for Spam Filters.

Spam Blacklist Items (UPDATED 26.02.2025)

@163.com

@aol.com

@avangardeacademy.ro

@hotmail.com

@ig.com.br

@live.ca

@live.co.uk

@live.com

@live.com.mx

@mail.com

@mail.ru

@me.com

@optusnet.com.au

@balinyonga.com

@orange.fr

@qztmail.com

@rocketmail.com

@skymesh.com.au

@ukr.net

@yahoo.ca

@yahoo.fr

@bigpond.com.au

@btinternet.com

@connectevents.ro

@cox.net

@googlemail.com

@heatingcooling.com.br

@hotmail.co.uk

@outlook.com

@yandex.com

@videois.ru

@buyviagracheapmailorder.us

@final.dobunny.com

@blitzed.space

@anmail.xyz

@talkwithwebvisitor.com

@rs-4pr.com

@gutenews.com

@yippie.pro

@scantaliste.fr

@katriengalloo.be

@autocarevestal.com

@rd-lueftung.ch

@cextradebox.net

@thehipsteragency.com

@gigsmicro.com

@dummy.com

@ivfinland.fi

@codestar.info

@yandex.kz

@ukr.net

@rdsmail.ro

@tigran.com.tr

@baixter.com

@propertieslima.com

@real-automatic.ro

@uprisem.com

@telesystem.ro

@obesemen.shop

@gsamail.shop

@dcctb.com

@yourmail.wiki

@thailandmovers.com

@h.bestdrones.store

@bestdrones.store

@smoke.thrah.com

@a.web20.services

@gmx.com

@asiamail.wiki

@thingstodoin.shop

@obesemen.ink

@electricscooter.city

@wayback.shop

@bheps.com

@asiamail.wiki

@shavers.care

@dvarane.org.tr

@gestalle.mordovia.su

@rdsmail.ro

@recbt.ro

@reca.ro

@recobat-plus.ro

@codestar.info

@dvarane.org.tr

@victorypharm.hr

@realitycheck.ro

@bomakmakina.com

@payop.com

@rdsmail.ro

@addme16.business

@yeal.in

@bostinalawyers.eu

@growthshop.info

@w-dragon.com

@upperising.com

@napinfotech.com

@global-erty.net

@cu.ucsg.edu.ec

@wallem.com

@ihts.ro

@a.kyha.sbs

@licentesoft.site

@targettmail.com

@mailcos.site

@b.trendesmail.com

@a.trendesmail.com

@c.targettmail.com

@trendesmail.com

@sellyourvision.com

@awolfservices.com

@fedex.com

@kidaolabs.com

@proton.me

@edcoop.com

@sendpulse.com

@dpennmail.com

@admailpop.com

@formailder.com

@mailnest.xyz

@mailsphere.xyz

@chinaunicom.cn

@migenetika.com

@unilogistic.hu

@simpletherapy.net

@gosschalks.co.uk

@tpc-m.ro


--
Enjoy your freedom and email!







4
How to level up your characters in Mortal Kombat Mobile by doing quest towers.








5
Age of Empires Mobile / How to increase your Power in Age of Empires Mobile
« Last post by Remix on January 25, 2025, 12:49:32 PM »
How to increase your Power in Age of Empires Mobile








How to increase your Power in Age of Empires Mobile. Train your troops and get more power.

INFO:
To promote troops, you must have a higher tier of troops unlocked by progressing through the research nodes at the university. Once unlocked, troops can be promoted by simply heading to the barracks.
Each time you upgrade Town Center in Age of Empires Mobile, you will increase troop capacity.
Each time you increase hero level, you will increase troop capacity by 200.


6
Servers and Networking [IT & Datacenter] / PHP Security Best Practices
« Last post by Remix on November 15, 2024, 04:10:22 PM »
PHP Security Best Practices


Disabling Dangerous PHP Functions

PHP has a lot of functions which can be used to crack your server if not used properly. You can set list of functions in /etc/php.d/security.ini using disable_functions directive:

To add the PHP functions to the PHP configuration using WHM:
Log in to WHM
Go to Home->Software->MultiPHP INI Editor.
Choose the Editor Mode tab.
From the drop-down list choose the PHP version.
In the configuration window that will be opened, search for “disable_functions”.

Ex.
--
asp_tags=Off
display_errors = Off
magic_quotes_gpc=Off
max_execution_time = 30
max_input_time = 60
max_input_vars = 1000
memory_limit = 128M
post_max_size = 8M
session.gc_maxlifetime = 1440
session.save_path = "/var/cpanel/php/sessions/ea-php72"
upload_max_filesize = 2M
zlib.output_compression = On
allow_url_fopen = Off
allow_url_include = Off
disable_functions="exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,show_source"
enable_dl = Off
file_uploads = On







Keep PHP, Software, And OS Up to Date
Restrict File and Directory Access







PHP based apps can face the different types of attacks. I have noticed the different types of attacks:

1. XSS - Cross-site scripting is a vulnerability in php web applications, which attackers may exploit to steal users’ information. You can configure Apache and write more secure PHP scripts (validating all user input) to avoid xss attacks.

2. SQL injection - It is a vulnerability in the database layer of an php application. When user input is incorrectly filtered any SQL statements can be executed by the application. You can configure Apache and write secure code (validating and escaping all user input) to avoid SQL injection attacks. A common practice in PHP is to escape parameters using the function called mysql_real_escape_string() before sending the SQL query.
Spoofing

3. File uploads - It allows your visitor to place files (upload files) on your server. This can result into various security problems such as delete your files, delete database, get user details and much more. You can disable file uploads using php or write secure code (like validating user input and only allow image file type such as png or gif).

4. Including local and remote files - An attacker can open files from remote server and execute any PHP code. This allows them to upload file, delete file and install backdoors. You can configure php to disable remote file execution.

5. eval() - Evaluate a string as PHP code. This is often used by an attacker to hide their code and tools on the server itself. You can configure php to disable eval().

6. Sea-surf Attack (Cross-site request forgery - CSRF) - This attack forces an end user to execute unwanted actions on a web application in which he/she is currently authenticated. A successful CSRF exploit can compromise end user data and operation in case of normal user. If the targeted end user is the administrator account, this can compromise the entire web application.






7
Support / MEE6 Discord commands
« Last post by Remix on November 15, 2024, 04:03:41 PM »
MEE6 Discord commands



Command / Function

!ban / Bans a specified discord user
!birthday / View the birthday of a user
!clear / Delete a given number of messages from the server
!clear-all-infractions / Remove all infractions of a user
!coins / View the number of coins that everyone has in your server
!daily / Use this command to claim your daily rewards
!forget-birthday / Remove a user’s birthday
!give-xp / Grant a user experience that affects their rank in the server
!guess / Allows you to play Guess the Number to earn coins
!imgur / Lets users post random memes based on a keyword
!infractions / View the past infractions of a user
!join / Add a bot to your voice channel, which will follow you around
!kick / Remove a user from the server. Kicked users can rejoin the servers
!levels / Check the leaderboard of your server
!mute / Mutes a user in your Discord server
!next-birthday / Shows the upcoming 10 birthdays on your server
!play URL / Allows users to play music from URL addresses like YouTube
!queue / Allows users to start a queue that can be used to play back-to-back songs
!rank / Displays your rank details
!remember-birthday / Allows users to add their birthday
!remove-xp / Lets users remove XP from specific users
!richest / Shows the user with the most coins in your server
!rps / Lets users play rock, paper, scissors
!set-user-birthday / Used to add other users’ birthdays to the server
!slow-mode / Enables slow mode
!start-quiz / Starts a music-based quiz
!tempban / Used to temporarily ban users from the server. After typing in their name, you’ll also need to add the duration in the following format:
6h 30m40m12h
!twitch / Lets users search Twitch streams on Discord
!unban / Allows users to unban a user
!unmute / Used to unmute muted server members
!unset-user-birthday / Allows users to remove a player’s birthday
!user-info / Shows all the available information about a user
!Voice-claim / Temporarily claim the ownership of a temporary voice channel
!Voice-clean / Delete all the temporary in-active voice channels
!voice-limit / Limit the number of users available in the voice channel
!Voice-owner / Find the owner of each voice channel
!voice-transfer / Transfer the ownership of a temporary voice channel from user one to user two. You’ll need to enter two usernames to use this command and the user you’d like to transfer the ownership to will need to be the second name
!vote-skip / Start a vote to skip the currently playing song
!warn / Warn a user. You can specify the reason after the command as well
!youtube / Allows users to search YouTube videos and play them on Discord






8
World of Warcraft / Druid macros WotLK
« Last post by Remix on November 15, 2024, 03:56:49 PM »
Druid macros WotLK


Dungeon macro (attacking behind mobs)

Code: [Select]
/castsequence [fusion_builder_container hundred_percent="yes" overflow="visible"][fusion_builder_row][fusion_builder_column type="1_1" background_position="left top" background_color="" border_size="" border_color="" border_style="solid" spacing="yes" background_image="" background_repeat="no-repeat" padding="" margin_top="0px" margin_bottom="0px" class="" id="" animation_type="" animation_speed="0.3" animation_direction="left" hide_on_mobile="no" center_content="no" min_height="none"][stealth]Ravage;reset=target/alt Mangle(Cat Form),Faerie Fire (Feral),null
/castsequence reset=target Savage Roar,Rake,Shred,Shred,Shred,Rip,Rake,Shred
/cast [nostealth]Prowl
/cast Tiger's Fury
/cast Berserk
/cast Feral Charge(Cat Form)




Farming macro (attacking not behind mobs)

Code: [Select]
/castsequence [stealth]Pounce;reset=1 Faerie Fire (Feral),null
/castsequence reset=target Mangle(Cat Form),Savage Roar,Rake,Rip,Mangle(Cat Form),Rake,Mangle(Cat Form)
/cast [nostealth]Prowl
/cast Tiger's Fury
/cast Berserk
/cast Feral Charge(Cat Form)







9
League of Legends / All Sivir skins in League of Legends
« Last post by Remix on November 14, 2024, 05:36:47 PM »
All Sivir skins in League of Legends


Ann-Sivir-sary Sivir (Anniversary)
09-10-2024



Primal Ambush Sivir
24-Jan-2024



Solar Eclipse Sivir
28-Apr-2022



Odyssey Sivir
15-Oct-2020



Cafe Cuties Sivir
02-Dec-2021



Pizza Delivery Sivir
29-Mar-2018



Blood Moon Sivir
10-Jan-2019



Bandit Sivir
21-Mar-2011



Warden Sivir
17-Feb-2015



Warrior Princess Sivir
27-Apr-2010



Original Sivir
21-Feb-2009






Rare & Limited
--
Prestige Mythmaker Sivir
12-Jan-2023



Victorious Sivir
12-Nov-2015



Neo PAX Sivir
30-Aug-2017



PAX Sivir
25-Aug-2011



Huntress Sivir
07-Feb-2011






Legacy Vault
--
Mythmaker Sivir
12-Jan-2023



Spectacular Sivir
08-Jun-2010



Snowstorm Sivir
19-Dec-2013



10
Linux / How to install Shotcut 16.03.01 on Linux Ubuntu via PPA
« Last post by RuNNer on November 03, 2024, 04:35:01 PM »
How to install Shotcut 16.03.01 on Linux Ubuntu via PPA


Installation instructions

Code: [Select]
sudo add-apt-repository ppa:haraldhv/shotcut
sudo apt-get update
sudo apt-get install shotcut


Optional, to remove shotcut, do:

Code: [Select]
sudo apt-get remove shotcut

Official website: https://www.shotcut.org/

Shotcut is an open-source, multi-platform video editing software, having following features like:

supports oodles of audio and video formats and codecs thanks to FFmpeg
supports many image formats such as BMP, GIF, JPEG, PNG, SVG, TGA, TIFF as well as image sequences
no import required – native editing
frame-accurate seeking for many formats
multi-format timeline: mix and match resolutions and frame rates within a project
screen capture (Linux only) including background capture to capture a Shotcut session
webcam capture (Linux only)
audio capture (Linux only; PulseAudio, JACK, or ALSA)
network stream playback (HTTP, HLS, RTMP, RTSP, MMS, UDP)
frei0r video generator plugins (e.g. color bars and plasma)
Blackmagic Design SDI and HDMI for input and preview monitoring
JACK transport sync
deinterlacing
detailed media properties panel
recent files panel with search
drag-n-drop files from file manager
save and load trimmed clip as MLT XML file
load and play complex MLT XML file as a clip
audio signal level meter
volume control
scrubbing and transport control
flexible UI through dock-able panels
encode/transcode to a variety of formats and codecs thanks to FFmpeg
capture (record) SDI, HDMI, webcam (V4L2), JACK audio, PulseAudio, IP stream, X11 screen, and Windows DirectShow devices
stream (encode to IP) files and any capture source
batch encoding with job control
create, play, edit, save, load, encode, and stream MLT XML projects (with auto-save)
unlimited undo and redo for playlist edits including a history view
connect to Melted servers over MVCP TCP protocol
control the transport playback of Melted units
edit Melted playlists including suport for undo/redo
OpenGL GPU-based image processing
multi-core parallel image processing (when not using GPU and frame-dropping is disabled)
video filters: Blur, Color Grading, Crop, Diffusion, Glow, Invert Colors, Mirror, Opacity, Rotate, Saturation, Sepia Tone, Sharpen, Size and Position, Stabilize, Text, Vignette, Wave, White Balance
audio filters: Balance, Copy Channel, Downmix, Gain, Normlize, Pan, Swap Channels
3-way (shadows, mids, highlights) color wheels for color correction and grading
eye dropper tool to pick neutral color for white balancing
UI translations: Catalan, Chinese, Czech, Danish, English, French, German, Portugese, Spanish
HTML5 (sans audio and video) as video source and filters
Leap Motion for jog/shuttle control
DeckLink SDI keyer output
UI themes/skins: native-OS look and custom dark and light
control video zoom in the player: fit viewable area (default), 50%, original (100%), and 200%
multitrack timeline with thumbnails and waveforms
thumbnail and waveform caching between sessions
audio mixing across all tracks
video compositing across video tracks
trimming (on timeline)
append, insert, overwrite, lift, and delete (ripple) editing on the timeline
3-point editing
external monitoring on an extra system display/monitor
fade in and out audio and fade video from and to black with easy-to-use fader controls on timeline
cross-fade audio and video dissolve transitions easily by overlapping shots on the same track of the timeline
video wipe transitions: bar, barn door, box, clock (radial), diagonal, iris, matrix, and custom gradient image
video quality measurement (PSNR and SSIM)




Pages: [1] 2 3 ... 10


Linux Ubuntu Guides Linux games - Lutris.net