262381
upsadaz
Re: Gisa se Apresentando
  • 2004/4/16 14:15

  • upsadaz

  • Friend of XOOPS

  • Posts: 174

  • Since: 2004/2/26


Ola! Bom dia. Eu so Portuguesa tambem mas de Portugal. Vivo aqui nos EU desde os sete anos. Pois nao sei escrever Portugues bem mas posso ler e entender melhor.

Welcome to the wonderful world of XOOPS. I like it here! I am sure you will too.



262382
hmoleman
Re: Installing on IIS windows 2000
  • 2004/4/16 14:11

  • hmoleman

  • Just popping in

  • Posts: 4

  • Since: 2004/4/14


One more quick note - also, using the same methods, give your upload directory in c:\php, and some other folder (read install.txt in c:\php) full control by the IIS_MACHINE account or you'll generate php errors.



262383
hmoleman
Re: Installing on IIS windows 2000
  • 2004/4/16 14:10

  • hmoleman

  • Just popping in

  • Posts: 4

  • Since: 2004/4/14


Alright, here SHOULD be a proper step-by-step to setting up XOOPS in IIS:

- Extract the XOOPS files to a folder somewhere.

- Create a website in IIS (if you need more detailed instructions on this I can probably help) and have it point its root directory to the xoops/html directory.

- Go to the XOOPS directory, right click on the html folder, go to the security tab, click add, and from your local machine, add the IUSR_MACHINE user. After it is added, grant it Read and Execute permissions on the folder. Now click the "Advanced" button, and at the bottom you will see a checkbox that says something to the effect of "Replace permission entries on all child objects with entries shown here that apply to child objects." Check off that checkbox and click "Apply" - it will apply IIS read to everything xoops.

- Enter the html directory

- Multiselect the Upload, Cache, and Template_c directories. Right click on the selected folders, go to the security tab. Grant the IUSR_MACHINE account Full Control permissions on the folder (I know, I know - but it'll get it working.) Now click the "Advanced" button, and at the bottom you will see a checkbox that says something to the effect of "Replace permission entries on all child objects with entries shown here that apply to child objects." Check off that checkbox and click "Apply" - it will apply IIS READ/WRITE/MODIFY to everything xoops.

- Select the mainfile.php in the xoops/html folder. Right click on the file, go to the security tab. Grant the IUSR_MACHINE account Full Control permissions on the folder - it will apply IIS READ/WRITE/MODIFY to mainfile.php.

- Go into IIS. Right click on your new site, click on the Documents tab, add index.php to the list of default documents.

- Finally, go to your PHP directory (usually c:\php) and multiselect the php.exe and php*.dll files. Right click on the selected files, go to the security tab. Grant the IUSR_MACHINE account Read/Execute permissions on the files.

That should do it. Beyond this, I can't be much help I don't think. Best of luck!!!



262384
upsadaz
Domain name registrations and transfers
  • 2004/4/16 14:07

  • upsadaz

  • Friend of XOOPS

  • Posts: 174

  • Since: 2004/2/26


Hi Max.
I am a domain name manager. I manage over 150 domain names with www.GoDaddy.com . They are a good company to deal with as they have excellent customer support. They also have a domain name transfer concierge that you can call if you are having trouble transfering your domain name.
When you register a domain name typically you register for one year. You can actually register for more than one year at a time. So you'll have to check how many years you have registered your domain name. You cannot cancel a domain name as far as I know. You would have to let it expire and then re-register it. This is ricky though because if your DN has any value there may be someone waiting to snatch it up.
Also, when you first register your DN there is an option to lock your DN to keep it from being transferred without your knowledge. If your DN is locked you have to log in to your account at that registrar and unlock it so you can request a transfer from another registrar.If you did not register it yourself but had a hosting company do it for you they will have to unlock it.
If you transfer your domain to GoDaddy they will charge $7.95 and add one year to your registration included in that price. It is better to manage the DN registration yourself because you have total control over the DNS settings and contact information associated with that account.

Good Luck!



262385
Herko
Re: about delete webmaster
  • 2004/4/16 14:07

  • Herko

  • XOOPS is my life!

  • Posts: 4238

  • Since: 2002/2/4 1


This problem has been fixed in the CVS, and will be part of the new release. This is the fix:

in /modules/system/admin/groups/main.php

lines 222 to 232
original code:
$memstart = isset($memstart) ? intval($memstart) : 0;
               if (
$groupid == XOOPS_GROUP_ADMIN) {
 !                 if (
$member_handler->getUserCountByGroup($groupid) <= count($uids)){
 !
                    
redirect_header('admin.php?fct=groups&op=modify&g_id='.$groupid.'&memstart='.$memstart,0,_AM_ADMINNO);
 !                 }
               } else {
                   
$member_handler->removeUsersFromGroup($groupid$uids);
 -
                
redirect_header('admin.php?fct=groups&amp;op=modify&amp;g_id='.$groupid.'&amp;memstart='.$memstart,0,_AM_DBUPDATED);
               }
           }
           break;

