uploads and chmod

More
12 years 10 months ago #34615 by ggppdk
Replied by ggppdk on topic uploads and chmod
To overcome problem please restore "old" chmod code in image.php plugin file (plugins/flexicontent_fields/image/image.php)
(i will need to chekc why neew code fails)

Find this at about line 1598
Code:
if ( !isset($destpaths_arr[$destpath]) && JPath::canChmod($destpath)) { chmod($destpath, '0755'); //JPath::setPermissions($destpath, '0644', '0755'); }
and change to
Code:
if ( !isset($destpaths_arr[$destpath]) && JPath::canChmod($destpath)) { JPath::setPermissions($destpath, '0644', '0755'); }


-- Flexicontent is Free but involves a big effort on our part.
Like the our support? (for a bug-free FC, despite having a long list of functions) Like the features? Like the ongoing development and future commitment to FLEXIcontent?
-- Add your voice to the FLEXIcontent JED listing with a 5-star review. Thanks!

Please Log in or Create an account to join the conversation.

More
12 years 10 months ago #34833 by ggppdk
Replied by ggppdk on topic uploads and chmod
This line gives unexpected results:
chmod($destpath, '0755')

because it should have been

chmod($destpath, 0755)

(second parameter must OCTAL integer)

Just the Joomla API function takes string that create confusing when we updated code for performance reasons


-- Flexicontent is Free but involves a big effort on our part.
Like the our support? (for a bug-free FC, despite having a long list of functions) Like the features? Like the ongoing development and future commitment to FLEXIcontent?
-- Add your voice to the FLEXIcontent JED listing with a 5-star review. Thanks!

Please Log in or Create an account to join the conversation.

Moderators: vistamediajoomlacornerggppdk
Cookies user preferences
We use cookies to ensure you to get the best experience on our website. If you decline the use of cookies, this website may not function as expected.
Accept all
Decline all
Essential
These cookies are needed to make the website work correctly. You can not disable them.
Display
Accept
Analytics
Tools used to analyze the data to measure the effectiveness of a website and to understand how it works.
Google Analytics
Accept
Decline
Save