Re: CAKEPHP 2.1.x on Pagodabox | foreach multiple items for each slide (bootstrap carousel)

2012-12-30 Thread SvenP
Yes,

Each ad relates to a sponsor... works perfect.

array(
(int) 0 => array(
'Ad' => array(
'id' => '2',
'sponsor_id' => '0',
'title' => '...',
'body' => '...',
'link' => 'wwwcom'
),
'Sponsor' => array(
'id' => '8',
'name' => ...,
'contact_first_name' => ...,
'contact_name' => ...,
'contact_tel' => ...,
'contact_email' => ...
)
),


On Sunday, December 30, 2012 7:20:54 PM UTC+1, cricket wrote:
>
> die(debug($ads)); 
>
> Are you certain of the array structure? 
>
> On Sat, Dec 29, 2012 at 5:39 PM, SvenP > 
> wrote: 
> > Hi, 
> > 
> > I'm looking for a way to show multiple 'Ads' / slide with a foreach loop 
> > from the db. ( each client has ads tied to them.) 
> > 
> > My code now works great but only shows one ad / slide. 
> > 
> > Thanks for your time! 
> > 
> > Sven 
> > 
> > Code: 
> > ___ 
> > 
> >  
> >  $ad): 
> > if($indexValue == 0){?> 
> >  
> >  > $ad['Ad']['title']?> 
> >  
> >  $ad['Ad']['body']?> > } else { ?> 
> >  
> >  > $ad['Ad']['title']?> 
> >  
> >  
> >
> > 
> > -- 
> > Like Us on FaceBook https://www.facebook.com/CakePHP 
> > Find us on Twitter http://twitter.com/CakePHP 
> > 
> > --- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "CakePHP" group. 
> > To post to this group, send email to cake...@googlegroups.com. 
>
> > To unsubscribe from this group, send email to 
> > cake-php+u...@googlegroups.com . 
> > Visit this group at http://groups.google.com/group/cake-php?hl=en. 
> > 
> > 
>

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.




Re: Dealing with Image Uploads

2012-12-30 Thread SvenP
Hi,

I have this in one of my apps: if I remember correctly I 
used: http://github.com/josegonzalez/upload/zipball/master

It's well explained in the readme section. You can set different 
thumbnailsizes:

Code in the model:

public $actsAs = array(

'Upload.Upload' => array(

'foto'=> array(

'pathMethod' => 'flat',

'path' => '{ROOT}webroot{DS}files{DS}',

'thumbnailSizes' => array(

'xvga' => '1024x768',

'vga' => '640x480',

'thumb' => '80x80'

)),

'audio1'=> array(

'pathMethod' => 'flat',

'path' => '{ROOT}webroot{DS}files{DS}'

),

'audio2'=> array(

'pathMethod' => 'flat',

'path' => '{ROOT}webroot{DS}files{DS}' 

),
),
); 

On Friday, December 28, 2012 6:44:38 AM UTC+1, advantage+ wrote:
>
> I need to figure out the best way from the backed the admin can upload 
> images, the tricky part is the site has all different kinds of images 
> (small product thumbs, large version, they want to be able to upload images 
> into the jquery slider on the home page, images for a new sections, 
> featured product on index page to name a few of the different sizes)
>
>  
>
> And there is no way to know if they are even going to upload the right 
> dimensions for each type of image.
>
>  
>
> What is the best way to do this? I cannot seem to think of anything having 
> a table for each_image how it relates to that page, that seems like the 
> opposite of what should be done.
>
>  
>
> Any idea would be great.
>
>  
>
> Thanks, Dave
>

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.




Re: Not able to view anything on the page

2012-12-30 Thread SvenP
If you want /blog as your default (index) page (http://localhost) you can 
set it in config/routes.php.

-> Router::connect('/', array('controller' => 'blogs', 'action' => 'index'
));

On Sunday, December 30, 2012 1:20:13 AM UTC+1, Harish Geeth wrote:
>
> Hi,
>
> I am new to cakePHP and downloaded the framework and started playing with 
> it. I am using NetBeans to edit PHP files. I am able to cinfigure the 
> CakePHP as expected. I get successful messages when I try to hit the 
> webserver. But for some reason when I try to run the application after 
> adding Model and Controller, I don't see the results as exected.
>
>
> 
>
>  
> Folder structure is 
>
>
> 
>
> *CONTROLLER*
>
> 
> /*
>  * To change this template, choose Tools | Templates
>  * and open the template in the editor.
>  */
>
> /**
>  * Description of blog_controller
>  *
>  * @author harishupadhyayula
>  */
> class BlogsController extends AppController {
> 
> var $name = 'Blog';
> var $uses = array('Blog');
> 
> 
> var $scaffold;
> }
>
> ?>
>
> *MODEL*
>
> 
> /*
>  * To change this template, choose Tools | Templates
>  * and open the template in the editor.
>  */
>
> /**
>  * Description of blog
>  *
>  * @author harishupadhyayula
>  */
> class Blog extends AppModel {
> var $name = 'Blog';
> }
>
> ?>
> I modified my dabase.php files as well. I am not sure where it's going 
> wrong and I tried all day to figure this out but i had not luck.
>
> Any help is appreciated.
>
>
>

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.




CAKEPHP 2.1.x on Pagodabox | foreach multiple items for each slide (bootstrap carousel)

2012-12-29 Thread SvenP
Hi,

I'm looking for a way to show multiple 'Ads' / slide with a foreach loop 
from the db. ( each client has ads tied to them.)

My code now works great but only shows one ad / slide.

Thanks for your time!

Sven

Code: 
___


 $ad):
if($indexValue == 0){?>








  

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.