Joomla! Discussion Forums



It is currently Wed Nov 25, 2009 11:47 pm (All times are UTC )

 


Forum rules

Global Rules
Additional Rules for this forum <------- Please read before posting



Post new topic Reply to topic  [ 1302 posts ]  Go to page Previous  1 ... 40, 41, 42, 43, 44  Next
Author Message
Posted: Wed Oct 21, 2009 7:10 pm 
User avatar
Joomla! Guru
Joomla! Guru
Offline

Joined: Wed Dec 21, 2005 1:56 pm
Posts: 890
Location: Fortaleza-CE
Vote on Joomla! for Best Open Source PHP

http://award.packtpub.com/best-open-sou ... -finalists

and Hall of Fame

http://www.packtpub.com/hall-fame-finalists

Vote on NoixACL for Best Joomla! Extension Finalists on Joomla Award!

http://www.packtpub.com/joomla-award

Thanks for your vote!

_________________
noixACL - Take Control of your Joomla! http://extensions.joomla.org/extensions/access-&-security/group-access/7010/details
Tutorial - How to install


Top
  E-mail  
 
Posted: Wed Oct 21, 2009 8:39 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
kathtg wrote:

Scenario of how it should work: users sign up for the site. They are registered and should have access to the main menu but NOT the users menu. As of now, they register and can see everything. After paying, they become a member of the community group. They now have access to both the main menu and the users menu.



kathtg,

right for starters permissions are not inherited in NoixACL, so disregard the parent group its for logical organisation.

Secondly the menu adapter will control this for you but if you are using the standard "registered" group for both users you will have set access to both menu. All you have to do is edit the menu adapter permission for the "Registered group" to not give access to the user menu, all users who register with the site are automatically put in to registered (but you can change that in the site configuration i think).

what you need to do is put the users back in the registered group in the user manager. Just denie permission on the "registered" group in the groups menu adapter and you will befine

Also the 3 access levels of noixacl are important, if you menu items, modules or content are set to PUBLIC (green) regardless of the user logging in they will see everything. Registered (RED) means anyone with registered permission and above can access (with noix installed this depends on the permissions) and Special (BLACK) mean publisher or above can access again depending on NoixACL permission. these are the 3 default Joomla! access levels.

8)


Top
  E-mail  
 
Posted: Wed Oct 21, 2009 8:43 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
riteshk84 wrote:
hi ..

i am using noix component with system and user plugin..

its work fine when i select article layout .. but it does not work with category blog layout.

i have created user and assign multiple group to it ,each group having access to one category blog layout article. it seems to b work well with article layout but not working with category layout ..

please suggest ..thanks in advanced.


Yeah unfortunately this is the case, blog layout doesn't display the icons both for section or category. you are using the contentadapter1.5.5.zip?

:geek:


Top
  E-mail  
 
Posted: Wed Oct 21, 2009 8:49 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
zioanx wrote:
Hi everybody and thanks for this valuable component !

I got a couple of things for you. One is a note:

I maybe found the reason why the "Frontpage Add" tick stays off
even when selected. I'm talking about the access adapter
(1.5.3) in the "Manage content" section.

The error is in /adapters/access/views/general/tmplt/default.php:

Code:
      <td>
         <?php
         $haveAccess = $this->checkAccess('com_content','add','users',$groupName,'content','all');
         ?>
         <input type="checkbox" <?php if( $haveAccess ): ?> checked="checked" <?php endif; ?> name="ada_access[com_content][]" value="add;" />
      </td>
   </tr>
   <tr>
      <td width="150" class="key">
         <label for="name">
            <?php echo JText::_( 'Frontpage Edit All' ); ?>
         </label>
      </td>
      <td>
         <?php
         $haveAccess = $this->checkAccess('com_content','edit','users',$groupName,'content','all');
         ?>
         <input type="checkbox" <?php if( $haveAccess ): ?> checked="checked" <?php endif; ?> name="ada_access[com_content][]" value="edit;content;all" />
      </td>


other entries got 3 values ;separated, while the "add" one doesn't. I
tried to correct it like that

