Yes, that is what I meant.
You can try to write whole function into page (sometimes, while c/p, the quotes are known to screw certain functions)

Other then that, I see that you are using one more contact form there. Perhaps there is a collision between them somewhere!

You called your plugin like this?

<?php contact_me('youremail@domain.com'); ?>

did you set Filter to --none--!?

3

(4 replies, posted in General)

That's just plugin calling home. Open your config.php file and change line 18 to this:

define('CHECK_UPDATES', false);

It seems that your server was hacked, not Wolf installation. The same thing happened to me last year sad but I had some test scripts on my server.

Anyway, to make it more secure:

* use latest wolf
* check security.php and act according to it (or as much as you can)
* rename your "admin" access to something else
* do not use suspicious (or too old) third party scripts (even plugins)
* empty browser and ftp app cache (optional)
* do backups

Nothing else comes to my mind.

We can assume that you've been hacked smile
The easiest solution would be to restore it from your backup or your hosting backup (that is what I did last year).

Apart from that, you have only two files but where is the rest of the wolf installation!?
And did you had any custom software/scripts along with wolfcms? (perhaps in other subdomain etc.)

smile Yes it is. New version should be out by the end of this month (I hope).
There is a new controller (thanks to craig) and some other stuff and I need to fix few minor issues and extend docs.

Have you checked if your server even has mod_rewrite module!?

8

(10 replies, posted in General)

mvdlkeijn wrote:

Euhm... not quite. It should be on the same level... so if you have Home -> Page1 then you should also have Home -> en -> Page1

Ahm.. that is what I meant smile

mvdkleijn wrote:

Just as long as the uri / slug is the same it should work.

Ups, I knew I forgot something. neutral

9

(10 replies, posted in General)

The Pages tree should look like this:

-Start
-Tages menu
-Essen/trinken
-etc. auf Deutch
-en <- everything like Start just in english. This is your english homepage
-- Daily menu
-- Food/drinks
-- etc. in English

Then you set "en" to hidden and name it differently in your navigation but "en" has to stay under pages tree. The catch is to make the same position in the pages tree e.g. Tages menu is second so its equivalent in English, Daily menu is also second under "en" version.
Same principles apply for every additional language.
Of course, this all works if you enable the multilang plugin and under settings set "find by uri" and "pages tree copy".

Hope this clarifies it a bit wink

10

(4 replies, posted in General)

Someone hasn't paid the hosting bill hmm

11

(3 replies, posted in General)

The "root" should be your default language. For each additional language you create iso code and copy page tree in it

home
-blog
-contact
-de (this one is hidden)
--blog
--kontakt
-fr (also hidden)
-- etc.

The security check is optional. You only need to chmod config.php to at least 555 in order to work, rest is up to you.
Like Fortron said, /public (and all underneath it) has to be writable.

13

(1 replies, posted in General)

It is doable and it seems it works ok. I haven't tried it myself but others have. Search forum with "multiple site" or something like that, there are few topics about it.

There is no official documentation as this is not part of wolfcms core, but you are free to add it to the wiki.

14

(14 replies, posted in General)

Cyberduck is for Mac only (not so good though, IMO).

You can check/use:

* Fireftp (plugin for FF)
* WinSCP (windows only I think)
* Some IDE with built in (s)ftp support (most practical)
-- Aptana is nice (all platforms)
-- Coda or Espresso for Mac

Doesn't Lubuntu have built in ftp!? I know Ubuntu has within Nautilus.

15

(14 replies, posted in General)

No it won't break anything. See here for more details. You just need to correct CMS_VERSION in index.php.

16

(6 replies, posted in General)

But you usually target $level > 0 or 1 etc. so it is greater than. Or is it only making sense to me neutral

17

(4 replies, posted in General)

@Hilton - Lol, beloved smile I will retest it when I catch some extra time

18

(4 replies, posted in General)

Sorry for late reply.

You are the first person who had issues with this plugin. Usually it just works.

I've taken the liberty to snoop around your source code and it's a bit messy with all the div's etc. and in the end it's seems that you only need to pull out the title of the last news (which is btw, also in divs, no h tag to be found)  and that is really easy to make without plugin.

Truncate is more for block of text, not titles and was never tested in that way.

FYI, it is not buggy, the purpose is different! Apples and oranges!

19

(10 replies, posted in General)

@Paul - I got your point but was too lazy to write another thread smile and I get your frustration with editing snippets and trying to find what went wrong etc.

Unlike you, I had a lot of problems (read: pulling hair) with page-parts in the beginning and the documentation was pretty thin in those days.

Like David said, new refreshed themes should come up soon...

I had the same issue with FF11 only. Try to delete all the cookies/history etc from the browser then try again.

Do try to view it with e.g. Chrome.

21

(12 replies, posted in General)

Set your news page to "hidden", filter to "--none--" and paste this:

<?php $articles = adv_find(
    array('/news/miessence-news/', '/news/energetix-news/', '/news/fitness-wellbeing-news/'),
    array('order' => 'published_on DESC', 'limit' => '10')); ?>
<?php foreach ($articles as $article): ?>
<h1><?php echo $article->link(); ?></h1>
<?php echo $article->content(); ?>
<?php endforeach; ?>

This is a rough example but it should work.

22

(10 replies, posted in General)

What seems to be your problem!?

Switch to "Simple" theme as "Wolf" theme is not using any snippets. There are other themes available for download etc. And of course, you can always add your own snippets to any theme.

We do have wiki with all sorts of information, tutorials...

23

(4 replies, posted in Installing)

I have all my sites without table prefix and I never had any issues with it. Table prefix is an optional, not required.

Did you had a collision with table names!? Multiple installations I assume.

24

(4 replies, posted in General)

No Wolfcms does not have custom fields. But it has page-parts. Will that do it?

It can, just a bit different than image field would. In the end, you have almost same thing.

Try this:

<?php echo $this->id(); ?>

or

<?php echo $this->link(); ?>

Something like this should do it. Not tested and I'm not 100% sure.