Re: [TYPO3-english] Paypal Payment

2013-10-31 Thread bernd wilke

Am 31.10.13 02:51, schrieb Mike Kane:

Thank you very much for your words Bernd.

I'm trying to use your extension timed_ugs but either is not working
or i'm doing something wrong... I have a default usergroup (Inactive)
which receives all the registrations (i'm using datamints_feuser) and i
created a new usergroup called Active to receive the new users.
I scheduled a change to the Active usergroup at 31th of October, and
the change has not been accomplished, i checked the fe_users table and
the usergroup in the test user is still  the corresponding of
Inactive, so i guess it hasnt worked out very well...Or maybe i have
to give some more hours for the change to be suceeded, or maybe this is
not the proper goal of the extension, or isn't the way that the
extension works.


as the membership for a single user should be time restricted I need to 
time the relation, therfore the usergroup can't be assigned directly to 
the user. a record betweeen, with time restrictions, is used.


with datamints you have to insert these additional records (set with a 
correct endtime) instead of the direct membership


bernd
--
http://www.pi-phi.de/cheatsheet.html
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Powermail 2.x and database insertion of form values does not work (TYPO3 6.1.x) Solved!

2013-10-31 Thread Bert Hiddink [BENDOO e-work solutions]

Solved! Oeps :)

