scrambled Posted October 23, 2008 Report Share Posted October 23, 2008 Hi,Sorry for this real basic question. How do I set this up so that other computers on my home network can access my localhost websites? Thanks, Quote Link to comment Share on other sites More sharing options...
kalpz Posted October 23, 2008 Report Share Posted October 23, 2008 Hello - Try this: http://wiki.uniformserver.com/index.php/Be...k_.28Locally.29 Hope that helps.Kalpz Quote ATOMIC Web Hosting 2007 - 2011 Shared Hosting - Reseller Hosting - Dedicated Servers - Virtual Private Servers (Request Dedicated/VPS Servers via E-mail) E-mail: sales@atomicwebhosting.com Website: http://www.atomicwebhosting.com/ Link to comment Share on other sites More sharing options...
cbs48 Posted December 3, 2008 Report Share Posted December 3, 2008 Thanks for thr link. But what if you get an 403 Forbidden page. Is there something else what must be changed? I have an map in the \www called intranet and installed in this map joomla. This should only work localy. Quote Link to comment Share on other sites More sharing options...
DannyH Posted December 3, 2008 Report Share Posted December 3, 2008 Hi cbs48, Have you got a .htaccess file in your www folder ? if you have delete it and try again Danny Quote Personal website Uniform Server - hMail Server - Joomla Link to comment Share on other sites More sharing options...
cbs48 Posted December 3, 2008 Report Share Posted December 3, 2008 Hi cbs48, Have you got a .htaccess file in your www folder ? if you have delete it and try again Danny Thanx Danny, it works. Quote Link to comment Share on other sites More sharing options...
DannyH Posted December 3, 2008 Report Share Posted December 3, 2008 Hi cbs48, Glad it worked - Just some more info for you, it might help Now I presume that you have something like this http://192.168.1.1/joomla to access your site? Have you got a .htaccess file in your www root folder ? if you have delete it or change to: #Order Deny,Allow#Deny from all#Allow from 127.0.0.1 Now to make Joomla into an intranet login to the administrator Panel got to Site – Global Configuration, and select site offline and then save, this will now take your website offline to the general public from accessing it and also give you a login for your users, now for your users to login you need edit this code. Joomla/include/application.php 1. // Find this line: 2. if ($this->getCfg('offline') && $user->get('gid') < '23' ) { 3. //Change it to: 4. if ($this->getCfg('offline') && $user->get('gid') < '18' ) { Now all registered users can login to your intranet. You might also want to adapt the look of the login page to your site. Here we don't need to hack a thing, as we can use template overrides. Copy the file /templates/system/offline.php to /templates/[YOUR_TEMPLATE]/offline.php. It's plain HTML with some PHP tags, so you should have no problem editing it to your liking. Changing the graphics and some text will be sufficient for most people. Hope that helps Danny Quote Personal website Uniform Server - hMail Server - Joomla Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.