Not showing images?

Status
Not open for further replies.

artifexgroup75

New Member
Messages
5
Reaction score
0
Points
0
Just a quick question about the images, I am wondering if the problem is server-side, I have re-uploaded and checked the image links thoroughly through ftp and wordpress, I was just wondering if you guys could shine some light over the problem.

I love your services so far!

Thanks!
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Got a page URL where you see errors so we can try to help?
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
I do not see any broken images.

ADD: My error. I did just a quick visual.
 
Last edited:

lemon-tree

x10 Minion
Community Support
Messages
1,420
Reaction score
46
Points
48
If you look at the source, it is defining the image source a bit peculiarly:
<img src="http://artifexgroup.x10hosting.com/wp-content/themes/flowhub/timthumb.php?src=http://artifexgroup.x10hosting.com/picsthumbs/logobesttire.jpg&amp;h=88&amp;w=240&amp;q=100&amp;zc=1" alt="Welcome to Best Tire Service Co.">
 

artifexgroup75

New Member
Messages
5
Reaction score
0
Points
0
Thanks so much for the help so far guys. :redface:

So it could be something withing the .htaccess file, or is this an error of wordpress?
 

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
Check the .htaccess for a commented line that says "# RewriteBase /" and remove the #.

That -should- fix it - it's not normally required to make things work so wordpress and other CMS's comment it out, but that -should- fix it.


If there is no line that says anything like "# RewriteBase /", make one at the very top of the file as "RewriteBase /" and see if it fixes.
 

artifexgroup75

New Member
Messages
5
Reaction score
0
Points
0
Check the .htaccess for a commented line that says "# RewriteBase /" and remove the #.

That -should- fix it - it's not normally required to make things work so wordpress and other CMS's comment it out, but that -should- fix it.


If there is no line that says anything like "# RewriteBase /", make one at the very top of the file as "RewriteBase /" and see if it fixes.

Code:
RewriteBase /

# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName artifexgroup.x10hosting.com
AuthUserFile /home/artifex/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/artifex/public_html/_vti_pvt/service.grp

I added "RewriteBase /" at the top and nothing happened, unless I put it wrong?
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Code:
File(/usr/local/apache/htdocs/picsthumbs/enginethumb.jpg) is not within the allowed path(s): (/home/:/tmp) in /home/artifex/public_html/wp-content/themes/flowhub/timthumb.php  on line 661

That is one of the errors I got (finally)
The problem is that the software is looking for the file

/usr/local/apache/htdocs/picsthumbs/enginethumb.jpg

when it should be looking for

/home/artifex/public_html/picsthumbs/enginethumb.jpg

That is because it (the script) is using the environmental variable DOCUMENT_ROOT which, due to the new configuration yields /usr/local/apache/htdocs

Not sure if there is a quick fix.
 

artifexgroup75

New Member
Messages
5
Reaction score
0
Points
0
Code:
File(/usr/local/apache/htdocs/picsthumbs/enginethumb.jpg) is not within the allowed path(s): (/home/:/tmp) in /home/artifex/public_html/wp-content/themes/flowhub/timthumb.php  on line 661

That is one of the errors I got (finally)
The problem is that the software is looking for the file

/usr/local/apache/htdocs/picsthumbs/enginethumb.jpg

when it should be looking for

/home/artifex/public_html/picsthumbs/enginethumb.jpg

That is because it (the script) is using the environmental variable DOCUMENT_ROOT which, due to the new configuration yields /usr/local/apache/htdocs

Not sure if there is a quick fix.

Yes that is true, I was looking at that link which livewire posted in the first few posts. I'm thinking I would have to uninstall wordpress and install again? :frown:

You have no idea how I appreciate everyones help.
 
Status
Not open for further replies.
Top