Hey guys, I'm working on setting up a forum similar to
this one. I've got all the files for it uploaded to my host, but I'm having trouble actually getting it to work.
The instructions that came with it are very vague, and are written for someone who has a dedicated server, which I do not. It wanted me to had a virtual host to the apache config file,with the document root set to a specific directory, with a couple url rewrites in it. specifically, I was to add something similar to this to the config file:
changing it a bit to fit my needs...., what's important are the rewrites and the document root being set to the /config/ directory. Now because I don't have a dedicated server, I established a subdomain, and set the root to the appropriate directory. then I wrote a .htaccess file with the following:
the forums.php file is located within the config directory, and contains this code:
and according to the setup documentation, I need to hit /create.phtml. it's not an actual file, but a script located within the afformentioned main.php. what's supposed to happen is forums.php is supposed to load main.php, see that I requested create.phtml, and then load a create.php file.
same with if I were to go to /forumname/postnumber, it would go through that file, find the appropriate forum pages, and load it.
but all i'm getting is a 404 error saying forums.php does not exist, when in fact, it does. if I reroute it to say test.php, and inside test.php I have a redirect script to google, it will redirect to google..
i'm really stumped here. Perhaps my url rewrites are wrong, I don't know. does anyone have any ideas?