Code:
      <td>
         <?php
         $haveAccess = $this->checkAccess('com_content','add','users',$groupName,'content','own');
         ?>
         <input type="checkbox" <?php if( $haveAccess ): ?> checked="checked" <?php endif; ?> name="ada_access[com_content][]" value="add;content;own" />
      </td>
   </tr>
   <tr>
      <td width="150" class="key">
         <label for="name">
            <?php echo JText::_( 'Frontpage Edit All' ); ?>
         </label>
      </td>
      <td>
         <?php
         $haveAccess = $this->checkAccess('com_content','edit','users',$groupName,'content','all');
         ?>
         <input type="checkbox" <?php if( $haveAccess ): ?> checked="checked" <?php endif; ?> name="ada_access[com_content][]" value="edit;content;all" />
      </td>


As you can see, I changed the values so that one can add articles
in his own category (?).

But I got a serious problem. I created a group under Publisher. In the
content adapter I sat the correct category on which to do managing
stuff (adding, publishing deleting.. all). I created a user adding it to
this group and finally I sat all general access permissions to my group.

So I got:

Publisher
-> MYGROUP

MYUSER => MYGROUP

MySection (public)
MyCategory (public)

Content adapter (backend)
MYGROUP => MyCategory (all)

Access adapter (general)
MYGROUP (all)

I checked all the checkbox as a very easy case, but MYUSER
is unable to post content nor to see edit or add icons from the
category list view of MyCategory (as you show in your example, Project 2).
It seems that noix recognize it not as a Publisher (MYGROUP's parent entry)
but as a normal powerless registered user..

When it tries to submit an article, in the right category, joomla
hits a 403 forbidden error, like if the user has no authoring privilege
(while supposed to be publisher !)

If I switch MYUSER from MYGROUP to Publisher, than everything
works, but now it can act on all categories, and not just over
MyCategory. Am I missing something ? I got all the adapters
(1.5.5 and not 1.5.7 for the content, 1.5.3 for the access, 1.0
for modules and 1.5.1 for menus. Component is 2.0.6 and system
plugin 2.0.11)

I thought that setting Publisher as a parent group for MYGROUP,
all privileges would go down to its children, so that MYGROUP
could be a special publisher, authorized to modify ONLY MyCategory.
What happens, insted, is that MYGROUP is nothing more than Registered.

Why ?

Thanks alot !!!!


Zionanx,

Yeah that would be correct, there is no inhereiting permission in noixacl, the parent is used for logical organisation. I assued the same thing but after speeking with the developer they said its just for logic!

Sorry...


Top
  E-mail  
 
Posted: Wed Oct 21, 2009 8:53 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
studentgl wrote:
hi
how do you set this plugin to deny users to edit other users articles?
thanks for your time


make sure you have install all the correct adapters modules and plugins and compnent. go to the project area, of look at the next comment on the previous page and follow the link to bluefish for NoixACL project by ewm.

:geek:


Last edited by sharbron on Wed Oct 21, 2009 8:55 pm, edited 1 time in total.

Top
  E-mail  
 
Posted: Wed Oct 21, 2009 8:54 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
FOR THOSE WANTING TO INSTALL NoixACL2.0.6 on J 1.5.X Please download list below

noixacl2.0.6.zip http://joomlacode.org/gf/download/frsrelease/9395/41302/noixacl2.0.6.zip
mod_mainmenu_noixacl.zip http://joomlacode.org/gf/download/frsrelease/9908/37665/mod_mainmenu_noix.zip
1)adaptercontent1.5.7.zip http://joomlacode.org/gf/download/frsrelease/9441/41446/adapterContent1.5.7.zip
2)adapteraccess1.5.3.zip http://joomlacode.org/gf/download/frsrelease/10213/41464/adapterAccess1.5.3.zip
3)adaptermodulesv1.0.zip http://joomlacode.org/gf/download/frsrelease/10397/40546/adapterModulesv1.0.zip
4)menuadapter1.5.1zip http://joomlacode.org/gf/download/frsrelease/9442/37387/menuAdapter1.5.1.zip

link to the mainpage of the NoixACL project

http://joomlacode.org/gf/project/noixacl/

All components are required for correct functioning of noix.

