Datastore-hacks.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="generator" content="pandoc">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
  7. <title>Shaarli - Datastore hacks</title>
  8. <style type="text/css">code{white-space: pre;}</style>
  9. <!--[if lt IE 9]>
  10. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  11. <![endif]-->
  12. <style type="text/css">
  13. table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode {
  14. margin: 0; padding: 0; vertical-align: baseline; border: none; }
  15. table.sourceCode { width: 100%; line-height: 100%; }
  16. td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; }
  17. td.sourceCode { padding-left: 5px; }
  18. code > span.kw { color: #007020; font-weight: bold; }
  19. code > span.dt { color: #902000; }
  20. code > span.dv { color: #40a070; }
  21. code > span.bn { color: #40a070; }
  22. code > span.fl { color: #40a070; }
  23. code > span.ch { color: #4070a0; }
  24. code > span.st { color: #4070a0; }
  25. code > span.co { color: #60a0b0; font-style: italic; }
  26. code > span.ot { color: #007020; }
  27. code > span.al { color: #ff0000; font-weight: bold; }
  28. code > span.fu { color: #06287e; }
  29. code > span.er { color: #ff0000; font-weight: bold; }
  30. </style>
  31. <link rel="stylesheet" href="github-markdown.css">
  32. </head>
  33. <body>
  34. <div id="local-sidebar">
  35. <ul>
  36. <li><a href="Home.html">Home</a></li>
  37. <li>Installation
  38. <ul>
  39. <li><a href="Download.html">Download</a></li>
  40. <li><a href="Server-requirements.html">Server requirements</a></li>
  41. <li><a href="Server-configuration.html">Server configuration</a></li>
  42. <li><a href="Shaarli-configuration.html">Shaarli configuration</a></li>
  43. </ul></li>
  44. <li><a href="Usage.html">Usage</a>
  45. <ul>
  46. <li><a href="Sharing-button.html">Sharing button</a> (bookmarklet)</li>
  47. <li><a href="Firefox-share.html">Firefox share</a></li>
  48. <li><a href="RSS-feeds.html">RSS feeds</a></li>
  49. </ul></li>
  50. <li>How To
  51. <ul>
  52. <li><a href="Backup,-restore,-import-and-export.html">Backup, restore, import and export</a></li>
  53. <li><a href="Copy-an-existing-installation-over-SSH-and-serve-it-locally.html">Copy an existing installation over SSH and serve it locally</a></li>
  54. <li><a href="Download-CSS-styles-from-an-OPML-list.html">Download CSS styles from an OPML list</a></li>
  55. <li><a href="Datastore-hacks.html">Datastore hacks</a></li>
  56. </ul></li>
  57. <li><a href="Troubleshooting.html">Troubleshooting</a></li>
  58. <li><a href="Development.html">Development</a>
  59. <ul>
  60. <li><a href="GnuPG-signature.html">GnuPG signature</a></li>
  61. <li><a href="Coding-guidelines.html">Coding guidelines</a></li>
  62. <li><a href="Directory-structure.html">Directory structure</a></li>
  63. <li><a href="3rd-party-libraries.html">3rd party libraries</a></li>
  64. <li><a href="Plugin-System.html">Plugin System</a></li>
  65. <li><a href="Security.html">Security</a></li>
  66. <li><a href="Static-analysis.html">Static analysis</a></li>
  67. <li><a href="Theming.html">Theming</a></li>
  68. <li><a href="Unit-tests.html">Unit tests</a></li>
  69. </ul></li>
  70. <li>About
  71. <ul>
  72. <li><a href="FAQ.html">FAQ</a></li>
  73. <li><a href="Community-&amp;-Related-software.html">Community &amp; Related software</a></li>
  74. <li><a href="TODO.html">TODO</a></li>
  75. </ul></li>
  76. </ul>
  77. </div>
  78. <h1 id="datastore-hacks">Datastore hacks</h1>
  79. <h3 id="decode-datastore-content">Decode datastore content</h3>
  80. <p>To display the array representing the data saved in <code>data/datastore.php</code>, use the following snippet:</p>
  81. <pre class="sourceCode php"><code class="sourceCode php"><span class="kw">$data</span> = <span class="st">&quot;tZNdb9MwFIb... &lt;Commented content inside datastore.php&gt;&quot;</span><span class="ot">;</span>
  82. <span class="kw">$out</span> = <span class="fu">unserialize</span><span class="ot">(</span><span class="fu">gzinflate</span><span class="ot">(</span><span class="fu">base64_decode</span><span class="ot">(</span><span class="kw">$data</span><span class="ot">)));</span>
  83. <span class="fu">echo</span> <span class="st">&quot;&lt;pre&gt;&quot;</span><span class="ot">;</span> <span class="co">// Pretty printing is love, pretty printing is life</span>
  84. <span class="fu">print_r</span><span class="ot">(</span><span class="kw">$out</span><span class="ot">);</span>
  85. <span class="fu">echo</span> <span class="st">&quot;&lt;/pre&gt;&quot;</span><span class="ot">;</span>
  86. <span class="fu">exit</span><span class="ot">;</span></code></pre>
  87. <p>This will output the internal representation of the datastore, &quot;unobfuscated&quot; (if this can really be considered obfuscation).</p>
  88. <h3 id="changing-the-timestamp-for-a-link">Changing the timestamp for a link</h3>
  89. <ul>
  90. <li>Look for <code>&lt;input type=&quot;hidden&quot; name=&quot;lf_linkdate&quot; value=&quot;{$link.linkdate}&quot;&gt;</code> in <code>tpl/editlink.tpl</code> (line 14)</li>
  91. <li>Remove <code>type=&quot;hidden&quot;</code> from this line</li>
  92. <li>A new date/time field becomes available in the edit/new link dialog.</li>
  93. <li>You can set the timestamp manually by entering it in the format <code>YYYMMDD_HHMMS</code>.</li>
  94. </ul>
  95. </body>
  96. </html>