Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:oracle [2024/02/28 04:28] – [Miscellaneous] darrontools:oracle [2024/07/28 19:32] (current) – [PHP] darron
Line 703: Line 703:
 ==Path== ==Path==
  
-Not specifying a file path will create a tablespace file in this directory for 23c.+Not specifying a file path will create a tablespace file and archive logs in this directory for 23c.
  
 <code> <code>
Line 713: Line 713:
 __Drop__ __Drop__
  
-To remove the tablespace file various options are required when dropping a tablespace.+To remove tablespace file various options are required when dropping it.
  
 <code> <code>
Line 754: Line 754:
 You should add "extension=oci8.so" to php.ini You should add "extension=oci8.so" to php.ini
 </code> </code>
 +==Config==
  
 +Add extension=oci8.so to "/etc/php/8.2/cli/php.ini" and "/etc/php/8.2/apache2/php.ini"
 +
 +Add instant client to library path
 +
 +<code>
 +echo "/opt/instantclient_21_13" >> /etc/ld.so.conf
 +ldconfig
 +</code>
 ==TEST== ==TEST==
  
Line 842: Line 851:
 </code> </code>
  
-==Config== 
  
-Add extension=oci8.so to "/etc/php/8.2/cli/php.ini" and "/etc/php/8.2/apache2/php.ini" 
- 
-Add instant client to library path 
- 
-<code> 
-echo "/opt/instantclient_21_13" >> /etc/ld.so.conf 
-ldconfig 
-</code> 
 ===Resources=== ===Resources===