New pages

Jump to navigation Jump to search
New pages
Hide registered users | Show bots | Hide redirects
  • 19:05, 2 December 2025.PS1 To .exe (hist | edit) ‎[529 bytes]Bacchas (talk | contribs) (Created page with "==Converting a PowerShell script (.ps1) to an executable (.exe) can be achieved using tools like PS2EXE or IExpress.==")
  • 16:42, 2 December 2025Convert .Py to .exe (hist | edit) ‎[805 bytes]Bacchas (talk | contribs) (Created page with "#Converting a Python script (.py) to an executable (.exe) file for Windows can be achieved using tools like PyInstaller")
  • 14:26, 7 October 2025MYSQL DATABASE BACKUP (hist | edit) ‎[1,576 bytes]Bacchas (talk | contribs) (Created page with "==Mysql Backup and Restore == ===List Databases=== '''Login to server ''' mysql ''' List databases''' show databases; '''List Tables in a database''' use databasename show tables; ===Bakcup a single database=== <pre> done from bash - no need to log in to mysql mysqldump -u root -ppassword sugarcrm > sugarcrm.sq syntax mysqldump -u root -p[root_password] [database_name] > dumpfilename.sql </pre> ===Backup a single table=== <pre> mysqldump -u root -ppassword dat...")
  • 14:17, 7 October 2025MYSQL DATABASE RESTORE (hist | edit) ‎[1,962 bytes]Bacchas (talk | contribs) (Created page with "==Restore Database== <p style="background-color: #77a8f7; font-weight: bold; font-size: 1.2rem;"> I used this to restore r512 from the dumped .sql file in 2025 </p> <p style="font-weight: bold;font-size: 1.3rem"> I tried to restore it using phpmyadmin, but it did not work, got many errors. probably because it was a raw sql dump backup. The target database must already exist. if it doesn't, create it first</p> * log into mysql CREATE DATABASE your_database_name; mysq...")
  • 14:58, 6 October 2025APPSHEET (hist | edit) ‎[221 bytes]Bacchas (talk | contribs) (Created page with "== Fix permission error when connecting to a mysql database == '''On the mysql server, loginto mysql then run command''' ALTER USER 'bacchas'@'%' IDENTIFIED WITH mysql_native_password BY 'Outwater24!'; FLUSH PRIVILEGES;")