new code:
$memstart = isset($memstart) ? intval($memstart) : 0;
               if (
$groupid == XOOPS_GROUP_ADMIN) {
 !                 if (
$member_handler->getUserCountByGroup($groupid) > count($uids)){
 !                     
$member_handler->removeUsersFromGroup($groupid$uids);
 !                 }
               } else {
                   
$member_handler->removeUsersFromGroup($groupid$uids);
               }
 +
            
redirect_header('admin.php?fct=groups&amp;op=modify&amp;g_id='.$groupid.'&amp;memstart='.$memstart,0,_AM_DBUPDATED);
           }
           break;


Herko



262386
Herko
Re: how to edit site turn off page
  • 2004/4/16 14:02

  • Herko

  • XOOPS is my life!

  • Posts: 4238

  • Since: 2002/2/4 1


Easy: it's a template. Go to system admin -> templates. If you only have the default template set, then you will have to clone it because you can't edit the default template set (because that set is the one you can always fall back on). Once you have cloned the default set, go to the SYstem templates, and edit the system_siteclosed.html template (NOT the file!). Then, in the system admin -> preferences -> general settings page, make the cloned template set the active one.

Herko



262387
Dave_L
Re: about delete webmaster
  • 2004/4/16 14:00

  • Dave_L

  • XOOPS is my life!

  • Posts: 2277

  • Since: 2003/11/7


And you're logged in as user #1 when doing this?



262388
sylvainb
Re: now using v1.4
  • 2004/4/16 13:50

  • sylvainb

  • Not too shy to talk

  • Posts: 168

  • Since: 2003/2/11


Yes GOwin, you're wright!
I've noticed it but too late, the zip file will be corrected.
For now, you can simply edit the blocks.php file in the language directory and erase one of the defines
define"_MSW_B_INTHE""in the");
as it is defined twice.



262389
Dhurgan
Re: Advanced Downloads Module
  • 2004/4/16 13:44

  • Dhurgan

  • Just popping in

  • Posts: 68

  • Since: 2004/2/11


Well,
I dont know how Catzwolf modules looks or acts, I havent seen it in any newer revision. I tried to look for a download somewhere but I failed to find it. Maybe it solves my problems, maybe it doesnt. Right now I'm looking at all the XOOPS code and how they doen it to get a feel for it and my impression stays the same.

It works... but I dont think they follow their own coding rules, but perhaps I misunderstood them.

Anyways, If I find Catzwolfs module and can check it out somewhere, then I'll sure look into it, but I'm already far enough on my own to make it happen anyways, if for nothing else, so at least to learn how it fits together.




262390
limecity
how to edit site turn off page
  • 2004/4/16 13:19

  • limecity

  • Friend of XOOPS

  • Posts: 1602

  • Since: 2003/7/6 0


I turn my site off..
how do i edit tat particular page shown when its turned off ?
which file is tat?

i wan to add pictures of underconstruction and also some contact onto tat page..







Login

Who's Online

111 user(s) are online (49 user(s) are browsing Support Forums)


Members: 0


Guests: 111


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits