So, it was the Israeli Zionists behind all my problems!
For everyone who read about the problems I have been having the last few years, the zionist criminals are behind that, they have loyal groups around the world whom they use to hit innocenets, they do not like GOOD JUST people who can create bridges and make peace, specifically those who are religious, Muslims or Christians, And this is because the zionists are here to devide and destroy!
My life has been miserable, and they tried to make me think it's the French, the Italians, the Canadians, the Turkish, the Egyptians, the Germans, the Russians, the Malaysians, the Chrinese, the Japanese, they even used some American decoy, but it was them, the dirty zionists!
How do they play this ? Using cause and effect, they hit me while giving a logical reason related to one of the groups above, the reason is fake of course, but it took me a long time to understand this, almost 10 years, it's very difficult to think straight when someone is emotionally disturbed!
These criminals possess the following technologies:
- They create fake dreams, and can make in sleep interrogations and information extraction!
- They can disturb memory and play with the neurotransmitters' balance during sleep, you wake up the next day feeling horrible for no reason, trying to remember something happy gives no emotions at all!
- They use the cell phones to capture your brain waves and analyze it to know how do you feel and what you are thinking about (Google Glass was doing something similar)
They have been using these techniques against me for years to break me down while trying to make me suspect any of the groups above based on the situation, making me live in sadness and depression alone, they denied me friends and they destroyed all my relationships, and recently they started to torture me and tried to make me commit suicide in HongKong.
I do not believe a lot of people know this info, please share it, for the sake of God, for the sake of humanity!
Max
I have a form in which the user enters a gallery name. I also have a "File Field" which allows him to deposit pictures.
In the list of events I have a "Files upload" who save the photos in a directory.
I want to use the name of the gallery to create the directory dynamically and to save the photos there.
I put the code in a custom code and it's ok :
<?php
$path = 'images/phocagallery/' . $form->data['title'];
$mode='755';
JFolder::create($path, $mode);
?>
But, i really don't know how to put the $path in the "Upload path" of my Files Upload...
i test this but it doesn't work : $form->actions_config[1]['Upload_path'] = $path
I search in the forum but, i really don't find.
Thanks a lot for your help.
Fred
This version has the absolute path - not a relative one - and should work OK
Or you can upload the file to a temporary folder then use a Custom Code action to rename and move it.
Bob
the code
Work very well the directory is created and ok.
the code
don't work. The photos is not upload in the directory...i think it is this code "$form->actions_config[1]['Upload_path']"
Because when i write the path directly in the parameter of my Files Upload, it work.
I search.
Fred
But it doesn't work.
Please try again with upload_path - all lower case
Bob
thanks a lot. Have a goog afternoon.
I don't know why but it doesn't work again...
The directory is créate = ok
But the photos is in the Chronoforms uploads/form_name/ directory but not in my dynamic directory...
My custom code is before the files upload.
Do you see sommething wrong ? thanks
The path needs to be absolute - please see my earlier post.
Check that 13 is still the Action ID for the Files Upload action
Add some debugger code to see that the value of $path is being set as.