Note: We recommend to install adaptercontent 1.5.5 instead of 1.5.7, because 1.5.7 can give some problems. The adaptercontent 1.5.5 is available from http://blueflyingfish.no-ip.biz/joomla15/noix_docs_files/noix_files/AdapterContent1.5.5.zip.

Installation of the NoixACL2.0.6

Installed from the extention>install/uninstall

noixacl2.0.6.zip (installs sys and user plugins with componet automatically)
mod_mainmenu_noixacl.zip

then the 4 adapeters installed from the component>access control>adapters
Content adaptercontent1.5.7.zip
Access adapteraccess1.5.3.zip
Module adaptermodulesv1.0.zip
Menu menuadapter1.5.1zip

Please follow these install instructions kindly provided by ewm

http://blueflyingfish.no-ip.biz/joomla15/noixacl_v206_install_2.htm

For those who would like to use the new NoixACL Systems plugin 2.0.11 please follow these instructions;

1)Uninstall the noixACL-systemplugin 2.0.10
Goto Extention Manager>Install/Uninstall>Plugins and locate the 2.0.10 system noixacl plugin
Select and click the uninstall icon
2)Install the new noixACL systems plugin 2.0.11
Goto Extention Manager>Install/Uninstall
Browse for the new 2.0.11 system plugin you downloaded and click install
3)Check the new plugin is enabled
Goto Extention Manager>Plugin Manager and enabled

Here is a link to download the new plugin.

http://joomlacode.org/gf/download/frsrelease/9395/44620/plg_system_2.0.11.zip

****NOTE****
If you are installing NoixACL2.0.6 component this automatically installs the user and systems plugins you will need to perform the above after installation to upgrade to the new system plugin.


this is a repeat comment for those just looking for quick download and install instrucions, if you require further help on installation and configuration please browse for ewm projects for instuction, tips and tricks or visit the NoixACL project area for the tutorial, thank you


Top
  E-mail  
 
Posted: Wed Oct 21, 2009 9:05 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
Vircos wrote:
I have everything working as I had in mind except for one thing. I want a different topmenus per usergroup. I have created two new modules of the type mod_mainmenu_noix with each a different menu selected. I've set the proper rights for the menu-items in the ACL. Those steps are similar to the turorial that can be found at http://www.caribbeanwebsolutions.com/noixacl/

But the generated HTML is not valid. IE does not show a menu and Firefox does not position the menu at right position. This is the HTML that is generated:

Code:
<ul class="menu" /><ul class="menu"><li id="current" class="active item6"><a href="/joomla/index.php?option=com_content&amp;view=frontpage&amp;Itemid=6"><span>Home</span></a></li></ul>


In this case the first <UL> is not used properly and does not contain any list-items which is correct because there are no menu-items to display. The empty <UL> is causing this problem and should not be generated at all.

Is someone able to help me with this one please?


I doubt you can do this because it involve setting the level of the modules in the module manager, and it wont swap menus positions depending on user login (well not without another extention if there is one that does it)

say you have menu a and b

you can set in the module manager the level a = 1 and b = 2 or what ever but if b is above a then it will always load first, the only suggesting is to create 2 menu_modules_noix for each user group and select the same menu and then block each one for the opersite group.

regarding the loading it could be your template thats not working properly try a default template and see if all works?

also what have you installed check with the list above
hope this helps


Top
  E-mail  
 
Posted: Wed Oct 21, 2009 9:09 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
Hello people,

Seems to be alot of people contributing hacks to this forum...

Would be great if you have hacked the code creating a copie of the files and there locations and then we can send the to Joomila to review and possibly modify (or update) the files correctly edited.

If you have modified the code create a zip an PM me it as an attachment...

thinking of you there aBrookland ;)

:)


Top
  E-mail  
 
Posted: Thu Oct 22, 2009 1:27 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Dec 11, 2008 1:27 am
Posts: 17
I notice the multi group option on the current version on noixACL doesn't function, could someone test this and see if this actually works. spoke to Joomila about this and he said he havent went ahead and tested it so if anyone of you guys which work on NoixACL I would love to use this feature.


cheers


Top
  E-mail  
 
Posted: Fri Oct 23, 2009 3:51 pm 
User avatar
Joomla! Guru
Joomla! Guru
Offline

