-
-
Save renekreijveld/27d9062b941a2d0c80f3 to your computer and use it in GitHub Desktop.
#!/bin/sh | |
# jfindfiles -- Find used and unused content files in your Joomla website | |
# | |
# This scripts supports Joomla versions 2.5 - 3.x | |
# | |
# Copyright 2014 Rene Kreijveld - [email protected] | |
# | |
# This program is free software; you may redistribute it and/or modify it. | |
# | |
# Warning! This script needs the file jfunctions. This has to be installed in the same directory as this script. | |
# | |
# general variables | |
mypath=$(cd $(dirname ${0}); pwd -P) | |
myname=$(basename ${0}) | |
# include general functions | |
. ${mypath}/jfunctions | |
# version | |
version=2.2 | |
# Setup Vvariables | |
start=./images | |
curdir=`pwd` | |
echo "Creating database dump..." | |
# Dump the database to a .sql file | |
if mysqldump --skip-opt --add-drop-table --add-locks --create-options --disable-keys --lock-tables --quick --set-charset --host=${host} --user=${dbuser} --password=${password} ${database} > ${database}.sql | |
then | |
echo "Database dump ${database}.sql created." | |
else | |
echo "Error creating database dump." | |
exit 1 | |
fi | |
dbdump=${curdir}/${database}.sql | |
usedfile=${curdir}/${sitename}-used.txt | |
notusedfile=${curdir}/${sitename}-notused.txt | |
echo "The following files were mentioned in your Joomla database:" > ${usedfile} | |
echo "The following files were NOT mentioned in your Joomla database:" > ${notusedfile} | |
echo "Checking for used and unused files..." | |
# Move into the images/stories directory | |
cd ${start} | |
# Find all files and check if they are mentioned in the database dump | |
for file in `find . -type f -print | cut -c 3- | sed 's/ /#}/g'` | |
do | |
file2=`echo $file | sed 's/#}/ /g'` | |
file3=`echo $file | sed 's/#}/%20/g'` | |
result1=`grep -c "$file2" ${dbdump}` | |
result2=`grep -c "$file3" ${dbdump}` | |
if [[ $result1 = 0 ]]; then | |
if [[ $result2 = 0 ]]; then | |
echo $file2 >> ${notusedfile} | |
else | |
echo $file2 >> ${usedfile} | |
fi | |
else | |
echo $file2 >> ${usedfile} | |
fi | |
done | |
# Move back to the root of the website | |
cd ${curdir} | |
# Cleanup database dump | |
rm ${dbdump} | |
# Report findings | |
echo "Files checking done." | |
echo "Check the following text-files for results:" | |
echo "${usedfile}" | |
echo "${notusedfile}" |
Hi Rene, found this forum by Google in search for finding pics in joomla's image folder which are unused. Have no idea how to install your code to make it work. So could you just step back from prof talk and tell a newbie how to use / where to put the code you provide here? Since it's the only hit for my search… Thanks, Herbert
Hello @HerKle,
I tried it out and after some modifications it is working now for me.
So here my Instruction:
- in "jfindfiles" above the part:
result1=
grep -c "$file2" ${dbdump} result2=
grep -c "$file3" ${dbdump} if [[ $result1 = 0 ]]; then if [[ $result2 = 0 ]]; then echo $file2 >> ${notusedfile} else echo $file2 >> ${usedfile} fi else echo $file2 >> ${usedfile} fi
is not working for me. I got an error. I changed the code to:
if grep -c "$file2" ${dbdump} > 0 then echo $file2 >> ${usedfile} else if grep -c "$file3" ${dbdump} > 0 then echo $file3 >> ${usedfile} else echo $file3 >> ${notusedfile} fi fi
- place the file "jfindfiles" in your wwwroot directory of your joomla page and give the file execution rights.
- Place the file "jfunctions" (https://gist.github.com/renekreijveld/9663741) in your wwwroot directory of your joomla page and give the file execution rights.
- excecute the "jfindfiles" in the command line of the server with:
./findfiles
- You should not run it in the live enviroment when many users are on the page because the database dump take some resources.
- after the script is finished you have to text files with the result.
- remove the both scripts and the text files from the server finally, after downloading it.
Hi,
Thanks for this very useful script.
Here is my gist with @wehsemann modifications, with a script to delete files using the unused text file and with the howto
Hello,
I am not experienced in Linux, but I need to run this script with my Joomla.
So I launched it and got to the point that it works, but I get an error "Error creating database dump."
What can be the causes? How to fix it? I have diskspace available, so it's not the problem.
My system is Red Hat Enterprise Linux Server release 6.7 (Santiago)
Thanks
Thank you so much renekreijveld, wehseman and psyray!
With the usage comment by user psyray and his adapted files (as commented above) I was able to get it to work (I'm new to ssh).
I learned
- SSH access is needed for this (found on webhost help pages how to do that)
- putty (putty.org) is a nice program for SSH access
- with
ls -lh
there is a list of who owns the files and what the permissions are (the user that uses Putty has to have execute rights) and via ftp thechmod
command changes the permissions
There were three errors for the jfunctions.sh file
grep: ./libraries/cms/version/version.php: No such file or directory
grep: ./libraries/cms/version/version.php: No such file or directory
grep: ./libraries/cms/version/version.php: No such file or directory
just because the version directory does not exist in in my Joomla 3.9.6 installation. That is not a problem at all though!
First of All let me say T H A N K S ! to Author Rene for sharing this fantastic "time saving" script.
It works fine on my joomla 3.x
Some notes
MANDATORY
2 files:
- jfindfiles
https://gist.github.com/renekreijveld/27d9062b941a2d0c80f3- - jfunctions
https://gist.github.com/renekreijveld/9663741 - SSH Session, better if you use root
STEPS
- Download and upload jfindfiles and jfunctions on your joomla root, in my case in keep joomla on site folder
- chmod +x jfindfiles (I also done for jfunction but I think it's not necessary)
- ./findfiles
OUTPUT
findfiles created 2 files : mysitename-notused.txt and mysitename--used.thx
Won't parse configuration file.
CentOS 7, Joomla 3.6.
Manually typed database name works.