CORA™ CMS

When you delete the duplicate, both of them get's deleted.

I can show you Screen Shoots when I get home from work

And it happens every time, was trying to fix it for 2 hours last night. 
Hmm if it deletes both original and duplicate then it must have the same ID, meaning the problem resides in the display.

But anyway, yes please, screenshots would be helpful
default_smile.png


 
EDIT

Oh and if you guys have anything you want to see in 0.9.6 just post it here and we'll see what we can do
default_tongue.png
Mobile responsiveness <3 Having this will definitely be better on your behalf 'cause other CPs currently don't support it
default_smile.png


 
When you delete the duplicate, both of them get's deleted.

I can show you Screen Shoots when I get home from work

And it happens every time, was trying to fix it for 2 hours last night. 
Hmm if it deletes both original and duplicate then it must have the same ID, meaning the problem resides in the display.

But anyway, yes please, screenshots would be helpful
default_smile.png
Alright, so I go to the Posts board and create new Post



After that done I click cancel to go back to selection screen.



And it creates 2 posts at the same time, even identical creation times.



 
Last edited by a moderator:
EDIT

Oh and if you guys have anything you want to see in 0.9.6 just post it here and we'll see what we can do
default_tongue.png
Mobile responsiveness <3 Having this will definitely be better on your behalf 'cause other CPs currently don't support it
default_smile.png
You know it Myst! The app itself is responsive but no themes are optimized for mobile viewing yet. However! I do promise to release another theme with mobile view for 0.9.5
default_happy.png


When you delete the duplicate, both of them get's deleted.

I can show you Screen Shoots when I get home from work

And it happens every time, was trying to fix it for 2 hours last night. 
Hmm if it deletes both original and duplicate then it must have the same ID, meaning the problem resides in the display.

But anyway, yes please, screenshots would be helpful
default_smile.png
Alright, so I go to the Posts board and create new Post



After that done I click cancel to go back to selection screen.



And it creates 2 posts at the same time, even identical creation times.

I've received your Skype request and I look forward to investigating this issue more thoroughly with you! Thank you for the screenshots and for reporting this issue. We'll get this sorted out for you as soon as possible
default_smile.png


 
Sir Taka,

can you add " Number of Online Players " ?
and Also a Widget with Slide Show of Advertisement or the Donation items when you click it , it redirect you to the donation shop.

 
Hello! Thank for the awesome Control Panel - CoraCMS!!!
I really love it!

Please help!
I can't put cyrillic symbols in the forms. They are changed in the "????" symbols.
How can I fix it? Thanks in advice!

 
Sir Taka,

can you add " Number of Online Players " ?

and Also a Widget with Slide Show of Advertisement or the Donation items when you click it , it redirect you to the donation shop.
A skin provided has number of players.  
default_smile.png


 
Hi sir Takari! Why is it i cannot access my admin/login panel?
Here are some screenies.

kd8XjZn.png


E1kHvKc.png


XlDiS7a.png


 
So many replies @_@ .. sorry I haven't been able to answer I've been busy studying some new stuff for the 2nd beta. Hope you all understand :3

Anyways..

Sir Taka,

can you add " Number of Online Players " ?
and Also a Widget with Slide Show of Advertisement or the Donation items when you click it , it redirect you to the donation shop.
There's an option to display online players and peak for the server status widget, just make sure you're running the user_counter.txt script
default_smile.png


Hello! Thank for the awesome Control Panel - CoraCMS!!!
I really love it!

Please help!
I can't put cyrillic symbols in the forms. They are changed in the "????" symbols.
How can I fix it? Thanks in advice!
Thank you! Appreciate it
default_smile.png
.. The Editor should have an encoding option but I might have forgotten to load it. Will check on this soon
default_smile.png


Hi sir Takari! Why is it i cannot access my admin/login panel?
Here are some screenies.

kd8XjZn.png


E1kHvKc.png


XlDiS7a.png
Hello! This seems to be a problem with the .htaccess.. if you can, please refer to this guide this might help you sort out your problem
default_smile.png


 
Hello! This seems to be a problem with the .htaccess.. if you can, please refer to this guide this might help you sort out your problem
default_smile.png

I already did sir
default_sad.png


Here's my .htaccess.

Code:
<IfModule mod_rewrite.c>    RewriteEngine On    RewriteBase /home/    #Removes access to the system folder by users.    #Additionally this will allow you to create a System.php controller,    #previously this would not have been possible.    #'system' can be replaced if you have renamed your system folder.    RewriteCond %{REQUEST_URI} ^system.*    RewriteRule ^(.*)$ /index.php?/$1 [L]        #When your application folder isn't in the system folder    #This snippet prevents user access to the application folder    #Submitted by: Fabdrol    #Rename 'application' to your applications folder name.    RewriteCond %{REQUEST_URI} ^application.*    RewriteRule ^(.*)$ /index.php?/$1 [L]    #Checks to see if the user is attempting to access a valid file,    #such as an image or css document, if this isn't true it sends the    #request to index.php    RewriteCond %{REQUEST_FILENAME} !-f    RewriteCond %{REQUEST_FILENAME} !-d    RewriteRule ^(.*)$ index.php?/$1 [L]</IfModule>
 
