ok Followed your steps , at first I got this which explains why It wasn’t finding the logo
http://www.flatearthweb.com/few/bambooinvoice//img/logo/logo.jpg
Removing the extra slash brought up the logo like you said in the right location. Went and re checked permissions on img/logo/log.jpg and made sure all were 755
Reran the die command less the slash at end and got correct URL
die(“http://www.flatearthtrade.com/few/bambooinvoice” . $resolved_url);
http://www.flatearthweb.com/few/bambooinvoice/img/logo/logo.jpg
Went back and changed line 130 to this less the slash
$resolved_url = “http://www.flatearthweb.com/few/bambooinvoice” . $resolved_url;
However still getting red x in pdf
When I went back to my my original, config.php , $config[’base_url’] I noticed I had a slash at end of it
$config[’base_url’] = “http://www.flatearthweb.com/few/bambooinvoice/”;
The comments say ,
// This should be a full address, with a slash. For example, here’s what
// I use on bambooinvoice.org:
//$config[’base_url’] = “http://www.bambooinvoice.org/”;
However the notes from install pdf say
set your $config[’base_url’]. If you are running this off a website it will be
“http://www.yoursite.com” or “http://www.yoursite.com/bambooinvoice” or
similar.
Willing to try reinstall if this is source of problem but before I do just want to make sure I specify base URL properly unless you have more suggestions?
( appologies above I put wrong url in previous post which was why you weren’t seeing image. IT’s flatearthweb not trade)