Joined: Wed Dec 21, 2005 1:56 pm
Posts: 890
Location: Fortaleza-CE
Hi guys,

Help to NoixACL wins Joomla! Award the end of votes its 30 October.
We can win, with your contribuition.

Vote on Joomla! for Best Open Source PHP

http://award.packtpub.com/best-open-sou ... -finalists

and Hall of Fame

http://www.packtpub.com/hall-fame-finalists

Vote on NoixACL for Best Joomla! Extension Finalists on Joomla Award!

http://www.packtpub.com/joomla-award

Thanks for your vote!

_________________
noixACL - Take Control of your Joomla! http://extensions.joomla.org/extensions/access-&-security/group-access/7010/details
Tutorial - How to install


Top
  E-mail  
 
Posted: Sun Oct 25, 2009 12:16 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Sun Oct 18, 2009 12:11 pm
Posts: 2
Location: Brasília - DF
Hi,
We need help, please.

The problem is this, this site will have several sections, and each section will have authors / editors / publishers specific.
We want each author / editor / publisher to have access to their duties only in their respective sections.
A example:

Site with information about sports.
Where will the sections: Football, Volleyball, Basketball, Golf

We want the football section only can create articles, edit and publish the registered users in groups Author - Football, Editor - Football and Publisher - Football.

When the Author - Football, click the link to submit article, appear in the combo where the sections have come and fixed the selected section of football, or that it can not make this choice. And keep the charge only choose the category of the article.

How can we do this with noix?

Thanks.


Top
  E-mail  
 
Posted: Mon Oct 26, 2009 3:00 am 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Wed Aug 26, 2009 11:01 pm
Posts: 143
I am using noixacl and having one issue.

I can not get the default editor to show to registered users or to a group on the public side unless I turn off the menu adapter.

Everything else is working great , I have been able to lock things down, add additional groups, set up special menus with the menu adapter turned on.

my config:
adapterAccess1.5.3
adapterContent1.5.7
mod_mainmenu_noix
adapterModulesv1.0
menuAdapter1.5.1
noixacl2.0.6

PHP Version: 5.2.9
Web Server: Apache
Joomla! Version: Joomla! 1.5.14 Stable


Top
  E-mail  
 
Posted: Fri Oct 30, 2009 8:23 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Oct 01, 2009 9:02 am
Posts: 19
Hi there,
I have a big trouble. Maybe it'll be a silly thing but, due to I'm a very new user with noixacl I don't know why I have it.
This is the problem:
- once I've just created a new user and I want to log in the frontend using module CB_login, the next message appears:

"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@supportwebsite.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/1.3.33 Server at www.cpgabrielcomasiribas.org Port 80"

Does anybody know why?
Thanks a lot.


Top
  E-mail  
 
Posted: Sat Nov 07, 2009 1:33 am 
User avatar
Joomla! Guru
Joomla! Guru
Offline

Joined: Wed Dec 21, 2005 1:56 pm
Posts: 890
Location: Fortaleza-CE
motassa wrote:
Hi there,
I have a big trouble. Maybe it'll be a silly thing but, due to I'm a very new user with noixacl I don't know why I have it.
This is the problem:
- once I've just created a new user and I want to log in the frontend using module CB_login, the next message appears:

"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@supportwebsite.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/1.3.33 Server at http://www.cpgabrielcomasiribas.org Port 80"

Does anybody know why?
Thanks a lot.


Hum... I dont know

_________________
noixACL - Take Control of your Joomla! http://extensions.joomla.org/extensions/access-&-security/group-access/7010/details
Tutorial - How to install


Top
  E-mail  
 
Posted: Sun Nov 08, 2009 5:28 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Oct 01, 2009 9:02 am
Posts: 19
Could anyone help me?


Top
  E-mail  
 
Posted: Mon Nov 09, 2009 2:04 pm 
User avatar
Joomla! Guru
Joomla! Guru
Offline

Joined: Wed Dec 21, 2005 1:56 pm
Posts: 890
Location: Fortaleza-CE
We need a developer to help in project if anyone can help I will apreciate.

_________________
noixACL - Take Control of your Joomla! http://extensions.joomla.org/extensions/access-&-security/group-access/7010/details
Tutorial - How to install


Top
  E-mail  
 