Hello! This seems to be a problem with the .htaccess.. if you can, please refer to this guide this might help you sort out your problem
default_smile.png

I already did sir
default_sad.png


Here's my .htaccess.

<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /home/ #Removes access to the system folder by users. #Additionally this will allow you to create a System.php controller, #previously this would not have been possible. #'system' can be replaced if you have renamed your system folder. RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /index.php?/$1 [L] #When your application folder isn't in the system folder #This snippet prevents user access to the application folder #Submitted by: Fabdrol #Rename 'application' to your applications folder name. RewriteCond %{REQUEST_URI} ^application.* RewriteRule ^(.*)$ /index.php?/$1 [L] #Checks to see if the user is attempting to access a valid file, #such as an image or css document, if this isn't true it sends the #request to index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L]</IfModule>
You probably have rewrite module disabled. If you're using wampp, you can enable module rewrite though the tray. Just make sure to restart apache afterwards.

Here's how you enable rewrite module in wampp.

For xampp, you may open xampp's control panel click on apache's config and click httpd.conf then search for this line

#LoadModule rewrite_module modules/mod_rewrite.so 
remove the # so you're only left with

LoadModule rewrite_module modules/mod_rewrite.so 
save then restart apache.

That should enable your rewrite module
default_smile.png


 
Hello everyone. Yes there will be an update, however, it will not be anytime soon. I currently don't have enough spare time for CORA and for that I'm very sorry. This is not the end, though. I'm mainly just saving enough money to cover the development in the future (and by that I mean some time this year). What I can promise is that once CORA returns, it will return with all of its Glory and even better than before. It has also been decided that upon CORA's return, we will be releasing a developer's guide along with it. Lastly, it will probably be entirely NEW. I've been messing with a couple of CMS lately and I've gotten some idea from them.For now though, I bid my goodbye. It was a privilege to develop something helpful to the community. Thank You!

 
Hello everyone. Yes there will be an update, however, it will not be anytime soon. I currently don't have enough spare time for CORA and for that I'm very sorry. This is not the end, though. I'm mainly just saving enough money to cover the development in the future (and by that I mean some time this year). What I can promise is that once CORA returns, it will return with all of its Glory and even better than before. It has also been decided that upon CORA's return, we will be releasing a developer's guide along with it. Lastly, it will probably be entirely NEW. I've been messing with a couple of CMS lately and I've gotten some idea from them. For now though, I bid my goodbye. It was a privilege to develop something helpful to the community. Thank You!
what a sad news. hmm. 
default_unsure.png


 
Hello everyone. Yes there will be an update, however, it will not be anytime soon. I currently don't have enough spare time for CORA and for that I'm very sorry. This is not the end, though. I'm mainly just saving enough money to cover the development in the future (and by that I mean some time this year). What I can promise is that once CORA returns, it will return with all of its Glory and even better than before. It has also been decided that upon CORA's return, we will be releasing a developer's guide along with it. Lastly, it will probably be entirely NEW. I've been messing with a couple of CMS lately and I've gotten some idea from them. For now though, I bid my goodbye. It was a privilege to develop something helpful to the community. Thank You!
what a sad news. hmm. 
default_unsure.png
Don't worry. They'll still be development on it... but at some point in the future
default_smile.png


 
Hello everyone. Yes there will be an update, however, it will not be anytime soon. I currently don't have enough spare time for CORA and for that I'm very sorry. This is not the end, though. I'm mainly just saving enough money to cover the development in the future (and by that I mean some time this year). What I can promise is that once CORA returns, it will return with all of its Glory and even better than before. It has also been decided that upon CORA's return, we will be releasing a developer's guide along with it. Lastly, it will probably be entirely NEW. I've been messing with a couple of CMS lately and I've gotten some idea from them. For now though, I bid my goodbye. It was a privilege to develop something helpful to the community. Thank You!
what a sad news. hmm. 
default_unsure.png
Don't worry. They'll still be development on it... but at some point in the future
default_smile.png
Yes I understand. But I hope it will not neglected like other project. Really sad. Come with hope leave silently. hihihi

 
Hi everyone. I'm sorry for being inactive for a while, I've been really busy with work.

On the bright side, we're planning to restart development soon. We might need to find a

better way to communicate though, for those who wants to contribute ideas and all 
tongue.png


 
Back
Top