Discussion
Getting started FB3(back to index)Hi,
I'm new to this and I'm having trouble figuring out where to start.
I installed FB ok, copied the files and created the folders.
when I go to http://imagebaker.com/fb.php a page loads up, but none of the links are working.
I'm pretty much stuck here.
Question, if I have an image-file "000001.jpg" shouldn't I be able to view it when I enter the URI "http://www.imagebaker.com/fb.php/000001/"?
Thanks.
-Jason
posted by
Jason on 25 Jun 05 at 4:21 PM
Jason, it looks like your server might be running PHP-as-CGI. Did you install the htaccess file?
The URL to 000001.jpg would be http://www.imagebaker.com/fb.php/image/000001/
posted by
donald on 25 Jun 05 at 4:26 PM
I have the .htaccess file installed for WordPress, I didn't know there was one for FB. I didn't see any instruction for it or see it included in the .zip file.
What should I do?
posted by
Jason on 25 Jun 05 at 5:33 PM
Okay, I found the link for
htaccess.zip on the download page. I uploaded it into my folderblog folder, no affect though.
posted by
Jason on 25 Jun 05 at 5:43 PM
Jason, when I go to the link you gave in your initial post, I only get a "No input file specified." error and no other text. Are you seeing something different than I am?
Can you run any PHP files? This might be something to take up with your host.
posted by
donald on 27 Jun 05 at 5:22 PM
I've downgraded, I will start a newtopic.
posted by
Jason on 29 Jun 05 at 3:53 PM
Jason, try redownloading htaccess.zip (I just fixed some bugs in it) or just replace the old .htaccess file with:
# Start folderblog redirecting
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule fb.php(.*)$ ?cgi_uri=%{REQUEST_URI}
</IfModule>
#End
posted by
donald on 29 Jun 05 at 4:11 PM
That should be:
# Start folderblog redirecting
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule fb.php.*$ fb.php?cgi_uri=%{REQUEST_URI}
</IfModule>
#End
posted by
donald on 29 Jun 05 at 5:15 PM
Post a Reply:
(back to index)