<?xml version="1.0"?>
<rss version="2.0"><channel><title>Instructions  Latest Topics</title><link>https://www.casinoscripts.co/forums/forum/7-instructions/</link><description>Instructions  Latest Topics</description><language>en</language><item><title>Download Issue After Purchase</title><link>https://www.casinoscripts.co/forums/topic/8-download-issue-after-purchase/</link><description><![CDATA[<p>If you encounter any errors while attempting to download your product after purchase, such as the site not loading or the download failing, please reach out to our support for assistance.</p><p></p><h5><strong>You can contact us directly here:<br></strong><a rel="" href="https://www.casinoscripts.co/contact"><strong>https://www.casinoscripts.co/contact</strong></a></h5><p></p><p>Our team will review your issue and respond as quickly as possible to ensure you receive your purchase without further inconvenience.</p>]]></description><guid isPermaLink="false">8</guid><pubDate>Mon, 20 Apr 2026 02:43:08 +0000</pubDate></item><item><title>Sorry, you aren't permitted to download this file. | Why can't you upload files yet?</title><link>https://www.casinoscripts.co/forums/topic/7-sorry-you-arent-permitted-to-download-this-file-why-cant-you-upload-files-yet/</link><description><![CDATA[<p></p><p><img class="ipsImage ipsImage_thumbnailed ipsRichText__align--block ipsRichText__align--width-custom" data-fileid="1" src="https://www.casinoscripts.co/uploads/monthly_2026_04/image.thumb.png.78bf58c1c40699d04423ccd9d19582c6.png" alt="image.png" title="" width="1000" height="579" data-full-image="https://www.casinoscripts.co/uploads/monthly_2026_04/image.png.ac708399bcd431eaca9473a7f761d391.png" style="--i-media-width: 635px;" loading="lazy"></p><p>To maintain quality and prevent spam, new users must meet certain requirements before gaining full access to uploads and downloads.</p><p><strong>Requirements:</strong></p><ul><li><p>You need <strong>50 approved items of content</strong> (posts, comments, etc.) before you can download files.</p></li><li><p>You can submit a maximum of <strong>10 items of content per day</strong>.</p></li></ul><p><strong>Good news:</strong></p><ul><li><p>Once you reach <strong>50 approved items of content</strong>, the daily posting limit will be removed automatically.</p></li></ul><p>Stay active, contribute quality content, and you’ll unlock full access in no time!</p>]]></description><guid isPermaLink="false">7</guid><pubDate>Sat, 18 Apr 2026 07:23:04 +0000</pubDate></item><item><title>Cheat sheet for installing any script on Laravel/Symfony For Ubuntu 20-24</title><link>https://www.casinoscripts.co/forums/topic/5-cheat-sheet-for-installing-any-script-on-laravelsymfony-for-ubuntu-20-24/</link><description><![CDATA[<p>I’ve written this for Ubuntu 22, but it should work with the other 20+ versions as well. Replace php7.4 with your own version, such as php8.1, if necessary.</p><hr><h3>Run the following commands:</h3><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>apt-get update
apt-get install software-properties-common
add-apt-repository -y ppa:ondrej/php
apt-get update
apt-get -y install unzip zip nginx curl php7.4 php7.4-mysql php7.4-fpm php7.4-mbstring php7.4-xml php7.4-curl redis-server mysql-client mysql-server
</code></pre><hr><h3>install MySQL:</h3><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>sudo mysql_secure_installation
sudo mysql
ALTER USER “root”@'localhost' IDENTIFIED WITH mysql_native_password BY “YOURPASSWORD”;
FLUSH PRIVILEGES;
quit
</code></pre><hr><h3>install Node and PM2:</h3><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}‘ ] &amp;&amp; printf %s ’${HOME}/.nvm‘ || printf %s ’${XDG_CONFIG_HOME}/nvm‘)’
[ -s ‘$NVM_DIR/nvm.sh’ ] &amp;&amp; \. ‘$NVM_DIR/nvm.sh’
nvm install 16
nvm use 16
npm i -g pm2
</code></pre><hr><h3>Copy the script to cd /var/www/html</h3><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>unzip archive.zip
chmod -R 777 storage
chmod -R 777 bootstrap
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
</code></pre><hr><h3>install phpMyAdmin</h3><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>cd /usr/share
composer create-project phpmyadmin/phpmyadmin --repository-url=https://www.phpmyadmin.net/packages.json --no-dev
ln -s /usr/share/phpmyadmin /var/www/html/public
</code></pre><hr><h3>Let’s configure NGINX</h3><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>nano /etc/nginx/sites-available/default
</code></pre><p>Paste everything below. Be sure to specify your domain (already linked to the server)</p><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>limit_conn_zone $binary_remote_addr zone=perip:10m;
limit_conn_zone $server_name zone=perserver:10m;

server {

listen 80;
listen [::]:80 ipv6only=on;

limit_conn perip 10;
limit_conn perserver 100;

# Log files for Debugging
access_log /var/log/nginx/laravel-access.log;
error_log /var/log/nginx/laravel-error.log;

# Webroot directory for Laravel project
root /var/www/html/public;
index index.php index.html index.htm;

# Your domain name
server_name domain.com;

location / {
try_files $uri $uri/ /index.php?$query_string;
}

# PHP-FPM Configuration Nginx
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

}
</code></pre><p>END!!! Next, save via nano (in the terminal). If you’ve had trouble – simply download the file, update it, save it and upload it back to the server.</p><hr><h3>Essential:</h3><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>service nginx restart
</code></pre><hr><h3>The basic installation is complete. If you need SSL</h3><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update
sudo apt-get install python3-certbot-nginx
sudo certbot --nginx
</code></pre><hr><p>Start the bot (if using Roulette, usually in cd /var/www/html/storage/bot or cd /var/www/html/server)</p><p>Don’t forget to specify the paths to the certificates in the bot; they are located here: /etc/letsencrypt/live/</p><pre spellcheck="" class="ipsCode language-plaintext" data-language="Plain Text"><code>pm2 start app.js
</code></pre>]]></description><guid isPermaLink="false">5</guid><pubDate>Sat, 18 Apr 2026 06:41:58 +0000</pubDate></item></channel></rss>