Posted: Tue Nov 10, 2009 3:10 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Thu Nov 05, 2009 3:00 pm
Posts: 2
I have a question, is there any tutorial?? I'm supposed to be creating a site which is divided by projects, e.g. There is a project X who can only viewed/ edited/ by the group X and I dont know how to do so, there are several sections that I have to divide that way. Thanks a lot.


Top
  E-mail  
 
Posted: Tue Nov 10, 2009 6:26 am 
User avatar
Joomla! Explorer
Joomla! Explorer
Offline

Joined: Thu Jul 06, 2006 12:57 pm
Posts: 474
@ico-mr62Tips! see the url from Joomila about going to dl page and there going to project page..

Joomila maybe would be good Joomila if you set up a url to the doc in your Joomla forum signature profile here.

_________________
Success in the long run Its not about the code its about the people and community that's make it!
Its not what you say its what you do that matters!

Darb - aka ssnobben


Top
  E-mail  
 
Posted: Wed Nov 11, 2009 9:30 am 
Joomla! Intern
Joomla! Intern
Offline

Joined: Mon Sep 28, 2009 12:34 pm
Posts: 56
i'll volunteer.. but im not a php expert, but im ready to do all i can and all it takes to get this working.

how much time u think it need?


Top
  E-mail  
 
Posted: Wed Nov 11, 2009 9:40 am 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
motassa wrote:
Hi there,
I have a big trouble. Maybe it'll be a silly thing but, due to I'm a very new user with noixacl I don't know why I have it.
This is the problem:
- once I've just created a new user and I want to log in the frontend using module CB_login, the next message appears:

"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@supportwebsite.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/1.3.33 Server at http://www.cpgabrielcomasiribas.org Port 80"

Does anybody know why?
Thanks a lot.


Does your problem go away when you use the Joomla! default login module?


Top
  E-mail  
 
Posted: Wed Nov 11, 2009 9:41 am 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
smalltownsboy wrote:
I am using noixacl and having one issue.

I can not get the default editor to show to registered users or to a group on the public side unless I turn off the menu adapter.

Everything else is working great , I have been able to lock things down, add additional groups, set up special menus with the menu adapter turned on.

my config:
adapterAccess1.5.3
adapterContent1.5.7
mod_mainmenu_noix
adapterModulesv1.0
menuAdapter1.5.1
noixacl2.0.6

PHP Version: 5.2.9
Web Server: Apache
Joomla! Version: Joomla! 1.5.14 Stable


Use the Content 1.5.5 adapter instead of the 1.5.7 version


Top
  E-mail  
 
Posted: Wed Nov 11, 2009 9:42 am 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
ico-mr62 wrote:
I have a question, is there any tutorial?? I'm supposed to be creating a site which is divided by projects, e.g. There is a project X who can only viewed/ edited/ by the group X and I dont know how to do so, there are several sections that I have to divide that way. Thanks a lot.


See my post further up this page!


Top
  E-mail  
 
Posted: Wed Nov 11, 2009 12:21 pm 
User avatar
Joomla! Guru
Joomla! Guru
Offline

Joined: Wed Dec 21, 2005 1:56 pm
Posts: 890
Location: Fortaleza-CE
darb wrote:
@ico-mr62Tips! see the url from Joomila about going to dl page and there going to project page..

Joomila maybe would be good Joomila if you set up a url to the doc in your Joomla forum signature profile here.


Ok I will put ;D

_________________
noixACL - Take Control of your Joomla! http://extensions.joomla.org/extensions/access-&-security/group-access/7010/details
Tutorial - How to install


Top
  E-mail  
 
Posted: Wed Nov 11, 2009 4:45 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Oct 01, 2009 9:02 am
Posts: 19
sharbron wrote:
motassa wrote:
Hi there,
I have a big trouble. Maybe it'll be a silly thing but, due to I'm a very new user with noixacl I don't know why I have it.
This is the problem:
- once I've just created a new user and I want to log in the frontend using module CB_login, the next message appears:

"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@supportwebsite.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/1.3.33 Server at http://www.cpgabrielcomasiribas.org Port 80"

Does anybody know why?
Thanks a lot.


Does your problem go away when you use the Joomla! default login module?


