Can’t upload images with CMS .
Check that a folder named album_images was created inside de cms folder. If not please create it manually and give it permission to write (CHMOD 777).
The gallery doesn’t work if dont enter the exact domain.
For security reasons Adobe asks you to put in your server root an xml file that allows the file to communicate with the server.
You can download
the xml here.
The CMS install is not working.
Setting the transfer mode of the ftp client to “Auto” when uploading the CMS files fixed it.
FILEZILLA USERS : Use another ftp client since this client tend to corrupt the php files.
The gallery won’t work locally.
First make sure the path includes the port.
E.G.
// XML image path
var path:String = “http://localhost:8888/stripGallery_v4_CMS/cms/xml.php";
Then set the path manually in the xml.php file. Comment this lines (line #20 and #22) E.G.
// get the server //$server = “http://” . $_SERVER[“SERVER_NAME”].$_SERVER[“REQUEST_URI”]; //$server = substr($server, 0, (strlen($server) – 7) );
Finally uncomment and enter your local path in the line #17 E.G.
// set the server $server = “http://localhost:8888/yourGalleryFolder/cms/”;
Thats it!
Files bigger than 2MB wont upload!
Depending on your PHP configuration, your server will limit the size of uploaded files. By default, PHP sets this to 2MB, which is much lower than desired when uploading HQ images.
Solution:
1) Ask your host manager. They may have their own way of setting these limits system-wide.
2) f you have access to php.ini, you will need to adjust 2 different directives: upload_max_filesize and post_max_size.
Example:
upload_max_filesize = 50M
post_max_size = 55M
3) Some hosts may also allow you to set these limits in a .htaccess file like so:
php_value upload_max_filesize 50M
php_value post_max_size 55M
How can i change the height position of the strip bar?
Open your stripGallery movieclip and open the actioscript window. Look for the line #356 as shown below in bold.
function centerMenu():Void {
shellMenu_MC._y = stageH/2-thumbHeight/2; <---- (LINE #356)
shellMenu_MC._x = 0;
// stretch panel of menu
shellMenu_MC.menu_MC.panel_MC._width = stageW;
}
Examples.
To have the strip bar at 100px height from top put 100 value:
shellMenu_MC._y = 100;
If you want to add 100 margin from top put a + 100 value:
shellMenu_MC._y = stageH/2-thumbHeight/2 + 100;
How can i change the font size, color, and family of the description?
To change the size of the font edit your fla search in the library for the descText_MC movie clip inside the assets folder.
How can i change the height position of the strip bar?
Open your stripGallery movieclip and open the actioscript window. Look for the line #356 as shown below.
function centerMenu():Void {
shellMenu_MC._y = stageH/2-thumbHeight/2;
shellMenu_MC._x = 0;
// stretch panel of menu
shellMenu_MC.menu_MC.panel_MC._width = stageW;
}
E.G.
To have the strip bar at 100px height from top put 100 value:
shellMenu_MC._y = 100;
If you want to add 100 margin from top put a + 100 value:
shellMenu_MC._y = stageH/2-thumbHeight/2 + 100;
Also set change this line of code (around line #290) change the last 2 parameters the first one is the y position and the second one is the height of the bar:
// set pos and put easing pos = setPos(menu, pos, 0, stageW, stageH/2 - thumbHeight/2, stageH/2 + thumbHeight/2); // change to pos = setPos(menu, pos, 0, stageW, 100, thumbHeight);
How do i change the gradient or the solid color in the background?
Look and edit the bg_MC movieclip inside the assets folder from your gallery library.
How do i turn off the Gallery tab completely on the top left?
Change the showGalleries value to false inside the data.xml file.
E.G.
showGalleries = “false”
I need the accents to appear in the text fields.
Try this:
Edit the xml.php (in the cms folder) and comment or erase the line. It sould be near the end of the file:
$output = utf8_encode($output);
I get this error in the CMS
Warning: session_start(): Cannot send session cache limiter – headers already sent
This is a server configuration issue.
Ask your server administrator to turn off the:
php_value display_errors “Off”
I uploaded the files and install or other functions wont work.
Try using CuteFtp ftp client, and using this setting:
Protocol type: SFTP using SSH2 (Secure Shell) Server type: Auto detect Transfer type: Use global settings.
when you uploded with any other settings, script dosent work.
