Problem with posting comments of a specific picture

So I have been able to post the comment in the page I am creating and that comment is also saved in the comment table in the database with the id of the picture but when i am in the first picture and I comment the comments are posted saved in the database with the id 1 and then i go to the second the comments are also posted and saved in the tabel comment with the id of the picture 2. But my problem is that when i go to the second picture i can also see the comments of the first picture. So in all of my pictures I can see comments of pictures with other id. How can i manage to solve this problem. Please suggest me sth
I'll describe a little bit my database
name of database is art
picture tabel I have named piktur(id_piktur,Titulli,Pershkrimi,Piktur_url) rsGallery is picture recordset
the comment tabel I have named komente(id_koment,id_piktur,Tekst)rsKomente is comment recordset
Tekst is the column where the comment is save
I'm using the session variable so i can get the id of the picture from the picture table and insert it in id picture column of the comment tabel
this is the piece of code i guess i should make some conditions but i have tried sth myself but I have not managed to solve my problem. The pictures in my page are organised with paging and repeat region only showing 1 picture at a time. the comment are also repeat region showing all the comments at a time.
<p>
      <?php  while ($row_rsKomente = mysql_fetch_assoc($rsKomente)) { ?>
        <?php
$id_piktur=$row_rsGallery['Id_piktur']; $_SESSION['id_piktur']=$id_piktur;
          echo $row_rsKomente['Tekst']."<br/>" ;?>
        <?php } ?>
  </p>
