Jump to content

lucashermsen

Members
  • Posts

    6
  • Joined

  • Last visited

lucashermsen's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi there, I want to view a selection of a PDF-file to my visitors. The PDF should be in some sort of an iframe, where people can scroll through the entire PDF, but by default there is a certain viewport to this PDF. So let's say I have a PDF on pets, and you can access this pdf through two webpages: cats and dogs. When you access it through 'cats', you by default see the section on cats. When you access the pdf through the webpage 'dogs', you see the section on dogs by default. Has anybody got an idea on how to do this? Regards Lucas
  2. Dear forum members, I am building a system that lets users edit some pieces of my content using their Facebook profiles. I am aware that such a thing requires very custom coding and I am going to make sure that will be done. But I would love to get my hands on some open source software where I can get the following things from: - Version control system such as the one wikipedia uses for backing up versions and making sure admins can redo and undo changes; - Administrator system so some Facebook-profiles may have more editorial rights than others. I want to fully integrate this into my own system. Has anybody got an idea how to do this? I don't want to reinvent the wheel, so to speak. Regards Lucas
  3. It's an actual directory and the contents are loaded by /application/subdomain.php. So with RewriteRule ^subdomain(.*)$ /applications/subdomain.php/$1 [L] I actually wanted to load the subdomain.php file in /applications/
  4. Dear forum members, I am working on a website in CodeIgniter that will offer multiple unions their own member system. They will all use virtually the same system, but they will have their own database connected to it. Besides that, some configuration files and view-files will be different per union. Should I create a separate application-folder for each union? And maybe use packages to link them? Or is it possible using just one application for this? Regards Lucas
  5. I think they are indeed doing this: "setting the document root of the subdomain to be a subfolder under wherever the domain.com files are kept? (eg, /home/lucashermsen/domain.com/subdomain)" What can I do to have subdomains use the /application/subdomain/ folder?
  6. Dear forum members, My hoster redirects all traffic to subdomain.domain.com to domain.com/subdomain. Since I work with CodeIgniter, I would like it to route it to domain.com/applications/subdomain. Therefore, I have written an htaccess in the root folder: RewriteEngine on RewriteRule ^subdomain(.*)$ /applications/subdomain.php/$1 [L] However, this gives an internal server error (500). Does anybody have a clue how I can best do this? Best regards Lucas
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.