UNDERCODE COMMUNITY
2.67K subscribers
1.23K photos
31 videos
2.65K files
79.3K links
πŸ¦‘ Undercode Cyber World!
@UndercodeCommunity


1️⃣ World first platform which Collect & Analyzes every New hacking method.
+ AI Pratice
@Undercode_Testing

2️⃣ Cyber & Tech NEWS:
@Undercode_News

3️⃣ CVE @Daily_CVE

✨ Web & Services:
β†’ Undercode.help
Download Telegram
Androguard usage.pdf
161.6 KB
How to use Androguard- hack
full tutorial for beginers
#requested
The Fully Remote Attack Surface of the iPhone .pdf
308.4 KB
The Most #requested tutorial
The Fully Remote Attack Surface of the iPhone
full
with pictures
Finding_the_Balance_Between_Speed_&_Accuracy_During_an_Internet.pdf
13 MB
Finding the Balance Between Speed & Accuracy During an Internet-wide Port Scanning #full #requested
Forwarded from UNDERCODE HACKING
Guide 001 _Getting Started in Bug Bounty Hunting...pdf
2 MB
#requested for beginers helpful
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘Getting a 500 Internal Server Error on Laravel 5+ Ubuntu :
#requested :

1) This is my first version of Laravel on Ubuntu, and I'm still running into 500 glitches, problems. I've done it on Windows OS several times before, and never had a problem.

2) This 500 internal server normally happens while the application "mod rewrite" is not turned on.

3) On Ubuntu, I have installed rewritemod but it’s also not working. I’ve given access to all my folders and files inside i.e.

/var/www/html/laravel
project
Still it doesn’t work. Changed .htaccess as well from original to this.

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

4) Generally, I have all the extensions needed for Laravel 5+ as well. Anything that I might have missed?

πŸ¦‘Solution
It is not your .htaccess. The problem was simply in folder permissions. Windows is a bit more flexible when it comes to permissions. With Ubuntu, and Linux in general you have to be a bit more careful and explicit.

Run the following commands through terminal.

1️⃣sudo chmod -R 755 laravelblog
and then type below to allow Laravel to write file to storage folder

2️⃣chmod -R o+w laravel
blog/storage

These two commands will solve the problem :)

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