Die Suche ergab 160 Treffer

von Michael_S
Fr 6. Jun 2014, 12:05
Forum: DB / Object Module
Thema: Object Condition find string in comma delimited list
Antworten: 2
Zugriffe: 2519

Object Condition find string in comma delimited list

Hi, Using a Object condition how would I find all objects containing a string held in a field with comma delimited list? Var: $con = my string 2 Field: Node_Container Data: my string 1, my string 2, my string 3 I guess I would need to use "is_string" in the condition but not sure where to ...
von Michael_S
Mo 2. Jun 2014, 18:44
Forum: Installation and update
Thema: Installation on Ubuntu with Suhosin enabled
Antworten: 2
Zugriffe: 2793

Re: Installation on Ubuntu with Suhosin enabled

Hi Sascha,

It looks like the Sys Admin is going to disable Suhosin for the particular host which will solve the problem.

Cheers,

Michael.
von Michael_S
Mo 2. Jun 2014, 15:32
Forum: Installation and update
Thema: Installation on Ubuntu with Suhosin enabled
Antworten: 2
Zugriffe: 2793

Installation on Ubuntu with Suhosin enabled

Hi, I have a installation on a Ubuntu server which has Suhosin enabled. The first issue as that the OnlineInstaller would not work so I had to FTP the webEdition files up and then run the setup.php file. This was successful but now I have issues with updating webEdition and using a CMS created .htac...
von Michael_S
Mi 28. Mai 2014, 12:57
Forum: webEdition Basic Version
Thema: Old pages saving but not publishing, new pages publishing
Antworten: 4
Zugriffe: 5186

Re: Old pages saving but not publishing, new pages publishin

Looks like this is a Plesk upgrade issue with the permissions. When I create a new document in webEdition (save + publish ok) the user/group is different from the old files (save ok, publish fail). I think what I need to do is to reinstall webEdition and to install (recover) and new backup from the ...
von Michael_S
Mi 28. Mai 2014, 12:34
Forum: webEdition Basic Version
Thema: Old pages saving but not publishing, new pages publishing
Antworten: 4
Zugriffe: 5186

Re: Old pages saving but not publishing, new pages publishin

Hi Michael, any issues in the webedition error log when trying to publish? Ludger Hi Ludger, Yes, it appears that the Plesk was updated to get a newer version of PHP and something has changed with the file permissions for the old webEdition files. New files are ok, with save and publish working and...
von Michael_S
Mi 28. Mai 2014, 11:17
Forum: webEdition Basic Version
Thema: Old pages saving but not publishing, new pages publishing
Antworten: 4
Zugriffe: 5186

Old pages saving but not publishing, new pages publishing

Hi, I have just updated a site and moved it from my development server to the production (live) server but have problems publishing existing documents. New documents created on the production server can be published (html + php). I've rebuilt the documents and template but still cannot publish. The ...
von Michael_S
Sa 29. Mär 2014, 17:42
Forum: DB / Object Module
Thema: Condition for Multi Object field
Antworten: 6
Zugriffe: 4749

Re: Condition for Multi Object field

Hi Thomas,

Thanks for the swift reply thats excellent news about the roadmap for the MultiObjects. I look forward to the update and you have reminded me to make a donation to the project to help make these things happen.

Regards,

Michael.
von Michael_S
Sa 29. Mär 2014, 13:15
Forum: DB / Object Module
Thema: Condition for Multi Object field
Antworten: 6
Zugriffe: 4749

Re: Condition for Multi Object field

Hi Thomas, I'm using the code below which you suggested on a new project and its working well. However I'm wondering if there could be a situation where the statement could return unwanted results. Would a LIKE statement comparing the Object ID '214' return '214' and '2140' for instance? I've tried ...
von Michael_S
Di 28. Jan 2014, 14:26
Forum: webEdition Basic Version
Thema: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDate
Antworten: 9
Zugriffe: 11964

Re: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDa

Regarding your problem in Version 6.3.8.0: What's happening, or not happening? Any info in the error log? My mistake with the versions, one was a document listview which we know works. Regarding the ID and ObjectID I can see that this would be a problem. The tblObjectFiles > ObjectID is used as the...
von Michael_S
Di 28. Jan 2014, 13:52
Forum: webEdition Basic Version
Thema: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDate
Antworten: 9
Zugriffe: 11964

Re: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDa

Hi Sascha, The ID field has the correct value in the table tblObjectFiles, not sure what the ObjectID field relates to as its a completely different value? There are posts relating to this in the bug tracker where people have got odd results when using ObjectID. Strangely my code works in 6.3.9.2 (S...
von Michael_S
Di 28. Jan 2014, 12:18
Forum: webEdition Basic Version
Thema: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDate
Antworten: 9
Zugriffe: 11964

Re: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDa

Hi Sascha, I ended up with a slightly simpler solution: <?php // Object creation date $ObjectCreationDate = f("SELECT CreationDate FROM tblObjectFiles WHERE ID=" . $lv->DB_WE->f("OF_ID")); $ObjectCreationDate = date("l jS F Y H:i:s",$ObjectCreationDate); echo "<p>C...
von Michael_S
Mo 27. Jan 2014, 17:42
Forum: webEdition Basic Version
Thema: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDate
Antworten: 9
Zugriffe: 11964

Re: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDa

Hi Sascha, A quite hackish solution was posted here: viewtopic.php?p=36280#p36280 The posts solution outputs the same value as wedoc_Published which works as a we:tag: <we:field type="date" name="wedoc_Published" format="..." /> What I need is the output for wedoc_Creat...
von Michael_S
Mo 27. Jan 2014, 16:33
Forum: webEdition Basic Version
Thema: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDate
Antworten: 9
Zugriffe: 11964

Re: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDa

Hi Sascha,

Thanks I will give it a try, the CreationDate and ModDate are crucial for feeds so it would be great to have this fixed soon.

Cheers,

Michael.
von Michael_S
Mo 27. Jan 2014, 13:24
Forum: webEdition Basic Version
Thema: Atom feed - Object list, wedoc_CreationDate, wedoc_ModDate
Antworten: 9
Zugriffe: 11964

Atom feed - Object list, wedoc_CreationDate, wedoc_ModDate

Hi, I'm building a Atom feed and need to add the creation and modification date for a Object but "wedoc_CreationDate" and "wedoc_ModDate" are not working so I'm having to use wedoc_Published for the id and update element which is not ideal: <we:field type="date" name=&q...
von Michael_S
Fr 17. Jan 2014, 17:33
Forum: webEdition Basic Version
Thema: UserInput Image not uploading
Antworten: 2
Zugriffe: 3991

Re: UserInput Image not uploading

Hi Thomas,

Yes, I should have realised that, a simple mistake! Thanks for the help and swift response.

Regards,

Michael.

Zur erweiterten Suche