Should be:
plugin.tx_powermail.settings.setup {
 dbEntry
..

and not:

plugin.tx_powermail {
 dbEntry
..

-brt

On 30-10-13 18:40, Bert Hiddink [BENDOO e-work solutions] wrote:

Hello,

I am using Powermail 2.x and want to insert some values of the submitted
form into a table (tt_address). This was a working feature from 1.6.x
but can't get it working with 2.x

Acccording the manual, the snippet which should do this:

plugin.tx_powermail {

# Save values to any table (example for tt_adress)
dbEntry {

# enable or disable db entry for tt_address
tt_address._enable = TEXT
tt_address._enable.value = 1

# write only if field email is not yet filled with current value
# (update: update values of existing entry)
# (none: no entry if field is filled)
# (disable: always add values don't care about existing values)
tt_address._ifUnique.email = disable

# add mm relation to uid 2 of tt_address_group (via mm table)
tt_address._mm = COA
tt_address._mm.10 = COA
# 1 is always the mm table
tt_address._mm.10.1 = TEXT
tt_address._mm.10.1.value = tt_address_group_mm
# 2 is always the second table (e.g. categories table)
tt_address._mm.10.2 = TEXT
tt_address._mm.10.2.value = tt_address_group
# 3 is always the uid of a data record of the second table to get a
relation to this (in this case uid 1 of tt_address_group)
tt_address._mm.10.3 = TEXT
tt_address._mm.10.3.value = 1


# fill table tt_address with field pid with the current pid (e.g. 12)
tt_address.pid = TEXT
tt_address.pid.value =120

tt_address.addressgroup=TEXT
tt_address.addressgroup.value=1

# fill table tt_address with field email with a static value =
m...@mail.com
tt_address.email = TEXT
tt_address.email.value = m...@mail.com

}
}

The above does not work (I test with only static values), nothing is
inserted in tt_address while mails are send correctly.

Any ideas/pointers?

Thanks and regards,
Bert


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] How to create backend module for documentation

2013-10-31 Thread Sergio Catalá


Hi Xavier,

Thanks for your answer. Unfortunately my TYPO3 is 4.7. I used, in fact, 
the sphinx extension in a TYPO3 6.1 to generate the Html version from 
Rest format, and tested the restdoc extension too. But now I am trying 
to export all these Htmls to be presented nice. I just tested your 
solution, adding all my Html documentation to 
my_extension/Resources/Private/Templates/Class/ and link it there, but 
the Css doesn't apply just because of the paths.


I would like to find a nicer solution for that.

Isn't there a chance to sphinx and restdocs are backwards compatible 
with TYPO3 4.7? :(


Thanks in advance,
Sergio


On 30/10/13 15:18, Xavier Perseguers wrote:

Hi Sergio,

Which version of TYPO3 are you targeting?

I ask this because if you target 6.2, then best practices will arise and
simply be to show your in-house documentation within the new
documentation module:

http://docs.typo3.org/typo3cms/extensions/documentation/

If you really need a custom Backend module, you should simply load your
documentation in an iframe with something like


function main() {
$url = 'http://yourwebsite/whatever/documentation.html';

$this-content = 'html
head
titleDocumentation/title
/head
frameset cols=*
   frame src =' . htmlspecialchars($url) . ' /
/frameset
/html';

}

HTH

Sergio Catalá wrote:

Hi list,

can you give me an example of an extbase extension in the TER which adds
a simple BE module with Rest documentation?

I have installed sphinx extension, I generated my documentation in ReST
format, and I converted to PDF and Hhtml. Now I want to link this Html
pages in a new backend module. I know how to create a BE module, but I
don't know how to link this module to show all my output in Html.

Thanks in advance,
Sergio



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Re: Re: Paypal Payment

2013-10-31 Thread Mike Kane

Ok then, i thought your extension would change automatically the direct 
membership, that was my mistake...

I'm sorry to bother you again, but how can i use your extension to show the membership in the frontend when the user logs in? For example, the user pays his membership on the 3rd day of October, and i would like to display something like: Next Payment : 3rd of November, and if the user does not pay the membership fee it would show something like  Membership: Expired. 


I'm sorry for being such a pain in the ass, but i'm sure nobody knows your 
extension better than you Mr. Bernd, so you're the best bet that i have to get 
some guidance.

Thank you very much for your help
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] How to create backend module for documentation

2013-10-31 Thread Xavier Perseguers
Hi Sergio,

 to export all these Htmls to be presented nice. I just tested your
 solution, adding all my Html documentation to
 my_extension/Resources/Private/Templates/Class/ and link it there, but
 the Css doesn't apply just because of the paths.

I don't understand, my solution must work, but you really need to use a
frameset, you cannot just return the HTML. Basically it will show you
exactly what you have when you point your browser to:

http://yoursite/typo3conf/my_extension/Resources/Private/Templates/Class/your-doc.html

as the HTML version of a Sphinx documentation is a standalone pure html
website. Of course, you should logically put it under Resources/Public
but that's not the problem here unless you deny access to
Resources/Private in your Apache/Nginx configuration.

So I guess you must have missed something because it *will* work.

 I would like to find a nicer solution for that.
 
 Isn't there a chance to sphinx and restdocs are backwards compatible
 with TYPO3 4.7? :(

My Sphinx extension will not be backward compatible with 4.7, no. Sorry
but I'm using namespaces everywhere and I don't want to double the
amount of code or rely on pre-namespace classes from 4.x.

If you read
http://docs.typo3.org/typo3cms/extensions/sphinx/ChangeLog/Index.html
you'll see that EXT:sphinx version 0.0.1 which has not been released to
TER but as been tagged in (back then) SVN repository is compatible with
TYPO3 4.5-4.7. It is very old and you will not get much more than a
basic Sphinx environment that you may then use yourself to compile doc,
but it should work (at least it worked for me in 4.x).

EXT:restdoc is compatible with 4.5 to 6.2, just as stated in TER:

http://typo3.org/extensions/repository/view/restdoc

and I do not plan to drop support for TYPO3 4.x as long as it is still
supported (thus 4.5 LTS end of life).

So the idea is in fact that you compile your documentation as JSON (*not
HTML*) either on 6.x with EXT:sphinx or yourself with your own Sphinx
environment (locally, ...) and then you copy the generated documentation
the way you want to a 4.x website and thanks to EXT:restdoc you can
easily embed it into your website.

If you want to embed it into the Backend, just as I did generically with
the Sphinx Documentation Viewer from EXT:sphinx, just have a look at how
I did it, there is no dependency on EXT:sphinx itself, it's just a use
of the EXT:restdoc API, which thus works under TYPO3 4.x

Kind regards
Xavier

-- 
Xavier Perseguers
Release Manager TYPO3 4.6

TYPO3  inspiring people to share!
Get involved: http://typo3.org

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: finding 3 character words in indexed search

2013-10-31 Thread Henjo Hoeksma

Hi Loek,

thanks for your response. This actually might be the problem indeed.
I'll ask the server guys to change it ;-)

Henjo
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Typo3 extension to upload image and rate them.

2013-10-31 Thread PIT Solutions
Hi All,

Please suggest a suitable typo3 extension where user can create a profile, 
upload their images and others can rate them.

With Regards,
Arun
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Typo3 extension to upload image and rate them.

2013-10-31 Thread Kay Strobach
Hi,

Your own 20 minute extbase extension with extension_builder + th_rating
viewHelpers

Should be really fairly easy.

If you cannot build extensions yourself, try to find an upload extension
based on extbase and customize the view with the th_rating viewHelper.

Regards
Kay

Am 31.10.13 14:41, schrieb PIT Solutions:
 Hi All,
 
 Please suggest a suitable typo3 extension where user can create a profile, 
 upload their images and others can rate them.
 
 With Regards,
 Arun
 


-- 
http://www.kay-strobach.de - Open Source Rocks

TYPO3  inspiring people to share!
Get involved: http://typo3.org

Answer was useful - feel free to donate:
  -
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
  - https://flattr.com/profile/kaystrobach

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] extension builder sql error

2013-10-31 Thread Tomasz Krawczyk

Hi list!

I'm creating an extension with extension_builder. I tried to add one
record in the BE but I see such an error message: '2: SQL error: 'Column
count doesn't match value count at row 1...'

It looks amount of fields doesn't match with amount of values. How can I
find what is wrong in the query?



try to enhance logging.
http://pi-phi.de/291.html (sorry, no english version yet)

maybe you modified the extension after installation?
after table-modification you need to clear all caches AND create all
fields in your tables with the install-tool 'compare DB'



Thanks! I will test this.

I enabled query logging in mysql. I found this:

15 Query	INSERT INTO tx_kbbteam_domain_model_members 
(starttime,endtime,category,sorting,pid,sys_language_uid,hidden,category,first_name,last_name,title,phone,phone_extension,email,description,l10n_diffsource,crdate,cruser_id,tstamp,t3ver_stage) 
VALUES ('0','0','256','10','','0','1'


Query contains category twice but first has no value. I think '256' is 
value of sorting field. 10 is PID.



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Cannot login after installation

2013-10-31 Thread chris fuller

Hi, after installing V6.1.4 with into pack on a localhost (xampp)  I am unable 
to login except with the 'someone' username, the customer1 admin, 
advanced_editor , simple_editor , news_editor all state error in login. I have 
cookies enabled and cleared all cache and browsing data etc, tried chrome, 
firefox, opera, ie8 and safari. all produce the same results, I have deleted 
and re installed X 4. Looking in the db the 'someone' password is not 
encrypted, but all the other logins are. I have tried to display errors using 
the LocalConfiguration.php file, but none show. Can anyone point me in the 
right direction please?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Cannot login after installation

2013-10-31 Thread chris fuller

confirmed extension=fileinfo.so extension=openssl.so are enabled in php.ini
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Cannot login after installation

2013-10-31 Thread chris fuller

Update: Installed new installation of Source + Dummy this works correctly. 
Unable to enter to original installation still.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Cannot login after installation

2013-10-31 Thread chris fuller

Update: Solved! From the new installation reports, it stated that php scripting 
time was set at 60 and recommended 240, changed this in php.ini re-installed 
and is now working correctly.
Shall I leave this on here for future ref? Or delete? 
___

TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Non existing Javascript included by Typo3?

2013-10-31 Thread Web Essentials - Support (Math Man)

Hi List,

I also have this problem with No default JS and CSS loaded with 404 
error message. I am using TYPO3 6.1.3 and t3jquery is not installed.

When it first load the website it seems like the site load some slow.

Are there any solutions or any suggestion?


On 09/21/2013 08:01 PM, Jost Baron wrote:

Hi Ben,

Such an inclusion is sometimes generated by the extension t3jquery and
can be fixed by clicking submit in every settings area of the
extension in the extension manager.

Regards,
Jost


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


--
Web Essentials
Redefining Web Development

Man Math
Support Team

E:supp...@web-essentials.asia
W:www.web-essentials.asia

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Non existing Javascript included by Typo3?

2013-10-31 Thread Andreas Becker
Hi WE

Have you tried if an update to 6.1.5 will have the same results?

Andi


On Fri, Nov 1, 2013 at 8:30 AM, Web Essentials - Support (Math Man) 
supp...@web-essentials.asia wrote:

 Hi List,

 I also have this problem with No default JS and CSS loaded with 404 error
 message. I am using TYPO3 6.1.3 and t3jquery is not installed.
 When it first load the website it seems like the site load some slow.

 Are there any solutions or any suggestion?



 On 09/21/2013 08:01 PM, Jost Baron wrote:

 Hi Ben,

 Such an inclusion is sometimes generated by the extension t3jquery and
 can be fixed by clicking submit in every settings area of the
 extension in the extension manager.

 Regards,
 Jost


 __**_
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-**englishhttp://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


 --
 Web Essentials
 Redefining Web Development

 Man Math
 Support Team

 E:supp...@web-essentials.asia
 W:www.web-essentials.asia


 __**_
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-**englishhttp://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english