Jump to content

Luca Crippa

Members
  • Posts

    9
  • Joined

  • Last visited

Luca Crippa's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hi there, so, I have a url like this: /new_evento.php?eve=02#####=Concerto-di-Natale-2013 and I would like to rewrite it in /evento/02/Concerto-di-Natale-2013 I used the following lines in web.config file: <rule name="rewev"> <match url="^evento/([0-9]+)/([_0-9a-z-]+)" /> <action type="Rewrite" url="new_evento.php?eve={R:1}&######={R:2}" /> </rule> The result is that the php page doesn't seem to catch the css file!!
  2. It doesn't work...I have a link named:http://www.coroconcorezzo.it/evento?eve=02&=Concerto-di-Natale-2013I would like to have:http://www.coroconcorezzo.it/evento/02/Concerto-di-Natale-2013But it doesn't work! :-/
  3. Hi All,I would like to transform an url like/reportage?rep=stuff&titl=something_beautifulin something like (note the "-")/reportage/stuff/something-beautifulwith my web.config file (I'm on a win server). It's possible? How can I do it?Thank you!Regards
  4. <?php // Definizione dei path $path_gall = '../public/gallery'; $dirs = scandir($path_gall);foreach ($dirs as $cartella) { if($cartella == '.' || $cartella == '..') { continue; } $name = $cartella; $name = str_replace("_", " ", $name); // risostituisco gli underscore con gli spazi $name = str_replace("!a!", ", ", $name); // metto la virgola e lo spazio tra anno e mese $name = str_replace("!b!", " - ", $name); // metto il - tra anno e titolo $path_cart = "$path_gall/$cartella"; $inner = scandir($path_cart); foreach ($inner as $photo) { if($photo == '.' || $photo == '..') { continue; } $gallery1 = "<center><a name = "$cartella"></br></br> <h5>$name</h5></br> <div style="width: 640px;"> <ul id="screenshotGallery"> "<li><img src="$path_cart/$photo" /></li> </ul></div></br></br> </center> }"; } if (!empty($path_cart)) { echo $gallery1; } }?> This is working. I didn't understand what was your point, but I'm fine Thank you!
  5. <?php // Paths $path_gall = '../public/gallery'; $dirs = scandir($path_gall);foreach ($dirs as $cartella) { if($cartella == '.' || $cartella == '..') { continue; } $name = $cartella; // Creating the layout of the name of the gallery $name = str_replace("_", " ", $name); $name = str_replace("!a!", ", ", $name); $name = str_replace("!b!", " - ", $name); $path_cart = "$path_gall/$cartella"; $inner = scandir($path_cart); $gallery = "<a name = "$cartella"></br></br> <h5>$name</h5></br> <div style="width: 640px;"> <ul id="screenshotGallery"> foreach ($inner as $photo) { if($photo == '.' || $photo == '..') { continue; } echo "<li><img src="$path_cart/$photo" /></li> } </ul></div></br></br> "; if (!empty($path_cart)) { echo $gallery; } }?> Not working! Not showing photos!
  6. This will help me to select empty folders in order to not display them?
  7. Now, just to finish my script: <?php // Definizione dei path $path_gall = '../public/gallery'; $dirs = scandir($path_gall);foreach ($dirs as $cartella) { if($cartella == '.' || $cartella == '..') { continue; } $name = $cartella; $name = str_replace("_", " ", $name); // risostituisco gli underscore con gli spazi $name = str_replace("!a!", ", ", $name); // metto la virgola e lo spazio tra anno e mese $name = str_replace("!b!", " - ", $name); // metto il - tra anno e titolo $path_cart = "$path_gall/$cartella"; $inner = scandir($path_cart); echo "<a name = "$cartella"></br></br>"; echo "<h5>$name</h5></br>"; echo "<div style="width: 640px;">"; echo "<ul id="screenshotGallery">"; foreach ($inner as $photo) { if($photo == '.' || $photo == '..') { continue; } echo "<li><img src="$path_cart/$photo" /></li>"; } echo "</ul></div></br></br>"; }?> I have this script, which takes all my photo folders and prints it on separate galleries. How can I insert an if statement that controls if the folder is empty in order to avoid to create the relative gallery? The problem is that every folder is not really empty, in fact there are certainly the "." and the ".." folders!
  8. Hi! I have this script, which takes a folder of photo in order to create a photogallery. <script type="text/javascript"> $(function(){ $('#screenshotGallery').galleryView({ panel_width: 637, panel_height: 358, frame_width: 100, frame_height: 54, show_filmstrip_nav: true, show_infobar: true }); });</script> The problem is that a vertical image doesn't seem to be accepted, because this script deforms it to an horizontal image. Is there a script that automatically takes a vertical image and adds to it two black lateral bands, literally trasforming it in a "false" horizontal image? Thank you!
×
×
  • Create New...