my entire code is shown below if you don't think this code is enough for solving the problem gallery.php Thank you in advance
gallery.php
<?php require_once('Connections/art.php'); ?>
<?php session_start() ?>
<?php
if (!function_exists("GetSQLValueString")) {//this is some code i don't shown in here because it has nothing to do with the problem i want to solve}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1") &&(isset($_SESSION['id_piktur'])) ) {
  $insertSQL = sprintf("INSERT INTO komente (Tekst,id_piktur) VALUES (%s,'".$_SESSION['id_piktur']."')", GetSQLValueString($_POST['tekst'], "text"));
  mysql_select_db($database_art, $art);
  $Result1 = mysql_query($insertSQL, $art) or die(mysql_error());
$maxRows_rsGallery = 1;
$pageNum_rsGallery = 0;
if (isset($_GET['pageNum_rsGallery'])) {
  $pageNum_rsGallery = $_GET['pageNum_rsGallery'];
$startRow_rsGallery = $pageNum_rsGallery * $maxRows_rsGallery;
mysql_select_db($database_art, $art);
$query_rsGallery = "SELECT Pershkrim, Piktur_url, Rankim,id_piktur FROM piktur";
$query_limit_rsGallery = sprintf("%s LIMIT %d, %d", $query_rsGallery, $startRow_rsGallery, $maxRows_rsGallery);
$rsGallery = mysql_query($query_limit_rsGallery, $art) or die(mysql_error());
$row_rsGallery = mysql_fetch_assoc($rsGallery);
if (isset($_GET['totalRows_rsGallery'])) {
  $totalRows_rsGallery = $_GET['totalRows_rsGallery'];
} else {
  $all_rsGallery = mysql_query($query_rsGallery);
  $totalRows_rsGallery = mysql_num_rows($all_rsGallery);
$totalPages_rsGallery = ceil($totalRows_rsGallery/$maxRows_rsGallery)-1;
$maxRows_rsKomente = 10; $pageNum_rsKomente = 0; if (isset($_GET['pageNum_rsKomente'])) {   $pageNum_rsKomente = $_GET['pageNum_rsKomente']; } $startRow_rsKomente = $pageNum_rsKomente * $maxRows_rsKomente;
mysql_select_db($database_art, $art); $query_rsKomente = "SELECT Tekst,id_piktur FROM komente"; $query_limit_rsKomente = sprintf("%s LIMIT %d, %d", $query_rsKomente, $startRow_rsKomente, $maxRows_rsKomente); $rsKomente = mysql_query($query_limit_rsKomente, $art) or die(mysql_error()); $row_rsKomente = mysql_fetch_assoc($rsKomente);   if (isset($_GET['totalRows_rsKomente'])) {   $totalRows_rsKomente = $_GET['totalRows_rsKomente']; } else {   $all_rsKomente = mysql_query($query_rsKomente);   $totalRows_rsKomente = mysql_num_rows($all_rsKomente); } $totalPages_rsKomente = ceil($totalRows_rsKomente/$maxRows_rsKomente)-1;
$queryString_rsGallery = "";
if (!empty($_SERVER['QUERY_STRING'])) {
  $params = explode("&", $_SERVER['QUERY_STRING']);
  $newParams = array();
  foreach ($params as $param) {
    if (stristr($param, "pageNum_rsGallery") == false &&
        stristr($param, "totalRows_rsGallery") == false) {
      array_push($newParams, $param);
  if (count($newParams) != 0) {
    $queryString_rsGallery = "&" . htmlentities(implode("&", $newParams));
$queryString_rsGallery = sprintf("&totalRows_rsGallery=%d%s", $totalRows_rsGallery, $queryString_rsGallery);
$queryString_rsKomente = "";
if (!empty($_SERVER['QUERY_STRING'])) {
  $params = explode("&", $_SERVER['QUERY_STRING']);
  $newParams = array();
  foreach ($params as $param) {
    if (stristr($param, "pageNum_rsKomente") == false &&
        stristr($param, "totalRows_rsKomente") == false) {
      array_push($newParams, $param);
  if (count($newParams) != 0) {
    $queryString_rsKomente = "&" . htmlentities(implode("&", $newParams));
$queryString_rsKomente = sprintf("&totalRows_rsKomente=%d%s", $totalRows_rsKomente, $queryString_rsKomente);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Paintings</title>
<link href="style_gallery.css" rel="stylesheet" type="text/css" />
</head>
<body>
  </div>
<div id="logo_wrapper">
<!-- For the example logo, we used a font called "Ink Burrow", which is free from the major font sites. -->
<div id="logo"><img src="_images/logo.png" width="600" height="79" align="right" /></div>
</div>
<div id="main_container">
<div id="menu_container">
<div id="menu">
<ul id="base_menu" >
<li><a href="index.php">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="gallery.php">Gallery</a></li>
<ul class="sub_menu">
<li><a href="#" title="Charcoal" >Charcoal </a></li>
        <li><a href="#" title="Oil paintings" >Oil paintings</a></li>
        <li><a href="#" title="Sketches" >Sketches </a></li>
        <li><a href="#" title="Our latest podcast" >Video Podcast</a></li>
</ul>
<li><a href="#">Contact </a></li>
<li><a href="#">Events</a></li>
<li><a href="login.php">Log in</a></li>
</ul>
</div>
</div>
<div id="mainArticle">
    <h1>Painting Gallery</h1>
      <p>Welcome !</p>
    <p>
      <?php do{ ?>
   <?php   $id_piktur=$row_rsGallery['id_piktur']; $_SESSION['id_piktur']=$id_piktur;             echo $row_rsKomente['Tekst']."<br/>" ;                      ?>         <?php }  while ($row_rsKomente = mysql_fetch_assoc($rsKomente)); ?>  </p>
      <form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>">
        <p>
          <label for="comment">Comment : </label>
        </p>
        <p>
          <textarea name="tekst" id="tekst" cols="45" rows="5"></textarea>
        </p>
        <input name="comment" type="submit" value="Comment" />
        <input type="hidden" name="MM_insert" value="form1" />
      </form>
      <p> </p>
      <p>
        <a href="<?php printf("%s?pageNum_rsGallery=%d%s", $currentPage, 0, $queryString_rsGallery); ?>">First</a>
        <a href="<?php printf("%s?pageNum_rsGallery=%d%s", $currentPage, max(0, $pageNum_rsGallery - 1), $queryString_rsGallery); ?>">Previous</a>
        <a href="<?php printf("%s?pageNum_rsGallery=%d%s", $currentPage, min($totalPages_rsGallery, $pageNum_rsGallery + 1), $queryString_rsGallery); ?>">Next</a>
        <a href="<?php printf("%s?pageNum_rsGallery=%d%s", $currentPage, $totalPages_rsGallery, $queryString_rsGallery); ?>">Last</a>
<p class="galleryText"><img src="_images/<?php echo $row_rsGallery['Piktur_url']; ?>" alt="golden gate bridge" class="galleryImage" />    <?php do { ?>     <?php echo $row_rsGallery['Pershkrim']; ?>     <?php } while ($row_rsGallery = mysql_fetch_assoc($rsGallery)); ?> </p>
  </div>
<p> </p>
</div>
</body>
</html>
<?php
mysql_free_result($rsGallery);
mysql_free_result($rsKomente);
?>

>thnx yeah i fixed the problem this time i understood you.
Glad you got it working.
>you confused me the first time with the explanation because you mentioned loops
Yeah. Normally with a repeating region you would need to use nested loops; an outer loop for the picture and an inner loop for the related comments. During each iteration of the outer loop you would execute the sql to retrieve the inner loop recordset. However, since you are using paging with only one recordset per page, the comment recordset SQL does not have to execute inside the picture loop. Hope that makes sense.

Similar Messages

  • Problem with posting message in forum

    This question was solved.
    View Solution.

    Hi dkpb,
    The problem here was that IE9 at the time was incompatible with the forum software.  That has since been fixed.  What is your issue now?  It helps if you describe your specific problem with posting so we can look into it for you.
    SunshineF
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

  • Printing problem with Summarize Comments?

    Printing problem with Summarize Comments in Pro 10.1.6? When I print, I only get the number boxes on one page and the comments on the next page. The numbered boxes don't show up on the actual image itself.

    Um I dont know if im doing something daft but I tried this like you said
    PrinterJob printJob = PrinterJob.getPrinterJob();
    printJob.setPrintable(this);
    if(printJob.printDialog()){
    try {
              PageFormat pageFormat = printJob.defaultPage();
              if (pageFormat.getOrientation() == PageFormat.PORTRAIT) {
              landscape = 0;} else {
                   landscape = 1;}
              System.out.println("THE ORIENTATION IS "+ landscape);
              printJob.print(); }
    catch (Exception PrinterExeption) { PrinterExeption.printStackTrace();}
    and it doesnt seem to work as I tried it both as landscape and portrait in the print dialog but landscape is always 0.
    cheers
    pmiggy

  • Problems with posting iDocs from MDM in SAP R3

    Hi,
    I am an MDM consultant, with limited knowledge about SAP R3.
    We send material master data from MDM, via PI to R3 using iDocs.
    We are having problems with posting MATMAS, and it seems the problems are with updating already existing materials.
    In BD87 we get the following warnings:
    The field MARA-ERVOE is not ready for input and was therefore not initialized
    The field MARA-ERVOL is not ready for input and was therefore not initialized
    The field MARA-FERTH is not ready for input and was therefore not initialized
    The field MARA-KZGVH is not ready for input and was therefore not initialized
    The field MARA-XCHPF is not ready for input and was therefore not initialized
    With the last message being:
    No changes made
    I have checked the MDM syndicator, and none of these idoc-fields are linked to the MDM repository.
    So they are syndicated blank.
    If we try to resend the material, it is again stopped and in BD87 I see the same messages.
    Please help me understanding how to solve these issues.
    Thanks,
    Thomas

    Hi,
    Please refer the below threads which talks about the similar problem
    http://scn.sap.com/thread/3180116
    http://scn.sap.com/thread/1374222
    Generally the basic view of the material to be created first. Then the sales, purchasing and other views to be created.
    There are few fields in the other views which gets values from the basic data view.
    Regards,
    Antony

  • [svn] 4836: Fix problems with asdoc comments and conditionally compiled definitions.

    Revision: 4836
    Author: [email protected]
    Date: 2009-02-04 11:07:52 -0800 (Wed, 04 Feb 2009)
    Log Message:
    Fix problems with asdoc comments and conditionally compiled definitions. Fixes bug http://bugs.adobe.com/jira/browse/ASC-3649
    Ticket Links:
    http://bugs.adobe.com/jira/browse/ASC-3649
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/embedding/Compiler.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/ConfigurationEvaluator.java

    In the default php.ini is set open_basedir which limits work with php only to few directories (and directories bellow them). There is set /srv/http, /home,/tmp and /usr/share/pear by default.
    To allow your vhost you should add /data/www or set empty value.

  • Problems with Blog Comments after running Google Analytics Automator

    I upgraded to IWeb 09 today and was hoping that there would be not too many compatibility issues. Well, here is one.
    I noticed that the comment function on my blog page kept disappearing after I published the website to MobileMe. After some hours of trial and error I found out that the comment function is there right after publishing but disappears straight after running the Google Analytics Automator on the Idisk website folder.
    I don't think I had this problem with IWeb 08 (I only used it briefly), so that might be a compatibility issue with IWeb 09.
    Anybody else had this problem? Any suggestions?

    After some hours of trial and error I found out that the comment function is there right after publishing but disappears straight after running the Google Analytics Automator on the Idisk website folder.
    this is a known problem since from iweb1, any time you post edit your pages (with google analytics automator or what not) you potentially cripple MMe server side functions.
    search iweb1 and iweb2 forum for more details.

  • Problems with the 'Comments' field in iTunes

    First, sorry for my english (I'm danish).
    I've read a lot of threads here and everywhere else, but can't find a solution for my exact problem. I use Windows Vista and the newest version of iTunes.
    Most of my mp3 songs (35.000) are put directly in album folders to the folder 'D:My Music from another computer via a USB drive and the songs already have id3 tag information on them.
    I then add the albums to iTunes and most of my tag information is now updated in iTunes. Names, Artists, Genre, Year, everything is okay. By the way the songs have ID3v2.3 tag information. I see that in my Mp3tag v.2.42 application.
    But the problem is with the 'Comments' field:
    Those tags (originally put to the songs directly in the proberties of the song in Windows Explorer) will simply not transfer to iTunes 'Comments' field. And if I write something in the iTunes 'Comments' field this will not show up in the fields properties in windows Explorer. It looks like the 'Comments' fields in iTunes and in the proberties in the song are not connected at all!?
    I then found out, I could let iTunes convert the ID3 codes, but nothing happens except from when using v. 1.0 or 1.1, because then the comments tag are transferres, but unfortunately all the tags will only show 30 characters!!!
    And there's also a different story:
    A few albums though are put directly on my computer by using iTunes to import the CD. These songs have ID3 v.2.2 tags, so I guess iTunes import files in that format?
    And here it's a little different story. If I put comment data directly to the file proberties in Windows Explorer (after the CD's been imported to iTunes), the comments will show up in iTunes, but only as several 0 and 1 digits! On the other hand, if I put information directly in iTunes 'Comments' field it wil show up correctly in the file proberties! But it's only a few songs/albums that are handled that way.
    Well, bottom's line, I want to see my comments tags (which are allready there in the song's proberties) when I browse my music in my folders in Windows Explorer and I want to see the exact same comments if I go to browse my music in iTunes. That should not be a problem ... but it is not ...
    Can I please get a solution or at least an explanation, and hopefully in not too tecnical terms.

    I, too, hope someone will answer this! I am hoping to catalog my entire CD collection in iTunes and I want to include the storage box number somehow, thinking that "comments" would be a good place to do so. If I cannot do that I'll try to find a program other than iTumes to do it. Does anyone have any suggestions on this topic? ...perhaps I need to open a new thread?
    THANKS!
    Doug

  • RegEx Problem with flag COMMENTS

    Hello,
    I have the following Exception:
    java.util.regex.PatternSyntaxException: Unclosed group near index 9
    when my program is running with this flags:
    Pattern patt = Pattern.compile("^(@#@.+)$", Pattern.MULTILINE | Pattern.COMMENTS);but when I run this:
    Pattern patt = Pattern.compile("^(@#@.+)$", Pattern.MULTILINE);it works fine.
    Any COMMENTS ;-) for this problem? The entire RegEx is much bigger. I want to comment it.
    Thanks sacrofano

    Hi,
    thanks for your help, but it did not work.I did not suggest anything that would work! I was trying to point out that the Javadoc says that everything from # to the end of the pattern is treated as comment.
    I run this
    Pattern patt =
    Pattern.compile("^(?:(@#@.+))$",(Pattern.COMMENTS));[/
    code]So why, based on reading the Javadoc, would you expect this RE to compile? Everything after the # is treated as comment so your effective regular expression is "^(?:(@" which is obviously an invalid RE!
    with same exception as above.
    Is there a problem with the Flag Pattern.COMMENTSNo! RTFD.

  • Problems with postin comments on blog

    People are having problems posting comments on my blog. They get an error message saying that there is a problem processing request. The boxes are checked allowing for comments and there seems to be no font problems. Any other suggestions?

    This depends on where you are publishing your site as to whether you can get comments or not - are you publishing to MobileMe or another host?

  • Problems with post-method in weblogic-server 6.0

    Hello,
              I tried to implement a servlet in Visual Cafe working with weblogic 6.0.
              As I used the get-method it worked fine, but as I used the post-method
              I got the following java.lang.IllegalArgumentException:
              bad URLMatchMap path:''
              Does anybody know about this error and where I would have to set the
              path-variable. I have already registered the servlet in web.xml
              Thanx for your help
              Thorsten
              

              Try installing SP1. In SP1 a bug regarding POST using HTTPS has been fixed. Check
              the bug id 041234 in this link
              http://edocs.bea.com/wls/docs60/notes/bugfixes2.html#1073617
              Shiva.
              "Raju" <[email protected]> wrote:
              > Hi,
              >>
              >> We are using Weblogic server 6.0 with out service pack 1.0.
              >>
              >> I am having problem with Https POST, i am using port 7002. and when
              >i use
              >> https post servlet hangs for lot of time. But when i use Https using
              >GET,it
              >> works fine.
              >>
              >> Did any one face the problems.
              >>
              >> Thanks in Advance.
              >>
              >> Raju
              >>
              >
              >
              >
              

  • OnScreen windows problems with the new MacBook Pro (see pictures)

    Hi Everyone,
    For the beginning, please excuse my bad english i am more fluent in french ...
    I have some problems with the onscreen windows (pictures = 1000 words !) :
    With explanation
    http://img17.imageshack.us/img17/425/captureecran001.png
    Without but same problem ...
    http://img806.imageshack.us/img806/1007/captureecran002.png
    http://img215.imageshack.us/img215/2059/captureecran003.png
    http://img839.imageshack.us/img839/8513/captureecran004.png
    Somebody have any ideas ?
    Thanks in advance
    MB

    So this only appears in advisory/confirmation windows and nowhere else, i.e. you never see it across documents or images or in other situations ?
    First suggestion is to try re-installing the latest 'combo' 10.6.6 updater and see if that changes anything.
    http://support.apple.com/downloads/DL1349/en_US/MacOSXUpdCombo10.6.6.dmg

  • Backlight problems with the new MacBook Pro ( see pictures)

    Hello everybody,
    it seems to Be that the Display of my MacBook Pro early 11 seems to have a Problem with the backlight.
    I made two pictures. The effect only is visible when the background is black. The second picture shows a white background where no problems are visible.
    http://img69.imageshack.us/i/fotofnu.jpg/
    http://img716.imageshack.us/i/foto1hx.jpg/
    Thank you for your help and please excuse my english if there are any mistakes

    isn't there anybody who could tell me if this is normal? Perhaps there are people that have the same problem?

  • Travel management - problem with post a trip for an employee in India

    Hi,
    I am configure travel management for a customer, in there SAP system. I have already made the configuration for countries like Sweden, Finland, Italy, Germany etc, but when I should do it for India I can not save a trip in PR05. I have copied the configuration (schema) from Sweden to India (India has no schema in standard) and that is no problem, but when I should enter a trip and save in PR05 I have the following problem:
    1. It seems like I am in US because travelling country is per default USA (it should be India when I have linked the employee to the company code for India in transaction code PO13 and PA40). I can change the country to IN (India).
    2. When I enter an expense type and amount, the system have a tax code for USA per default (I have configured that this expense type should choose a tax code in India but the system choose one for USA). I can change it to an Indian tax code.
    3. The system also ask for a tax jurisdiction code on the row for expense type. Here I can choose 9999 as a dummy. But I have no idea why I have to specify that. I think that is typical for USA?
    4. When I have changed the country to IN, the tax code to an indian tax code and specified the jurisdiction tax code to 9999 and then save I have got the following error message:
    " Customization for 1600 j_1iindcus missing in table
    Message no. 8I303" and when I have googled on that error message I found that I should go to:
    IMG-Logistics General-Tax on Goods movement -India-Basic Settings-Maintain COmpany code settings
    but that is according to logistics and everything else in the system as purchase etc is working fine with no problem with tax jurisdiction code so I don´t guess that I should change anything there if I destroy anything else.
    5. If I change the country to IN and not register any trip expense but instead register trip segment, that the employee should have compensation for travelling with its own car and then save I have got the message that I have not maintained the currency USD/rupie which is a sign of that the systém beleives that we are in USA.
    Please help. I have no idea how to come around this.
    Best regards Lisa

    Hi again,
    In transaction code FITVFELD I have IN as default country but if I change that country to another I still have US as trip country in PR05. In that transaction code (FITVFELD) I have domestic trip, international etc (like configuration in Sweden), but when I initialize a new trip for India I can not change trip type, if there is a domestic or international. When I do the same for Sweden I can choose so I wonder if the system get the information from USA from anywhere else.
    I have also read about jurisdiction code and that is special for USA and Canada and then not for India?
    Regards Lisa

  • Problem with post and get (jsp to servlet)

    ===jsp code(login.jsp)
    out.println("<form action='servlet/Login' action='post'>");
    out.println("Username <input type='text' name='user' /><br>");
    out.println("Password <input type='password' name='pass' /><br>");
    out.println("<input type='submit' value='Login' /><br></form>");
    the above jsp page is included in another jsp page
    ===jsp code(index.jsp)
    <jsp:include page='login.jsp' flush='true'/>
    when submit is clicked in the login form, the data is send (to Login servlet) in the url string, even though i am using "POST" method in the form.
    the output of request.getMethod() in the Login servlet gives "GET"
    what could be the problem?

    The code you've shown us looks fine. The problem isn't in the form code you've listed. Is the form being included inside another form on index.jsp? Does index.jsp have any forms of it's own? Perhaps you aren't submitting the form you think you are submitting. Or, are you redirecting in your serlvet somewhere? Or are you forwarding the request somehow?
    I agree with the previous post - we need to see the HTML output that index.jsp results in.
    Michael

  • Problem with Blog comments

    Hi @ll,
    I have the following problem: I set up my iWeb page (materials for a lecture) including a feedback forum page for the students. The forum worked well until the "update" to MobileMe started. Since then it is not possible for the students to send any comments to the forum.
    Does anyone know if this problem is related to the chance of .MAC to ME.com and if it will be solved soon? Is apple aware of such a problem?
    Thanks for any answer I will get.
    Rob-Boy

    I am having the same problem-- and viewing with Safari as the browser has had no effect. Any thoughts on solutions?
    I've been a Mac proponent for two years now, though recent problems are causing me to re-evaluate. Aside from this snafu, the most recent Quicktime update neutered all sound on my .avi files as well. When can we expect updates/solutions to these problems?

Maybe you are looking for

  • Nokia c5 03 cant start up

    Hi everyone, i have this phone four months and i very satisfited with him. Bat today on my screen show full memory, after that i try to go in application but phone dont open application. I take out battery, and when i try to start up phone on scrren

  • IDVDs on an HD tv

    Just a quick question about this. At the moment my understanding is that iDVD burns DVDs at a resolution suited to tvs - so for example will lose some quality when played back on a higher resolution screen, eg a laptop. My question is will iDVDs have

  • UltraSPARC I processors are not supported by this release of Solaris.

    I'm getting this message when trying to install Solaris 10 on my Ultra Enterprise 2. My buddy that gave it to me has the same exact system and had no problems installing Solaris 10. Maybe he has UltraSPARC II? Can I upgrade to UltraSPARC II? Will Sol

  • Oracle 10.2 odbc on solaris

    Is odbc on solaris is supported with gcc 3.3.2... To be specific can I link libodbc.so with an application compiled using gcc? Looking for an alternative compatible construct than the following Discussion Forums » Database » Instant Client >> develop

  • TS2570 my machintosh HD partition quit decrypting. How do I recover the files from the HD? I have replaced the 320 GB 5200RPM Hitach and I have the old one.

    Hello,      Was running osx Lion, newest update. Using Hitachi 320 GB 5200RPM HD. I5, 4 gb DDR3.  Mac Book Pro, 13 inch. Heres what happened: Opened Disk Utility Via Launchpad> Utilities upon normal boot into home screen. Ran Disk verify on Mactintos