Skip to content

Calculate the weeks between 2 dates manually in PHP

I’m trying to calculate the number of months and weeks since a particular date instead of from the beginning of the year. It shouldn’t follow calendar months but should instead count a month as every …

Heroku 403 Forbidden Error

I deployed a PHP application and when I hit the url, I get the following error: I guess it tries to go into the app/ directory but it can’t. My project structure: What the log shows: Procfile .htaccess Answer Ehhmm so I found the solution. My Procfile had a .txt extension (so Procfile.txt) whereas it ne…

Multiple primary keys found issue Laravel

here is the issue. I am banging my head for hours now on this. Laravel is not allowing me to have a primary key (it says multiple but you can see it has only one). And further more as there is issue …

Codeigniter 3 redirection adds index.php to every redirect

this is a function in my controller function is deleting properly my record but it redirects the user to which gives me error 404 my .htaccess is like this: i have set the index_page in config.php Answer Removing the index.php file in Codeigniter By default, the index.php file will be included in your URLs: I…