The problem doesn't appear if I use the default login module, but If I use cb login the problem goes on, and if you try to send me a form, created with breezingforms component (http://www.cpgabrielcomasiribas.org/ind ... &Itemid=91) where:
Nom=name
Llinatges=surname
Pare mare tutor alumn@= word that you want
Correu electrònic= mail
Proposta nom usuari= username that you want.

you can see how the problem appears again.

I wrote to my hosting (godaddy) because I thought it was a problem of there. I've tried to install another joomla and the problem goes on. They answer me the following:

"As you are using a module for Joomla, and can replicate this issue on two installations, it would appear that this module is either not supported through our shared hosting, or is not yet configured to work in the shared hosting environment. The only ones who can troubleshoot this issue, is the support forums for Joomla! through their site http://joomla.org. You may also want to research their help documentation about this module to see if there is a configuration file that you need to specify the SMTP server through (it should be relay-hosting.secureserver.net which does not require a user name or password to authenticate with and uses port 25) and any other additional settings. "

Does anyone have any solution? I don't know what I have to do...
Thanks.


Top
  E-mail  
 
Posted: Wed Nov 11, 2009 9:48 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
motassa wrote:
sharbron wrote:
motassa wrote:
Hi there,
I have a big trouble. Maybe it'll be a silly thing but, due to I'm a very new user with noixacl I don't know why I have it.
This is the problem:
- once I've just created a new user and I want to log in the frontend using module CB_login, the next message appears:

"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@supportwebsite.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/1.3.33 Server at http://www.cpgabrielcomasiribas.org Port 80"

Does anybody know why?
Thanks a lot.


Does your problem go away when you use the Joomla! default login module?


The problem doesn't appear if I use the default login module, but If I use cb login the problem goes on, and if you try to send me a form, created with breezingforms component (http://www.cpgabrielcomasiribas.org/ind ... &Itemid=91) where:
Nom=name
Llinatges=surname
Pare mare tutor alumn@= word that you want
Correu electrònic= mail
Proposta nom usuari= username that you want.

you can see how the problem appears again.

I wrote to my hosting (godaddy) because I thought it was a problem of there. I've tried to install another joomla and the problem goes on. They answer me the following:

"As you are using a module for Joomla, and can replicate this issue on two installations, it would appear that this module is either not supported through our shared hosting, or is not yet configured to work in the shared hosting environment. The only ones who can troubleshoot this issue, is the support forums for Joomla! through their site http://joomla.org. You may also want to research their help documentation about this module to see if there is a configuration file that you need to specify the SMTP server through (it should be relay-hosting.secureserver.net which does not require a user name or password to authenticate with and uses port 25) and any other additional settings. "

Does anyone have any solution? I don't know what I have to do...
Thanks.


Is this a hosted site or locally installed on your network?


Top
  E-mail  
 
Posted: Thu Nov 12, 2009 7:37 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Oct 01, 2009 9:02 am
Posts: 19
The problem doesn't appear if I use the default login module, but If I use cb login the problem goes on, and if you try to send me a form, created with breezingforms component (http://www.cpgabrielcomasiribas.org/ind ... &Itemid=91) where:
Nom=name
Llinatges=surname
Pare mare tutor alumn@= word that you want
Correu electrònic= mail
Proposta nom usuari= username that you want.

you can see how the problem appears again.

I wrote to my hosting (godaddy) because I thought it was a problem of there. I've tried to install another joomla and the problem goes on. They answer me the following:

"As you are using a module for Joomla, and can replicate this issue on two installations, it would appear that this module is either not supported through our shared hosting, or is not yet configured to work in the shared hosting environment. The only ones who can troubleshoot this issue, is the support forums for Joomla! through their site http://joomla.org. You may also want to research their help documentation about this module to see if there is a configuration file that you need to specify the SMTP server through (it should be relay-hosting.secureserver.net which does not require a user name or password to authenticate with and uses port 25) and any other additional settings. "

Does anyone have any solution? I don't know what I have to do...
Thanks.[/quote]

Is this a hosted site or locally installed on your network?[/quote]

It's a hosted site. http://www.godaddy.com They give me the possibility to install joomla directly from their host.


Top
  E-mail  
 
