Simon Schneebeli | 1 Nov 08:56
Favicon

SPIP under Ubuntu 9.10 Karmic Koala

Hello all,

Did anyone already test SPIP under the new Ubuntu 9.10 Karmic Koala? 
I've just reinstalled my system (including LAMP), then had to add 
proposed packages (otherwise zlib / gzopen has a problem) and now I 
manage to install SPIP via spip_loader.php.

The strange thing is that SPIP doesn't recognise the plugin folder (and 
the plugins in it) as well as the squelettes folder (and the squelettes 
in it).

Anyone has an idea what might be the problem? I've tested it as well 
with SPIP 2.0.9 as 2.0.10. Under Ubuntu 9.04, everything worked well.

If you are running Ubuntu, you may want to wait a bit longer before 
ubgrading...

Simon

--

-- 
---------------------------
Simon Schneebeli
078 619 31 18
---------------------------

صادق | 1 Nov 09:08
Picon
Gravatar

Re: SPIP under Ubuntu 9.10 Karmic Koala

Did you check the apparmor settings? maybe it is root of the problem. check syslog to investigate is it source of problem or not.
- Sadeq



On Sun, Nov 1, 2009 at 11:26, Simon Schneebeli <simon.schneebeli-CB2AQvlj18A@public.gmane.org> wrote:
Hello all,

Did anyone already test SPIP under the new Ubuntu 9.10 Karmic Koala? I've just reinstalled my system (including LAMP), then had to add proposed packages (otherwise zlib / gzopen has a problem) and now I manage to install SPIP via spip_loader.php.

The strange thing is that SPIP doesn't recognise the plugin folder (and the plugins in it) as well as the squelettes folder (and the squelettes in it).

Anyone has an idea what might be the problem? I've tested it as well with SPIP 2.0.9 as 2.0.10. Under Ubuntu 9.04, everything worked well.

If you are running Ubuntu, you may want to wait a bit longer before ubgrading...

Simon

--
---------------------------
Simon Schneebeli
078 619 31 18
---------------------------

_______________________________________________
spip-en-JM9gtpQu/Ho@public.gmane.org - http://listes.rezo.net/mailman/listinfo/spip-en

Noelia Yavel | 16 Nov 00:38
Picon

INCLURE

Hi all,


I need to include a file that is not in the spip folder, it is in another one.
Normally I would put: <include /folder/file.html> , but that doesn't work.

How can I use the <INCLURE> so I can include files that aren't in the spip directory?


Thanks,
Regards

Fil | 16 Nov 10:33
Favicon
Gravatar

Re: INCLURE

> I need to include a file that is not in the spip folder, it is in another
> one.
> Normally I would put: <include /folder/file.html> , but that doesn't work.

<INCLUDE(folder/file.html)> should work.

-- Fil
Gilles VINCENT | 16 Nov 18:27
Picon
Gravatar

http://programmer.spip.org

Hi,
Mark Baber has done a lot of translation work on the website
http://programmer.spip.org.
Can you read and comment his articles, before we publish them ?

Here is the list of the concerned articles :

. Predefined functions in secured actions
. How secured actions work
Legal notices
. Secured actions
. Creating or overloading the authorisation
. Processes in the autoriser() function
. The #AUTORISER tag
. The "autoriser" library
. Declaring a cron task
. How cron jobs are run
. The information panel
. The contents of a (PHP) exec file
. The contents of a (template) exec file
. Retrieving the object and id_object
. The balise_NAME_dyn() function
. The balise_NAME_stat() function
. The balise_NAME_dist function
. Dynamic tags
. The contents of an auth file
. editer_objet actions
. Automatic redirections
. The processes
. The verifications
. The contents of an action file
. Inclure with a connector parameter
. The "connect" URL parameter
. Accessing a declared database
. Declaring another database
. Forcing joins
. Automating joins
. Explicit join declarations
. Automatic joins
. Forcing a change in the interface language
. Polyglots (multi tags)
. Using language codes in PHP
. The complete syntax of language codes
. Using the language codes
. Language files
. The syntax of language strings
. AJAX Paginations
. AJAX links
. Passing parameters to includes
. Includes within the templates
. Testing filters
. Search and replace filters
. Comparison filters
. Filters derived from PHP classes
. Filter syntax
. The "!" operator
. The == operator
. The IN operator
. Simple operators
. Optional criteria
. Short-cut criteria
. Criteria syntax
. Interrupting the automatic processes
. Automatic tag processes
. Generic tags
. Predefined tags
. Contents of parent loops
. The contents of loops (boucles)
. The #ENV environment
. Tag syntax, the definitive version
. Choosing the navigation language
. Forcing the language of the visitor’s choice
. Special language criteria
. The language of an object
. The language of the environment
. Multilingual possibilities

That's a great work !!

.Gilles
Noelia Yavel | 17 Nov 03:10
Picon

Re: INCLURE

It didn't work.

The files that I want to include are in a folder that is in the root site. For example I have:

RootSite
|
|__inlcude
|   |__file1.html
|   |__file2.html
|   |__file3.html
|
|__spip
   |__ecrire
   |__squelettes-dist
   |__spip.php
   |__,etc


I have an .html inside the spip folder (squelettes-dist to be exact), but I need to include a file that is in the folder include.

Thanks!


On Mon, Nov 16, 2009 at 6:33 AM, Fil <fil <at> rezo.net> wrote:
> I need to include a file that is not in the spip folder, it is in another
> one.
> Normally I would put: <include /folder/file.html> , but that doesn't work.

<INCLUDE(folder/file.html)> should work.


-- Fil

Fil | 17 Nov 09:56
Favicon
Gravatar

Re: INCLURE

Use ../ to go "up" a folder :

    <INCLUDE(../include/file1.html)>

-- Fil
Noelia Yavel | 18 Nov 02:36
Picon

Re: INCLURE

I've tried with:  <INCLUDE(../include/file1.html)> and <INCLUDE(include/file.html)> but neither worked.
It's strange.

Noelia

On Tue, Nov 17, 2009 at 5:56 AM, Fil <fil-JM9gtpQu/Ho@public.gmane.org> wrote:
Use ../ to go "up" a folder :

   <INCLUDE(../include/file1.html)>

-- Fil

denisb | 18 Nov 02:48
Favicon
Gravatar

Re: INCLURE

Noelia Yavel a écrit :
> I've tried with:  <INCLUDE(../include/file1.html)> and
> <INCLUDE(include/file.html)> but neither worked.
> It's strange.

maybe two steps :
   <INCLUDE(../../include/file1.html)>

(depends from where your include is called)

Noelia Yavel | 18 Nov 02:50
Picon

Re: INCLURE

Well, I've tried with <INCLURE{fond=../includes/file1}> and it worked!

Thanks!,
Regards

On Tue, Nov 17, 2009 at 10:36 PM, Noelia Yavel <dax125-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
I've tried with:  <INCLUDE(../include/file1.html)> and <INCLUDE(include/file.html)> but neither worked.
It's strange.

Noelia


On Tue, Nov 17, 2009 at 5:56 AM, Fil <fil-JM9gtpQu/Ho@public.gmane.org> wrote:
Use ../ to go "up" a folder :

   <INCLUDE(../include/file1.html)>

-- Fil



Gmane