We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Modify to join page | Forum

Danger
Danger Dec 11 '13

Hello guys,


i need help to make join page like this http://www.palplus.net/join


I try to modify the file join_index.html but it modify only the container of page. I want remove all and put just site_panel and footer. How i can do that? What file need to modify?



Thanks alot!

Danger
Danger Dec 13 '13
No one know that? <.<


Just need to know what are the source file's...


Thanks!

The Forum post is edited by Danger Dec 13 '13
Danger
Danger Dec 18 '13
Any oxwall own can tell me what file need to modify? 


Come on, can't try to study all file... 

Daisy Team
Daisy Dec 19 '13
Danger, please check out the related topic: http://www.oxwall.org/forum/topic/12793


P.S. Please search before posting.
Danger
Danger Dec 19 '13

Daisy thanks for reply.


Before i write, i had try all solution's, but no one make the pages like that.


If you make http://www.eobasi.com/...xwall-join-page.html that modify, customize only the container..


I need to leave header and footer like an example that i post before..


Good example can be the sing-in page, but i search for customize join page like this http://www.palplus.net/join


Thanks.

Cipha
Cipha Dec 20 '13
I find that if you study the template engine {Smarty} that Oxwall is based on, you will see it can be used in the pages or not...

You can remove a lot of the code in any of the pages. Use the Smarty tags to add the really important things and write new styles for the elements.

Go to the admin panel -- main page settings -- add you header files.

Change system to MUST SIGN IN to view site. Customize you sign in page.

Here is our site Cipha Connect

We changed the general functions of Ox Wall and built external pages using other frameworks.

<!-- Use your .htaccess file to add new pages that are public accessible. This way, all the content will not be locked away from the public who didn't join and maybe never will. -->

Modify your .htaccess file to allow other pages or even installations like Wordpress or Drupal. You will be able to operate using differnet types of programs to give your site more outlets.

RewriteCond %{REQUEST_URI} !^/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$  [NC]

RewriteCond %{REQUEST_URI} !/Your Sub directory here\.*  <---------------- Look here --------->

RewriteCond %{REQUEST_URI} !/myprogram\.*
RewriteCond %{REQUEST_URI} !/google_______________\.html
RewriteCond %{REQUEST_URI} !/dsgnfcs\.*
RewriteCond %{REQUEST_URI} !/en\.php
RewriteCond %{REQUEST_URI} !/view-files\.*                  <----- Notice the * will act like a wild card ----------------------------------------------------------------and allow you to add pages without setting them up in the Oxwall admin panel-------------------------------------------->
RewriteRule (.*) index.php
The Forum post is edited by Cipha Dec 20 '13
Daisy Team
Daisy Dec 20 '13
Danger, as far as I've understood Ebenezer explains the join page customization, not sign-in and the site you've provided as an example belongs to Ebenezer.
Danger
Danger Dec 21 '13
Thanks for reply,


Chipa that's work if i make new page, right? And if i want give that rules to join page? 


Thanks again