Posted: Thu Nov 12, 2009 7:18 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
motassa wrote:
The problem doesn't appear if I use the default login module, but If I use cb login the problem goes on, and if you try to send me a form, created with breezingforms component (http://www.cpgabrielcomasiribas.org/ind ... &Itemid=91) where:
Nom=name
Llinatges=surname
Pare mare tutor alumn@= word that you want
Correu electrònic= mail
Proposta nom usuari= username that you want.

you can see how the problem appears again.

I wrote to my hosting (godaddy) because I thought it was a problem of there. I've tried to install another joomla and the problem goes on. They answer me the following:

"As you are using a module for Joomla, and can replicate this issue on two installations, it would appear that this module is either not supported through our shared hosting, or is not yet configured to work in the shared hosting environment. The only ones who can troubleshoot this issue, is the support forums for Joomla! through their site http://joomla.org. You may also want to research their help documentation about this module to see if there is a configuration file that you need to specify the SMTP server through (it should be relay-hosting.secureserver.net which does not require a user name or password to authenticate with and uses port 25) and any other additional settings. "

Does anyone have any solution? I don't know what I have to do...
Thanks.

Is this a hosted site or locally installed on your network?

It's a hosted site. http://www.godaddy.com They give me the possibility to install joomla directly from their host.


From the above comment maybe check you Joomla!'s site configuration mail settings. If you incharge of your domain then check you domians mail server setting and smtp setting and then the Joomla! mail settings, try using SMTP. Contact your webhost on the SMTP setting to use on your Joomla! site.

Open this helps, as i cannot help anymore...have you tried the components/modules forum or Joomla forums for this compenent/module??

8)


Top
  E-mail  
 
Posted: Fri Nov 13, 2009 1:16 pm 
User avatar
Joomla! Guru
Joomla! Guru
Offline

Joined: Wed Dec 21, 2005 1:56 pm
Posts: 890
Location: Fortaleza-CE
Congratulations \o/

Joomla! Award

We are pleased to announce the results of the inaugral subcategory Awards for Hall of Fame this year. Here are the winners:

Best Joomla! Theme: Affinity
One of the most distinguishing features of Affinity is that it allows you the ability to interact with the layout of your site by moving different areas of your site with graphically integrated handles.

Best Joomla! Extension: noixACL
noixACL is one of the most popular ACLs available for Joomla!

:p 8)


http://www.packtpub.com/joomla-award

_________________
noixACL - Take Control of your Joomla! http://extensions.joomla.org/extensions/access-&-security/group-access/7010/details
Tutorial - How to install


Top
  E-mail  
 
Posted: Fri Nov 13, 2009 1:51 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Jul 06, 2009 9:55 am
Posts: 202
joomila wrote:
Congratulations \o/

Joomla! Award

We are pleased to announce the results of the inaugral subcategory Awards for Hall of Fame this year. Here are the winners:

Best Joomla! Theme: Affinity
One of the most distinguishing features of Affinity is that it allows you the ability to interact with the layout of your site by moving different areas of your site with graphically integrated handles.

Best Joomla! Extension: noixACL
noixACL is one of the most popular ACLs available for Joomla!

:p 8)


http://www.packtpub.com/joomla-award


Great news Joomila...

Thank you for all your hard work working on this extention, hope the future version are also as good.

Everyone, this extention would not have been award to NoixACL without your help one this forum...

Keep up the good work people........

:p


Top
  E-mail  
 
Posted: Sun Nov 15, 2009 1:47 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sun Jun 04, 2006 10:25 pm
Posts: 15
joomila wrote:
Congratulations \o/

Best Joomla! Extension: noixACL
noixACL is one of the most popular ACLs available for Joomla!

http://www.packtpub.com/joomla-award


Congratulations! joomila, I am impressed by your support efforts here.
btw, do you still need help in project?

_________________
Want to be secure? Check Secure Login Plugin at http://CodingMall.com
Latest Joomla membership components - http://SleekApps.com


Top
  E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1302 posts ]  Go to page Previous  1 ... 40, 41, 42, 43, 44  Next

Quick reply

 



Who is online

Users browsing this forum: Baidu [Spider], greyman56, Lambas and 25 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group